/third_party/node/benchmark/util/ |
H A D | inspect-proxy.js | 21 util.inspect({ a: proxyA, b: proxyB }, { showProxy });
|
/third_party/node/lib/internal/util/ |
H A D | inspect.js | 309 function inspect(value, opts) { 366 inspect.custom = customInspectSymbol; 368 ObjectDefineProperty(inspect, 'defaultOptions', { 384 inspect.colors = { 434 ObjectDefineProperty(inspect.colors, alias, { 462 inspect.styles = ObjectAssign(ObjectCreate(null), { 561 const style = inspect.styles[styleType]; 563 const color = inspect.colors[style]; 625 return `${res} <${inspect(firstProto, { 791 // Provide a hook for user-specified inspect function [all...] |
/third_party/node/test/internet/ |
H A D | test-trace-events-dns.js | 57 throw new Error(`${tr}:\n${util.inspect(proc)}`);
|
/third_party/node/test/parallel/ |
H A D | test-repl-autolibs.js | 42 `${util.inspect(require('fs'), null, 2, false)}\n`);
|
H A D | test-fs-utimes.js | 58 `FAILED: expect_errno ${util.inspect(arguments)}` 68 `FAILED: expect_ok ${util.inspect(arguments)}
|
H A D | test-inspect-publish-uid.js | 21 '--inspect=0', 22 `--inspect-publish-uid=${argValue}`,
|
H A D | test-worker-memory.js | 48 util.inspect([startStats, finishStats]));
|
H A D | test-eventtarget.js | 19 const { inspect } = require('util'); 629 const evConstructorName = inspect(ev, { 634 const inspectResult = inspect(ev, { 642 const inspectResult = inspect(et, {
|
H A D | test-assert-deep.js | 21 const str = util.inspect(value, { 812 util.inspect(new Date(2000, 3, 14)) 966 const tmp = util.inspect.defaultOptions; 967 util.inspect.defaultOptions = { showProxy: true }; 973 util.inspect.defaultOptions = tmp;
|
H A D | test-util-format.js | 78 const { numericSeparator } = util.inspect.defaultOptions; 79 util.inspect.defaultOptions.numericSeparator = true; 107 util.inspect.defaultOptions.numericSeparator = numericSeparator;
|
H A D | test-whatwg-readablestream.js | 55 inspect, 1452 inspect(readable), 1456 inspect(readable, { depth: null }), 1460 inspect(readable, { depth: 0 }), 1464 inspect(controller), 1467 inspect(controller, { depth: null }), 1470 inspect(controller, { depth: 0 }), 1476 inspect(reader), 1479 inspect(reader, { depth: null }), 1482 inspect(reade [all...] |
/third_party/python/Mac/PythonLauncher/ |
H A D | PreferencesWindowController.h | 14 IBOutlet NSButton *inspect; variable
|
H A D | MyDocument.h | 20 IBOutlet NSButton *inspect; variable
|
/third_party/node/lib/internal/ |
H A D | url.js | 41 const { inspect } = require('internal/util/inspect'); 324 [inspect.custom](recurseTimes, ctx) { 336 const innerInspect = (v) => inspect(v, innerOpts); 682 [inspect.custom](depth, opts) { 711 return `${constructor.name} ${inspect(obj, opts)}`; 1331 [inspect.custom](recurseTimes, ctx) { 1362 const breakLn = StringPrototypeIncludes(inspect(output, innerOpts), '\n'); 1363 const outputStrs = ArrayPrototypeMap(output, (p) => inspect(p, innerOpts));
|
H A D | histogram.js | 23 const { inspect } = require('util'); 70 return `Histogram ${inspect({
|
/third_party/node/lib/internal/webstreams/ |
H A D | util.js | 37 inspect, 97 return `${name} ${inspect(data, opts)}`;
|
/third_party/node/lib/ |
H A D | v8.js | 52 const { inspect } = require('internal/util/inspect'); 323 `Unserializable host object: ${inspect(abView)}`);
|
H A D | util.js | 61 inspect, 63 } = require('internal/util/inspect'); 362 inspect,
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | ast-inspect.c | 5 #include "ast-inspect.h" 8 static inline void inspect_ptr_list(AstNode *node, const char *name, void (*inspect)(AstNode *)) in inspect_ptr_list() 17 ast_append_child(node, index, ptr, inspect); in inspect_ptr_list()
|
/third_party/node/lib/internal/repl/ |
H A D | utils.js | 47 inspect, 48 } = require('internal/util/inspect'); 319 callback(null, inspect(result.value, previewOptions)); 332 // The writer options might change and have influence on the inspect 334 // `showHidden`. Use `inspect` instead of `JSON.stringify` to keep 336 const inspectOptions = inspect({ 348 .get().inspect(v, ${inspectOptions})`,
|
/third_party/protobuf/ruby/compatibility_tests/v3.0.0/tests/ |
H A D | repeated_field_test.rb | 417 assert_equal '[]', m.repeated_string.inspect 419 assert_equal m.repeated_string.to_a.inspect, m.repeated_string.inspect 421 assert_equal m.repeated_string.to_a.inspect, m.repeated_string.inspect
|
/third_party/protobuf/ruby/tests/ |
H A D | repeated_field_test.rb | 439 assert_equal '[]', m.repeated_string.inspect 441 assert_equal m.repeated_string.to_a.inspect, m.repeated_string.inspect 443 assert_equal m.repeated_string.to_a.inspect, m.repeated_string.inspect
|
/third_party/mbedtls/tests/scripts/ |
H A D | check_files.py | 15 import inspect namespace 355 frame = inspect.currentframe() 357 info = inspect.getframeinfo(frame)
|
/third_party/node/lib/internal/perf/ |
H A D | observe.js | 66 const { inspect } = require('util'); 209 return `PerformanceObserverEntryList ${inspect(this.#buffer, opts)}`; 334 return `PerformanceObserver ${inspect({
|
/third_party/python/Python/ |
H A D | initconfig.c | 44 -i : inspect interactively after running script; forces a prompt even\n\ 170 "PYTHONINSPECT : inspect interactively after running script (-i)\n" 653 assert(config->inspect >= 0); in config_check_consistency() 755 config->inspect = -1; in _PyConfig_InitCompatConfig() 797 config->inspect = 0; in config_init_defaults() 980 COPY_ATTR(inspect); in _PyConfig_Copy() 1087 SET_ITEM_INT(inspect); in _PyConfig_AsDict() 1356 GET_UINT(inspect); in _PyConfig_FromDict() 1478 COPY_FLAG(inspect, Py_InspectFlag); in config_get_global_vars() 1515 COPY_FLAG(inspect, Py_InspectFla in config_set_global_vars() [all...] |