HomeSort by relevance Sort by last modified time
    Searched refs:MaybeLocal (Results 1 - 25 of 27) sorted by null

1 2

  /external/v8/src/inspector/
java-script-call-frame.h 55 v8::MaybeLocal<v8::Object> details() const;
57 v8::MaybeLocal<v8::Value> evaluate(v8::Local<v8::Value> expression,
59 v8::MaybeLocal<v8::Value> restart();
60 v8::MaybeLocal<v8::Value> setVariableValue(int scopeNumber,
v8-value-copier.cc 16 v8::MaybeLocal<v8::Value> copy(v8::Local<v8::Value> value, int depth) {
18 return v8::MaybeLocal<v8::Value>();
20 if (value.IsEmpty()) return v8::MaybeLocal<v8::Value>();
24 if (!value->IsObject()) return v8::MaybeLocal<v8::Value>();
32 return v8::MaybeLocal<v8::Value>();
36 return v8::MaybeLocal<v8::Value>();
39 return v8::MaybeLocal<v8::Value>();
41 return v8::MaybeLocal<v8::Value>();
48 return v8::MaybeLocal<v8::Value>();
51 return v8::MaybeLocal<v8::Value>()
    [all...]
v8-value-copier.h 14 v8::MaybeLocal<v8::Value> copyValueFromDebuggerContext(
java-script-call-frame.cc 82 v8::MaybeLocal<v8::Object> JavaScriptCallFrame::details() const {
97 return v8::MaybeLocal<v8::Object>();
100 v8::MaybeLocal<v8::Value> JavaScriptCallFrame::evaluate(
116 v8::MaybeLocal<v8::Value> JavaScriptCallFrame::restart() {
128 v8::MaybeLocal<v8::Value> result = restartFunction->Call(
134 v8::MaybeLocal<v8::Value> JavaScriptCallFrame::setVariableValue(
v8-inspector-impl.h 63 v8::MaybeLocal<v8::Value> runCompiledScript(v8::Local<v8::Context>,
65 v8::MaybeLocal<v8::Value> callFunction(v8::Local<v8::Function>,
69 v8::MaybeLocal<v8::Value> compileAndRunInternalScript(v8::Local<v8::Context>,
71 v8::MaybeLocal<v8::Value> callInternalFunction(v8::Local<v8::Function>,
76 v8::MaybeLocal<v8::Script> compileScript(v8::Local<v8::Context>,
129 v8::MaybeLocal<v8::Value> callFunction(
v8-debugger.h 77 v8::MaybeLocal<v8::Array> internalProperties(v8::Local<v8::Context>,
99 v8::MaybeLocal<v8::Value> callDebuggerMethod(const char* functionName,
120 v8::MaybeLocal<v8::Value> getTargetScopes(v8::Local<v8::Context>,
124 v8::MaybeLocal<v8::Value> functionScopes(v8::Local<v8::Context>,
126 v8::MaybeLocal<v8::Value> generatorScopes(v8::Local<v8::Context>,
v8-debugger.cc 45 v8::MaybeLocal<v8::Array> collectionsEntries(v8::Local<v8::Context> context,
51 return v8::MaybeLocal<v8::Array>();
57 return v8::MaybeLocal<v8::Array>();
78 return v8::MaybeLocal<v8::Array>();
83 v8::MaybeLocal<v8::Object> buildLocation(v8::Local<v8::Context> context,
87 return v8::MaybeLocal<v8::Object>();
90 return v8::MaybeLocal<v8::Object>();
95 return v8::MaybeLocal<v8::Object>();
101 return v8::MaybeLocal<v8::Object>();
107 return v8::MaybeLocal<v8::Object>()
    [all...]
v8-inspector-impl.cc 93 v8::MaybeLocal<v8::Value> V8InspectorImpl::runCompiledScript(
100 v8::MaybeLocal<v8::Value> result = script->Run(context);
108 v8::MaybeLocal<v8::Value> V8InspectorImpl::callFunction(
115 v8::MaybeLocal<v8::Value> V8InspectorImpl::callInternalFunction(
122 v8::MaybeLocal<v8::Value> V8InspectorImpl::callFunction(
130 v8::MaybeLocal<v8::Value> result =
139 v8::MaybeLocal<v8::Value> V8InspectorImpl::compileAndRunInternalScript(
144 return v8::MaybeLocal<v8::Value>();
151 v8::MaybeLocal<v8::Script> V8InspectorImpl::compileScript(
v8-function-call.cc 100 v8::MaybeLocal<v8::Value> maybeResult = function->Call(
v8-console.cc 133 v8::MaybeLocal<v8::Object> firstArgAsObject() {
135 return v8::MaybeLocal<v8::Object>();
139 v8::MaybeLocal<v8::Function> firstArgAsFunction() {
141 return v8::MaybeLocal<v8::Function>();
148 v8::MaybeLocal<v8::Map> privateMap(const char* name) {
154 return v8::MaybeLocal<v8::Map>();
158 return v8::MaybeLocal<v8::Map>();
162 : v8::MaybeLocal<v8::Map>();
    [all...]
v8-runtime-agent-impl.cc 65 v8::MaybeLocal<v8::Value> value,
217 v8::MaybeLocal<v8::Value> maybeResultValue,
296 v8::MaybeLocal<v8::Value> maybeResultValue;
383 v8::MaybeLocal<v8::Value> maybeFunctionValue;
414 v8::MaybeLocal<v8::Value> maybeResultValue = m_inspector->callFunction(
622 v8::MaybeLocal<v8::Value> maybeResultValue =
injected-script.h 96 v8::MaybeLocal<v8::Value> maybeResultValue, const v8::TryCatch&,
v8-debugger-agent-impl.cc 719 v8::MaybeLocal<v8::Value> maybeResultValue =
751 v8::MaybeLocal<v8::Value> result =
    [all...]
  /external/v8/src/debug/
debug-interface.h 55 // TODO(dcarney): data arg should be a MaybeLocal
56 MaybeLocal<Value> Call(Local<Context> context, v8::Local<v8::Function> fun,
79 MaybeLocal<Array> GetInternalProperties(Isolate* isolate, Local<Value> value);
131 MaybeLocal<String> Name() const;
132 MaybeLocal<String> SourceURL() const;
133 MaybeLocal<String> SourceMappingURL() const;
134 MaybeLocal<Value> ContextData() const;
135 MaybeLocal<String> Source() const;
161 MaybeLocal<UnboundScript> CompileInspectorScript(Isolate* isolate,
193 v8::MaybeLocal<v8::Array> EntriesPreview(Isolate* isolate
    [all...]
  /external/v8/include/
v8-debug.h 192 // TODO(dcarney): data arg should be a MaybeLocal
193 static MaybeLocal<Value> Call(Local<Context> context,
217 static MaybeLocal<Context> GetDebuggedContext(Isolate* isolate));
231 static MaybeLocal<Array> GetInternalProperties(Isolate* isolate,
v8.h 113 class MaybeLocal;
314 friend class MaybeLocal;
348 * A MaybeLocal<> is a wrapper around Local<> that enforces a check whether
351 * If an API method returns a MaybeLocal<>, the API method can potentially fail
355 * empty MaybeLocal is returned.
358 class MaybeLocal {
360 V8_INLINE MaybeLocal() : val_(nullptr) {}
362 V8_INLINE MaybeLocal(Local<S> that)
375 // Will crash if the MaybeLocal<> is empty.
    [all...]
v8-inspector.h 197 virtual v8::MaybeLocal<v8::Value> memoryInfo(v8::Isolate*,
199 return v8::MaybeLocal<v8::Value>();
  /external/v8/src/
api.cc 105 return MaybeLocal<T>(); \
134 function_name, MaybeLocal<T>(), \
139 MaybeLocal<T>(), InternalEscapableScope, \
145 MaybeLocal<T>(), InternalEscapableScope, \
183 EXCEPTION_BAILOUT_CHECK_SCOPED(isolate, MaybeLocal<T>())
    [all...]
d8.h 344 static MaybeLocal<Script> CompileString(
363 static MaybeLocal<Value> DeserializeValue(
478 static MaybeLocal<Context> CreateRealm(
480 v8::MaybeLocal<Value> global_object);
483 static MaybeLocal<Module> FetchModuleTree(v8::Local<v8::Context> context,
d8.cc 479 MaybeLocal<Script> Shell::CompileString(
500 MaybeLocal<Script> result =
515 MaybeLocal<Value> maybe_result;
666 MaybeLocal<Module> ResolveModuleCallback(Local<Context> context,
683 MaybeLocal<Module> Shell::FetchModuleTree(Local<Context> context,
703 return MaybeLocal<Module>();
721 return MaybeLocal<Module>();
746 MaybeLocal<Value> maybe_result;
865 MaybeLocal<Context> Shell::CreateRealm(
867 v8::MaybeLocal<Value> global_object)
    [all...]
  /external/v8/samples/
shell.cc 59 v8::MaybeLocal<v8::String> ReadFile(v8::Isolate* isolate, const char* name);
238 v8::MaybeLocal<v8::String> ReadFile(v8::Isolate* isolate, const char* name) {
240 if (file == NULL) return v8::MaybeLocal<v8::String>();
252 return v8::MaybeLocal<v8::String>();
256 v8::MaybeLocal<v8::String> result = v8::String::NewFromUtf8(
process.cc 622 MaybeLocal<String> ReadFile(Isolate* isolate, const string& name) {
624 if (file == NULL) return MaybeLocal<String>();
636 return MaybeLocal<String>();
640 MaybeLocal<String> result = String::NewFromUtf8(
  /external/v8/src/wasm/
wasm-js.cc 104 v8::MaybeLocal<v8::Value> v8_ffi;
382 v8::MaybeLocal<v8::Value> maybe = object->Get(context, property);
419 v8::MaybeLocal<v8::Value> maybe =
    [all...]
  /external/pdfium/fxjs/
cfxjse_value.cpp 314 v8::MaybeLocal<v8::Value> maybe_retvalue =
327 v8::MaybeLocal<v8::Value> maybe_retvalue = hFunctionObject->CallAsFunction(
  /external/pdfium/fpdfsdk/javascript/
JS_Value.cpp 138 v8::MaybeLocal<v8::Number> maybeNum =

Completed in 772 milliseconds

1 2