Lines Matching refs:value
164 value: key,
181 value(instance) {
194 value: function(stdout, stderr) {
196 '_stdout': { __proto__: null, ...consolePropAttributes, value: stdout },
197 '_stderr': { __proto__: null, ...consolePropAttributes, value: stderr },
206 value: function(object) {
218 set(value) { stdout = value; },
228 set(value) { stderr = value; },
236 value: function(ignoreErrors, colorMode, groupIndentation = 2) {
241 value: createWriteErrorHandler(this, kUseStdout),
246 value: createWriteErrorHandler(this, kUseStderr),
251 value: Boolean(ignoreErrors),
253 '_times': { __proto__: null, ...consolePropAttributes, value: new SafeMap() },
255 [kCounts]: { __proto__: null, ...consolePropAttributes, value: new SafeMap() },
256 [kColorMode]: { __proto__: null, ...consolePropAttributes, value: colorMode },
257 [kIsConsole]: { __proto__: null, ...consolePropAttributes, value: true },
258 [kGroupIndent]: { __proto__: null, ...consolePropAttributes, value: '' },
262 value: groupIndentation,
269 value: 'console',
277 value: function(streamSymbol, string) {
320 value: function(stream) {
340 value: function(args) {
349 value: function(args) {
636 function pad(value) {
637 return StringPrototypePadStart(`${value}`, 2, '0');