/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | [all...] |
/third_party/node/deps/v8/src/codegen/ |
H A D | code-reference.h | 29 : kind_(Kind::JS), js_code_(js_code) {} in CodeReference() 42 bool is_js() const { return kind_ == Kind::JS; } in is_js() 46 DCHECK_EQ(Kind::JS, kind_); in as_js_code() 56 enum class Kind { NONE, JS, WASM, CODE_DESC } kind_; member in v8::internal::CodeReference::Kind
|
H A D | code-reference.cc | 89 case Kind::JS: \ 103 DCHECK(kind_ == Kind::JS || kind_ == Kind::CODE_DESC); \ 104 if (kind_ == Kind::JS) { \
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/ |
H A D | issue-410.hpp | 1 // bindgen-flags: --enable-cxx-namespaces --allowlist-type JS::Value --rustified-enum ".*" 3 namespace JS { namespace 7 namespace JS { namespace
|
H A D | issue-358.hpp | 2 namespace JS { namespace 6 namespace JS { namespace
|
H A D | issue-674-2.hpp | 1 // bindgen-flags: --enable-cxx-namespaces --allowlist-type StaticRefPtr --opaque-type 'JS::Rooted' -- -std=c++14 3 namespace JS { namespace 7 JS::Rooted<int> b;
|
H A D | same_struct_name_in_different_namespaces.hpp | 1 namespace JS { namespace
|
H A D | replace_template_alias.hpp | 3 namespace JS { namespace 21 /// <div rustbindgen replaces="JS::detail::MaybeWrapped" />
|
H A D | template_alias_namespace.hpp | 3 namespace JS { namespace
|
H A D | template_alias.hpp | 3 namespace JS { namespace
|
H A D | issue-569-non-type-template-params-causing-layout-test-failures.hpp | 15 namespace JS { namespace
|
H A D | jsval_layout_opaque.hpp | 295 JS::Symbol* sym; 344 JS::Symbol* sym; 382 * compiler know that JS::Values constructed from constant values can be
|
H A D | jsval_layout_opaque_1_0.hpp | 295 JS::Symbol* sym; 344 JS::Symbol* sym; 382 * compiler know that JS::Values constructed from constant values can be
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
H A D | issue-410.rs | 12 pub mod JS { modules 35 pub fn Value_a(this: *mut root::JS::Value, arg1: root::JSWhyMagic); in Value_a()
|
H A D | template_alias_namespace.rs | 12 pub mod JS { modules 23 pub ptr: root::JS::detail::Wrapped<T>,
|
H A D | issue-674-2.rs | 12 pub mod JS { modules
|
/third_party/node/deps/v8/include/ |
H A D | v8-unwinder.h | 37 JS, 86 * The unwinder needs to know the location of the JS Entry Stub (a piece of 87 * code that is run when C++ code calls into generated JS code). This is used
|
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-unwinder.h | 37 JS, 86 * The unwinder needs to know the location of the JS Entry Stub (a piece of 87 * code that is run when C++ code calls into generated JS code). This is used
|
/third_party/node/deps/v8/src/execution/ |
H A D | vm-state-inl.h | 22 case JS: in StateToString() 23 return "JS"; in StateToString()
|
H A D | execution.cc | 285 // When executing JS code, there should be no {CodeSpaceWriteScope} open. in Invoke() 294 // Simulators use separate stacks for C++ and JS. JS stack overflow checks in Invoke() 295 // are performed whenever a JS function is called. However, it can be the case in Invoke() 296 // that the C++ stack grows faster than the JS stack, resulting in an overflow in Invoke() 309 // through JS to set up a frame for break-at-entry. in Invoke() 367 VMState<JS> state(isolate); in Invoke()
|
/third_party/node/deps/v8/src/profiler/ |
H A D | profile-generator.h | 65 enum class CodeType { JS, WASM, OTHER }; member in v8::internal::CodeEntry::CodeType 75 CodeType code_type = CodeType::JS); 118 case CodeType::JS: in code_type_string() 119 return "JS"; in code_type_string()
|
H A D | symbolizer.cc | 28 case JS: in EntryForVMState() 54 // the same JS function. The line number information associated with in SymbolizeTickSample() 56 // for a JS function. Then, the detected source line is passed to in SymbolizeTickSample() 76 // top of the stack (the return address) was pointing inside a JS in SymbolizeTickSample() 101 // the calling JS function or internal frame. in SymbolizeTickSample() 144 // the first JS caller. in SymbolizeTickSample()
|
H A D | sampling-heap-profiler.cc | 179 // Treat atomics wait as a normal JS event; we don't care about the in AddStack() 182 case JS: in AddStack() 183 name = "(JS)"; in AddStack() 246 // because the translation may allocate strings on the JS heap that have in TranslateAllocationNode()
|
H A D | cpu-profiler.cc | 63 if (sample->state == JS) ++js_sample_count_;
|
/third_party/python/Lib/test/ |
H A D | test_enum.py | 2446 JS = JobStatus 2447 self.assertEqual(list(JobStatus), [JS.ACTIVE, JS.PENDING, JS.TERMINATED]) 2448 self.assertEqual(JS.ACTIVE, 'active') 2449 self.assertEqual(JS.ACTIVE.value, 'active') 2450 self.assertIs(JS('Active'), JS.ACTIVE) 2451 self.assertTrue(JS.ACTIVE.valid) 2452 missing = JS('missin [all...] |