/third_party/node/ |
H A D | vcbuild.bat | 120 if /i "%1"=="test-node-inspect" set test_node_inspect=1&goto arg-ok
675 if defined test_node_inspect goto node-test-inspect
680 if defined test_node_inspect goto node-test-inspect
683 :node-test-inspect
685 %node_exe% tools\test-npm-package.js --install deps\node-inspect test
782 echo vcbuild.bat [debug/release] [msi] [doc] [test/test-all/test-addons/test-doc/test-js-native-api/test-node-api/test-benchmark/test-internet/test-pummel/test-simple/test-message/test-tick-processor/test-known-issues/test-node-inspect/test-check-deopts/test-npm/test-async-hooks/test-v8/test-v8-intl/test-v8-benchmarks/test-v8-all] [ignore-flaky] [static/dll] [noprojgen] [projgen] [small-icu/full-icu/without-intl] [nobuild] [nosnapshot] [nonpm] [nocorepack] [noetw] [ltcg] [licensetf] [sign] [ia32/x86/x64/arm64] [vs2019/vs2022] [download-all] [enable-vtune] [lint/lint-ci/lint-js/lint-md] [lint-md-build] [package] [build-release] [upload] [no-NODE-OPTIONS] [link-module path-to-module] [debug-http2] [debug-nghttp2] [clean] [cctest] [no-cctest] [openssl-no-asm]
|
/third_party/python/Lib/test/ |
H A D | test_types.py | 8 import inspect namespace 601 sig = inspect.signature(object.__init__.__get__) 2122 self.assertTrue(gen.__code__.co_flags & inspect.CO_ITERABLE_COROUTINE) 2123 self.assertFalse(gen.__code__.co_flags & inspect.CO_COROUTINE) 2126 self.assertTrue(g.gi_code.co_flags & inspect.CO_ITERABLE_COROUTINE) 2127 self.assertFalse(g.gi_code.co_flags & inspect.CO_COROUTINE)
|
H A D | test_signal.py | 3 import inspect namespace 70 if inspect.isroutine(value) and not inspect.isbuiltin(value):
|
H A D | test_traceback.py | 8 import inspect namespace 361 str(inspect.signature(traceback.print_exception)), 366 str(inspect.signature(traceback.format_exception)), 371 str(inspect.signature(traceback.format_exception_only)),
|
H A D | test_zipimport.py | 21 import inspect namespace 670 self.assertEqual(inspect.getsource(module), test_src)
|
/third_party/node/lib/internal/cluster/ |
H A D | primary.js | 126 ArrayPrototypePush(execArgv, `--inspect-port=${getInspectPort(cluster.settings.inspectPort)}`);
|
/third_party/node/test/parallel/ |
H A D | test-console.js | 82 // An Object with a custom inspect function. 83 const custom_inspect = { foo: 'bar', [util.inspect.custom]: () => 'inspect' }; 219 'foo', 'foo bar', 'foo bar hop', "{ slashes: '\\\\\\\\' }", 'inspect', 237 "{\n foo: 'bar',\n [Symbol(nodejs.util.inspect.custom)]:" + 238 ' [Function: [nodejs.util.inspect.custom]]\n}\n'); 240 "{\n foo: 'bar',\n [Symbol(nodejs.util.inspect.custom)]:" + 241 ' [Function: [nodejs.util.inspect.custom]]\n}\n'); 244 assert.strictEqual(strings.shift(), 'inspect inspect\ [all...] |
H A D | test-repl.js | 29 const { inspect } = require('util'); 998 const data = inspect(expected, { compact: false });
|
H A D | test-trace-events-fs-async.js | 322 throw new Error(`${tr}:\n${util.inspect(proc)}`);
|
/third_party/node/lib/ |
H A D | buffer.js | 97 inspect: utilInspect, 98 } = require('internal/util/inspect'); 876 // Override how buffers are presented by util.inspect(). 877 Buffer.prototype[customInspectSymbol] = function inspect(recurseTimes, ctx) { function 909 Buffer.prototype.inspect = Buffer.prototype[customInspectSymbol];
|
/third_party/jinja2/ |
H A D | nodes.py | 5 import inspect namespace 767 or inspect.iscoroutinefunction(func)
|
/third_party/node/lib/internal/readline/ |
H A D | interface.js | 51 inspect, 54 } = require('internal/util/inspect'); 662 this[kWriteToOutput](`Tab completion error: ${inspect(err)}`);
|
/third_party/node/deps/npm/node_modules/jackspeak/dist/commonjs/ |
H A D | index.js | 807 * Custom printer for `util.inspect` 809 [node_util_1.inspect.custom](_, options) { 810 return `Jack ${(0, node_util_1.inspect)(this.toJSON(), options)}`;
|
/third_party/python/Lib/ |
H A D | dataclasses.py | 5 import inspect namespace 1098 text_sig = str(inspect.signature(cls)).replace(' -> None', '')
|
H A D | pdb.py | 16 you can use pdb's post-mortem facility to inspect the contents of the 37 point ('!'). This is a powerful way to inspect the program being 81 import inspect namespace 1219 if co.co_flags & inspect.CO_VARARGS: n = n+1 1220 if co.co_flags & inspect.CO_VARKEYWORDS: n = n+1 1648 # inspect.getsourcelines() returns lineno = 0 for 1650 # This method should be replaced by inspect.getsourcelines(obj) 1651 # once this bug is fixed in inspect 1652 lines, lineno = inspect.getsourcelines(obj)
|
/kernel/linux/linux-5.10/drivers/net/ethernet/broadcom/ |
H A D | bcmsysport.c | 1532 if (ring->inspect) { in bcm_sysport_init_tx_ring() 2366 if (ring->inspect) in bcm_sysport_map_queues() 2374 ring->inspect = true; in bcm_sysport_map_queues() 2412 if (!ring->inspect) in bcm_sysport_unmap_queues() 2415 ring->inspect = false; in bcm_sysport_unmap_queues()
|
/kernel/linux/linux-6.6/drivers/net/ethernet/broadcom/ |
H A D | bcmsysport.c | 1548 if (ring->inspect) { in bcm_sysport_init_tx_ring() 2370 if (ring->inspect) in bcm_sysport_map_queues() 2378 ring->inspect = true; in bcm_sysport_map_queues() 2405 if (!ring->inspect) in bcm_sysport_unmap_queues() 2408 ring->inspect = false; in bcm_sysport_unmap_queues()
|
H A D | bcmsysport.h | 705 bool inspect; /* inspect switch port and queue */ member
|
/kernel/linux/linux-5.10/arch/arm/kernel/ |
H A D | phys2virt.S | 90 @ need to inspect the first halfword of the opcode, to check whether
|
/kernel/linux/linux-6.6/arch/arm/kernel/ |
H A D | phys2virt.S | 90 @ need to inspect the first halfword of the opcode, to check whether
|
/kernel/linux/linux-5.10/drivers/net/wireless/ath/ath10k/ |
H A D | rx_desc.h | 1292 inspect:1, member
|
/kernel/linux/linux-6.6/drivers/net/wireless/ath/ath10k/ |
H A D | rx_desc.h | 1324 inspect:1, member
|
/third_party/node/lib/internal/test_runner/ |
H A D | runner.js | 162 ArrayPrototypePush(argv, `--inspect-port=${getInspectPort(inspectPort)}`);
|
/third_party/protobuf/ruby/tests/ |
H A D | common_tests.rb | 121 assert_equal expected, m.inspect 126 assert_equal expected, m.inspect 243 assert l.inspect == '[5, 2, 3, 4]' 419 # We only assert on inspect value when there is one map entry because the 422 assert m.inspect == "{\"jkl;\"=>42}"
|
/third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/ |
H A D | RubyMessage.java | 151 * Message.inspect => string 155 * field's value is represented according to its own #inspect method. 158 public IRubyObject inspect() { in inspect() method in RubyMessage 742 sb.append(getField(context, fdef).inspect()); in layoutInspect()
|