/third_party/node/deps/v8/src/builtins/ |
D | builtins-utils.h | 97 DCHECK(isolate->context().is_null() || isolate->context().IsContext()); \ 114 DCHECK(isolate->context().is_null() || isolate->context().IsContext()); \
|
D | frames.tq | 122 if (IsContext(o)) {
|
D | cast.tq | 43 macro IsContext(o: HeapObject): bool {
|
/third_party/node/deps/v8/include/ |
D | v8-data.h | 53 bool IsContext() const;
|
/third_party/node/deps/v8/src/compiler/ |
D | js-context-specialization.cc | 116 if (object.IsContext()) return object.AsContext(); in GetSpecializationContext() 253 if (object.IsContext()) { in GetModuleContext()
|
D | js-heap-broker.cc | 310 return cell_or_context_.has_value() && cell_or_context_->IsContext(); in IsScriptContextSlot()
|
D | heap-refs.cc | 927 while (*depth != 0 && current.unchecked_previous().IsContext()) { in previous()
|
/third_party/node/deps/v8/src/execution/ |
D | isolate-inl.h | 22 DCHECK(context.is_null() || context.IsContext()); in set_context()
|
D | arguments.h | 145 DCHECK(isolate->context().is_null() || isolate->context().IsContext()); \
|
D | isolate.cc | 1505 if (!receiver_context.IsContext()) return false; in MayAccess() 2089 DCHECK(context.IsContext()); in ThrowInternal() 2914 DCHECK(context().is_null() || context().IsContext()); in ThrowInternal() 5139 DCHECK(context().IsContext()); in ThrowInternal()
|
/third_party/node/deps/v8/src/debug/ |
D | debug-stack-trace-iterator.cc | 75 if (context->IsContext()) { in GetContextId()
|
D | debug-scopes.cc | 32 if (!frame_inspector->GetContext()->IsContext()) { in ScopeIterator() 333 if (wrapped.IsContext()) { in UnwrapEvaluationContext()
|
D | debug-interface.cc | 268 DCHECK(value->IsContext()); in GetPrivateMembers()
|
/third_party/node/deps/v8/src/objects/ |
D | contexts.cc | 408 if (obj.IsContext()) { in Lookup() 518 if (!object.IsContext()) return false; in IsBootstrappingOrValidParentContext()
|
D | js-function-inl.h | 145 return TaggedField<HeapObject, kContextOffset>::load(*this).IsContext(); in has_context()
|
D | code-inl.h | 885 InstanceTypeChecker::IsContext(instance_type); in IsWeakObjectInOptimizedCode()
|
/third_party/node/src/ |
D | node_contextify.h | 104 static void IsContext(const v8::FunctionCallbackInfo<v8::Value>& args);
|
D | node_contextify.cc | 330 SetMethod(context, target, "isContext", IsContext); in Init() 337 registry->Register(IsContext); in RegisterExternalReferences() 401 void ContextifyContext::IsContext(const FunctionCallbackInfo<Value>& args) { in IsContext() function in node::contextify::ContextifyContext
|
/third_party/node/deps/v8/src/runtime/ |
D | runtime-scopes.cc | 648 if (holder->IsContext() || holder->IsSourceTextModule()) { in RUNTIME_FUNCTION() 683 DCHECK(holder->IsContext()); in LoadLookupSlot()
|
/third_party/node/deps/v8/src/heap/ |
D | memory-measurement.cc | 364 if (!maybe_context.IsContext()) { in InferForJSFunction()
|
D | large-spaces.cc | 404 object.IsContext(cage_base) || // in Verify()
|
D | object-stats.cc | 766 } else if (InstanceTypeChecker::IsContext(instance_type)) { in CollectStatistics()
|
/third_party/node/deps/v8/src/snapshot/ |
D | code-serializer.cc | 262 !InstanceTypeChecker::IsContext(instance_type)); in SerializeObjectImpl()
|
/third_party/node/deps/v8/src/profiler/ |
D | heap-snapshot-generator.cc | 156 if (obj.IsJSReceiver() || obj.IsString() || obj.IsContext()) { in GetIndirectStrongReferences() 851 } else if (object.IsContext()) { in AddEntry() 1119 } else if (obj.IsContext()) { in ExtractReferences() 2060 if (parent.IsContext() && in IsEssentialHiddenReference()
|
/third_party/node/deps/v8/src/web-snapshot/ |
D | web-snapshot.cc | 2335 DCHECK(container->IsPropertyArray() || container->IsContext() || in AddDeferredReference() 2403 } else if (InstanceTypeChecker::IsContext(instance_type)) { in ProcessDeferredReferences()
|