• Home
  • History
  • Annotate
  • Raw
  • Download

Lines Matching refs:MaybeLocal

141     return MaybeLocal<T>();                                                  \
159 MaybeLocal<T>(), InternalEscapableScope, \
204 EXCEPTION_BAILOUT_CHECK_SCOPED_DO_NOT_USE(isolate, MaybeLocal<T>())
1448 MaybeLocal<FunctionTemplate> FunctionTemplate::FromSnapshot(Isolate* isolate, in FromSnapshot()
1663 MaybeLocal<ObjectTemplate> ObjectTemplate::FromSnapshot(Isolate* isolate, in FromSnapshot()
2124 MaybeLocal<Value> Script::Run(Local<Context> context) { in Run()
2127 ENTER_V8(isolate, context, Script, Run, MaybeLocal<Value>(), in Run()
2309 MaybeLocal<Value> Module::Evaluate(Local<Context> context) { in Evaluate()
2312 ENTER_V8(isolate, context, Module, Evaluate, MaybeLocal<Value>(), in Evaluate()
2359 MaybeLocal<UnboundScript> ScriptCompiler::CompileUnboundInternal( in CompileUnboundInternal()
2365 CompileUnbound, MaybeLocal<UnboundScript>(), in CompileUnboundInternal()
2408 MaybeLocal<UnboundScript> ScriptCompiler::CompileUnboundScript( in CompileUnboundScript()
2418 MaybeLocal<Script> ScriptCompiler::Compile(Local<Context> context, in Compile()
2429 if (!maybe.ToLocal(&result)) return MaybeLocal<Script>(); in Compile()
2434 MaybeLocal<Module> ScriptCompiler::CompileModule( in CompileModule()
2447 if (!maybe.ToLocal(&unbound)) return MaybeLocal<Module>(); in CompileModule()
2492 MaybeLocal<Function> ScriptCompiler::CompileFunctionInContext( in CompileFunctionInContext()
2577 MaybeLocal<Script> ScriptCompiler::Compile(Local<Context> context, in Compile()
2645 MaybeLocal<Script> Script::Compile(Local<Context> context, Local<String> source, in Compile()
2742 MaybeLocal<Value> v8::TryCatch::StackTrace(Local<Context> context) const { in StackTrace()
2918 MaybeLocal<String> Message::GetSourceLine(Local<Context> context) const { in GetSourceLine()
3031 MaybeLocal<Value> JSON::Parse(Isolate* v8_isolate, Local<String> json_string) { in Parse()
3045 MaybeLocal<Value> JSON::Parse(Local<Context> context, in Parse()
3060 MaybeLocal<String> JSON::Stringify(Local<Context> context, in Stringify()
3186 MaybeLocal<Object> ValueDeserializer::Delegate::ReadHostObject( in ReadHostObject()
3192 return MaybeLocal<Object>(); in ReadHostObject()
3195 MaybeLocal<WasmCompiledModule> ValueDeserializer::Delegate::GetWasmModuleFromId( in GetWasmModuleFromId()
3201 return MaybeLocal<WasmCompiledModule>(); in GetWasmModuleFromId()
3204 MaybeLocal<SharedArrayBuffer>
3211 return MaybeLocal<SharedArrayBuffer>(); in GetSharedArrayBufferFromId()
3287 MaybeLocal<Value> ValueDeserializer::ReadValue(Local<Context> context) { in ReadValue()
3547 MaybeLocal<String> Value::ToString(Local<Context> context) const { in ToString()
3564 MaybeLocal<String> Value::ToDetailString(Local<Context> context) const { in ToDetailString()
3575 MaybeLocal<Object> Value::ToObject(Local<Context> context) const { in ToObject()
3591 MaybeLocal<BigInt> Value::ToBigInt(Local<Context> context) const { in ToBigInt()
3602 MaybeLocal<Boolean> Value::ToBoolean(Local<Context> context) const { in ToBoolean()
3616 MaybeLocal<Number> Value::ToNumber(Local<Context> context) const { in ToNumber()
3633 MaybeLocal<Integer> Value::ToInteger(Local<Context> context) const { in ToInteger()
3650 MaybeLocal<Int32> Value::ToInt32(Local<Context> context) const { in ToInt32()
3667 MaybeLocal<Uint32> Value::ToUint32(Local<Context> context) const { in ToUint32()
4015 MaybeLocal<Uint32> Value::ToArrayIndex(Local<Context> context) const { in ToArrayIndex()
4344 MaybeLocal<Value> v8::Object::Get(Local<v8::Context> context, in Get()
4363 MaybeLocal<Value> v8::Object::Get(Local<Context> context, uint32_t index) { in Get()
4380 MaybeLocal<Value> v8::Object::GetPrivate(Local<Context> context, in GetPrivate()
4409 MaybeLocal<Value> v8::Object::GetOwnPropertyDescriptor(Local<Context> context, in GetOwnPropertyDescriptor()
4468 MaybeLocal<Array> v8::Object::GetPropertyNames(Local<Context> context) { in GetPropertyNames()
4475 MaybeLocal<Array> v8::Object::GetPropertyNames( in GetPropertyNames()
4503 MaybeLocal<Array> v8::Object::GetOwnPropertyNames(Local<Context> context) { in GetOwnPropertyNames()
4513 MaybeLocal<Array> v8::Object::GetOwnPropertyNames( in GetOwnPropertyNames()
4520 MaybeLocal<String> v8::Object::ObjectProtoToString(Local<Context> context) { in ObjectProtoToString()
4693 MaybeLocal<Value> data, AccessControl settings, in SetAccessor()
4844 MaybeLocal<Value> v8::Object::GetRealNamedPropertyInPrototypeChain( in GetRealNamedPropertyInPrototypeChain()
4849 if (!self->IsJSObject()) return MaybeLocal<Value>(); in GetRealNamedPropertyInPrototypeChain()
4852 if (iter.IsAtEnd()) return MaybeLocal<Value>(); in GetRealNamedPropertyInPrototypeChain()
4861 if (!it.IsFound()) return MaybeLocal<Value>(); in GetRealNamedPropertyInPrototypeChain()
4892 MaybeLocal<Value> v8::Object::GetRealNamedProperty(Local<Context> context, in GetRealNamedProperty()
4903 if (!it.IsFound()) return MaybeLocal<Value>(); in GetRealNamedProperty()
4964 MaybeLocal<Value> Object::CallAsFunction(Local<Context> context, in CallAsFunction()
4969 ENTER_V8(isolate, context, Object, CallAsFunction, MaybeLocal<Value>(), in CallAsFunction()
4984 MaybeLocal<Value> Object::CallAsConstructor(Local<Context> context, int argc, in CallAsConstructor()
4988 ENTER_V8(isolate, context, Object, CallAsConstructor, MaybeLocal<Value>(), in CallAsConstructor()
5001 MaybeLocal<Function> Function::New(Local<Context> context, in New()
5023 MaybeLocal<Object> Function::NewInstance(Local<Context> context, int argc, in NewInstance()
5029 MaybeLocal<Object> Function::NewInstanceWithSideEffectType( in NewInstanceWithSideEffectType()
5034 ENTER_V8(isolate, context, Function, NewInstance, MaybeLocal<Object>(), in NewInstanceWithSideEffectType()
5077 MaybeLocal<v8::Value> Function::Call(Local<Context> context, in Call()
5082 ENTER_V8(isolate, context, Function, Call, MaybeLocal<Value>(), in Call()
6129 v8::MaybeLocal<ObjectTemplate> maybe_global_template, in CreateEnvironment()
6130 v8::MaybeLocal<Value> maybe_global_proxy, size_t context_snapshot_index, in CreateEnvironment()
6225 v8::MaybeLocal<ObjectTemplate> global_template, in NewContext()
6226 v8::MaybeLocal<Value> global_object, size_t context_snapshot_index, in NewContext()
6251 v8::MaybeLocal<ObjectTemplate> global_template, in New()
6252 v8::MaybeLocal<Value> global_object, in New()
6258 MaybeLocal<Context> v8::Context::FromSnapshot( in FromSnapshot()
6261 v8::ExtensionConfiguration* extensions, MaybeLocal<Value> global_object) { in FromSnapshot()
6266 return MaybeLocal<Context>(); in FromSnapshot()
6268 return NewContext(external_isolate, extensions, MaybeLocal<ObjectTemplate>(), in FromSnapshot()
6273 MaybeLocal<Object> v8::Context::NewRemoteContext( in NewRemoteContext()
6275 v8::MaybeLocal<v8::Value> global_object) { in NewRemoteContext()
6296 return MaybeLocal<Object>(); in NewRemoteContext()
6410 MaybeLocal<v8::Object> ObjectTemplate::NewInstance(Local<Context> context) { in NewInstance()
6450 MaybeLocal<v8::Function> FunctionTemplate::GetFunction(Local<Context> context) { in GetFunction()
6466 MaybeLocal<v8::Object> FunctionTemplate::NewRemoteInstance() { in NewRemoteInstance()
6488 return MaybeLocal<Object>(); in NewRemoteInstance()
6586 MaybeLocal<String> result; \
6590 result = MaybeLocal<String>(); \
6613 MaybeLocal<String> String::NewFromUtf8(Isolate* isolate, const char* data, in NewFromUtf8()
6620 MaybeLocal<String> String::NewFromOneByte(Isolate* isolate, const uint8_t* data, in NewFromOneByte()
6637 MaybeLocal<String> String::NewFromTwoByte(Isolate* isolate, in NewFromTwoByte()
6667 MaybeLocal<String> v8::String::NewExternalTwoByte( in NewExternalTwoByte()
6672 return MaybeLocal<String>(); in NewExternalTwoByte()
6690 MaybeLocal<String> v8::String::NewExternalOneByte( in NewExternalOneByte()
6695 return MaybeLocal<String>(); in NewExternalOneByte()
6923 MaybeLocal<v8::Value> v8::Date::New(Local<Context> context, double time) { in New()
6972 MaybeLocal<v8::RegExp> v8::RegExp::New(Local<Context> context, in New()
7058 MaybeLocal<Value> Map::Get(Local<Context> context, Local<Value> key) { in Get()
7072 MaybeLocal<Map> Map::Set(Local<Context> context, Local<Value> key, in Set()
7189 MaybeLocal<Set> Set::Add(Local<Context> context, Local<Value> key) { in Add()
7265 MaybeLocal<Promise::Resolver> Promise::Resolver::New(Local<Context> context) { in New()
7319 MaybeLocal<Promise> Promise::Catch(Local<Context> context, in Catch()
7333 MaybeLocal<Promise> Promise::Then(Local<Context> context, in Then()
7404 MaybeLocal<Proxy> Proxy::New(Local<Context> context, Local<Object> local_target, in New()
7448 MaybeLocal<WasmCompiledModule> WasmCompiledModule::FromTransferrableModule( in FromTransferrableModule()
7476 MaybeLocal<WasmCompiledModule> WasmCompiledModule::Deserialize( in Deserialize()
7486 return MaybeLocal<WasmCompiledModule>(); in Deserialize()
7492 MaybeLocal<WasmCompiledModule> WasmCompiledModule::DeserializeOrCompile( in DeserializeOrCompile()
7495 MaybeLocal<WasmCompiledModule> ret = in DeserializeOrCompile()
7503 MaybeLocal<WasmCompiledModule> WasmCompiledModule::Compile(Isolate* isolate, in Compile()
7509 return MaybeLocal<WasmCompiledModule>(); in Compile()
7516 if (maybe_compiled.is_null()) return MaybeLocal<WasmCompiledModule>(); in Compile()
7567 void WasmModuleObjectBuilderStreaming::Abort(MaybeLocal<Value> exception) { in Abort()
8048 MaybeLocal<BigInt> v8::BigInt::NewFromWords(Local<Context> context, in NewFromWords()
8054 MaybeLocal<BigInt>(), InternalEscapableScope); in NewFromWords()
9131 MaybeLocal<Array> debug::GetInternalProperties(Isolate* v8_isolate, in GetInternalProperties()
9138 return MaybeLocal<Array>(); in GetInternalProperties()
9231 MaybeLocal<String> debug::Script::Name() const { in Name()
9236 if (!value->IsString()) return MaybeLocal<String>(); in Name()
9241 MaybeLocal<String> debug::Script::SourceURL() const { in SourceURL()
9246 if (!value->IsString()) return MaybeLocal<String>(); in SourceURL()
9251 MaybeLocal<String> debug::Script::SourceMappingURL() const { in SourceMappingURL()
9256 if (!value->IsString()) return MaybeLocal<String>(); in SourceMappingURL()
9270 MaybeLocal<String> debug::Script::Source() const { in Source()
9275 if (!value->IsString()) return MaybeLocal<String>(); in Source()
9533 MaybeLocal<UnboundScript> debug::CompileInspectorScript(Isolate* v8_isolate, in CompileInspectorScript()
9589 v8::MaybeLocal<v8::Array> v8::Object::PreviewEntries(bool* is_key_value) { in PreviewEntries()
9625 return v8::MaybeLocal<v8::Array>(); in PreviewEntries()
9694 MaybeLocal<debug::Script> debug::GeneratorObject::Script() { in Script()
9697 if (!maybe_script->IsScript()) return MaybeLocal<debug::Script>(); in Script()
9729 MaybeLocal<v8::Value> debug::EvaluateGlobal(v8::Isolate* isolate, in EvaluateGlobal()
9873 MaybeLocal<String> debug::Coverage::FunctionData::Name() const { in Name()
9931 std::vector<MaybeLocal<String>> debug::TypeProfile::Entry::Types() const { in Types()
9932 std::vector<MaybeLocal<String>> result; in Types()