/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/JITLink/ |
H A D | JITLink.h | 304 bool IsCallable) 310 setCallable(IsCallable); 351 JITTargetAddress Size, bool IsCallable, 357 Scope::Local, IsLive, IsCallable); 364 bool IsLive, bool IsCallable) { 369 new (Sym) Symbol(Base, Offset, Name, Size, L, S, IsLive, IsCallable); 413 bool isCallable() const { return IsCallable; } 416 void setCallable(bool IsCallable) { this->IsCallable = IsCallable; } 883 addAnonymousSymbol(Block &Content, JITTargetAddress Offset, JITTargetAddress Size, bool IsCallable, bool IsLive) addAnonymousSymbol() argument 893 addDefinedSymbol(Block &Content, JITTargetAddress Offset, StringRef Name, JITTargetAddress Size, Linkage L, Scope S, bool IsCallable, bool IsLive) addDefinedSymbol() argument [all...] |
/third_party/node/deps/v8/src/objects/ |
H A D | property-descriptor.cc | 97 if (!value->IsCallable()) return false; in ToPropertyDescriptorFastPath() 101 if (!value->IsCallable()) return false; in ToPropertyDescriptorFastPath() 256 // 18c. If IsCallable(getter) is false and getter is not undefined, in ToPropertyDescriptor() 258 if (!getter->IsCallable() && !getter->IsUndefined(isolate)) { in ToPropertyDescriptor() 274 // 21c. If IsCallable(setter) is false and setter is not undefined, in ToPropertyDescriptor() 276 if (!setter->IsCallable() && !setter->IsUndefined(isolate)) { in ToPropertyDescriptor()
|
H A D | objects-inl.h | 211 DEF_GETTER(HeapObject, IsCallable, bool) { in DEF_GETTER() 216 return IsCallable(cage_base) && IsJSProxy(cage_base); in DEF_GETTER() 221 return IsCallable(cage_base) && in DEF_GETTER()
|
H A D | objects.cc | 883 if (object->IsCallable()) return isolate->factory()->function_string(); in TypeOf() 920 if (!callable->IsCallable()) return isolate->factory()->false_value(); in OrdinaryHasInstance() 986 if (!callable->IsCallable()) { in InstanceOf() 1010 if (!func->IsCallable()) { in GetMethod() 1464 } else if (getter->IsCallable()) { in GetPropertyWithAccessor() 1576 } else if (setter->IsCallable()) { in SetPropertyWithAccessor() 5544 // 12. If IsCallable(thenAction) is false, then in Resolve() 5545 if (!then_action->IsCallable()) { in Resolve()
|
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-proxy-gen.cc | 29 Branch(IsCallable(target), &callable_target, &none_target); in AllocateProxy() 94 CSA_DCHECK(this, IsCallable(proxy)); in TF_BUILTIN() 150 CSA_DCHECK(this, IsCallable(proxy)); in TF_BUILTIN()
|
H A D | builtins-shadowrealm-gen.cc | 63 // 1a. If IsCallable(value) is false, throw a TypeError exception. in TF_BUILTIN() 65 Branch(IsCallable(CAST(value)), &if_callable, &bailout); in TF_BUILTIN() 168 // 2. Assert: IsCallable(target) is true. in TF_BUILTIN() 169 CSA_DCHECK(this, IsCallable(target)); in TF_BUILTIN()
|
H A D | builtins-shadow-realms.cc | 70 // 1a. If IsCallable(value) is false, throw a TypeError exception. in GetWrappedValue() 71 if (!value->IsCallable()) { in GetWrappedValue()
|
H A D | builtins-function.cc | 190 if (!args.receiver()->IsCallable()) { in DoFunctionBind()
|
H A D | builtins-iterator-gen.cc | 36 Branch(IsCallable(CAST(method)), &if_callable, &if_not_callable); in GetIterator()
|
H A D | builtins-object.cc | 69 // 2. If IsCallable(getter) is false, throw a TypeError exception. in ObjectDefineAccessor() 70 if (!accessor->IsCallable()) { in ObjectDefineAccessor()
|
H A D | builtins-call-gen.cc | 161 Branch(IsCallable(CAST(target)), &if_target_callable, in CallOrConstructWithArrayLike()
|
H A D | builtins-array.cc | 1731 // 3. If IsCallable(callbackfn) is false, throw a TypeError exception. in BUILTIN() 1733 if (!callbackfn->IsCallable()) { in BUILTIN() 1793 // 3. If IsCallable(callbackfn) is false, throw a TypeError exception. in BUILTIN() 1795 if (!callbackfn->IsCallable()) { in BUILTIN()
|
H A D | builtins-collections-gen.cc | 329 GotoIfNot(IsCallable(CAST(add_func)), &if_notcallable); in GetAddFunction() 1900 GotoIfNot(IsCallable(CAST(callback)), &callback_not_callable); 2136 GotoIfNot(IsCallable(CAST(callback)), &callback_not_callable);
|
H A D | builtins-array-gen.cc | 1440 IsCallable(mapper_function.value()))); in FlattenIntoArray() 1621 // 3. If IsCallable(mapperFunction) is false, throw a TypeError exception. in TF_BUILTIN() 1624 GotoIfNot(IsCallable(CAST(mapper_function)), &if_not_callable); in TF_BUILTIN()
|
H A D | builtins-date.cc | 862 if (!function->IsCallable()) { in BUILTIN()
|
/third_party/node/deps/v8/src/regexp/ |
H A D | regexp-utils.cc | 86 if (exec->IsCallable()) { in RegExpExec()
|
/third_party/node/deps/v8/src/json/ |
H A D | json-stringifier.cc | 283 } else if (replacer->IsCallable()) { in InitializeReplacer() 340 if (!fun->IsCallable()) return object; in ApplyToJsonFunction() 593 if (HeapObject::cast(*object).IsCallable(cage_base)) return UNCHANGED;
|
H A D | json-parser.h | 154 if (reviver->IsCallable()) { in Parse()
|
/third_party/node/deps/v8/src/parsing/ |
H A D | token.h | 243 static bool IsCallable(Value token) { in IsCallable() function in v8::internal::Token
|
/third_party/node/deps/v8/src/torque/ |
H A D | declarable.h | 87 bool IsScope() const { return IsNamespace() || IsCallable(); } in IsScope() 88 bool IsCallable() const { in IsCallable() function in v8::internal::torque::Declarable
|
/third_party/node/deps/v8/src/diagnostics/ |
H A D | objects-debug.cc | 131 CHECK(!IsConstructor(cage_base) || IsCallable(cage_base)); in ObjectVerify() 165 CHECK(!IsCallable()); in SmiVerify() 868 CHECK(IsCallable()); in JSBoundFunctionVerify() 1318 CHECK(callable().IsCallable()); in CallableTaskVerify() 1573 CHECK_EQ(target().IsCallable(), map().is_callable()); in JSProxyVerify()
|
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-object.h | 657 bool IsCallable() const;
|
/third_party/node/deps/v8/include/ |
H A D | v8-object.h | 638 bool IsCallable() const;
|
/third_party/node/deps/v8/src/heap/ |
H A D | factory.cc | 1431 DCHECK(callable->IsCallable()); in NewCallableTask() 1453 DCHECK(then->IsCallable()); in NewPromiseResolveThenableJobTask() 2727 DCHECK(target->IsCallable()); in NewJSWrappedFunction() 3028 DCHECK(target_function->IsCallable()); in NewJSBoundFunction() 3081 if (target->IsCallable()) { in NewJSProxy()
|
/third_party/node/deps/v8/src/wasm/ |
H A D | module-instantiate.cc | 1103 if (!value->IsCallable()) { in ProcessImportedFunction() 1585 !value->IsCallable()) { in CompileImportWrappers()
|