Searched refs:Local (Results 1 - 25 of 300) sorted by relevance

1234567891011>>

/external/v8/src/inspector/
H A Dv8-value-copier.h15 v8::Isolate*, v8::Local<v8::Context> debuggerContext,
16 v8::Local<v8::Context> toContext, v8::Local<v8::Value>);
17 v8::Maybe<bool> createDataProperty(v8::Local<v8::Context>,
18 v8::Local<v8::Object>,
19 v8::Local<v8::Name> key,
20 v8::Local<v8::Value>);
21 v8::Maybe<bool> createDataProperty(v8::Local<v8::Context>, v8::Local<v8::Array>,
22 int index, v8::Local<v
[all...]
H A Dv8-internal-value-type.h14 bool markAsInternal(v8::Local<v8::Context>, v8::Local<v8::Object>,
16 bool markArrayEntriesAsInternal(v8::Local<v8::Context>, v8::Local<v8::Array>,
18 v8::Local<v8::Value> v8InternalValueTypeFrom(v8::Local<v8::Context>,
19 v8::Local<v8::Object>);
H A Dv8-function-call.h44 V8FunctionCall(V8InspectorImpl*, v8::Local<v8::Context>, v8::Local<v8::Value>,
47 void appendArgument(v8::Local<v8::Value>);
52 v8::Local<v8::Value> call(bool& hadException, bool reportExceptions = true);
53 v8::Local<v8::Value> callWithoutExceptionHandling();
57 v8::Local<v8::Context> m_context;
58 std::vector<v8::Local<v8::Value>> m_arguments;
59 v8::Local<v8::String> m_name;
60 v8::Local<v8::Value> m_value;
H A Djava-script-call-frame.cc38 JavaScriptCallFrame::JavaScriptCallFrame(v8::Local<v8::Context> debuggerContext,
39 v8::Local<v8::Object> callFrame)
50 v8::Local<v8::Context> context =
51 v8::Local<v8::Context>::New(m_isolate, m_debuggerContext);
52 v8::Local<v8::Object> callFrame =
53 v8::Local<v8::Object>::New(m_isolate, m_callFrame);
54 v8::Local<v8::Function> func = v8::Local<v8::Function>::Cast(
57 v8::Local<v8::Value> result;
70 v8::Local<v
[all...]
H A Dv8-internal-value-type.cc13 v8::Local<v8::Private> internalSubtypePrivate(v8::Isolate* isolate) {
19 v8::Local<v8::String> subtypeForInternalType(v8::Isolate* isolate,
32 return v8::Local<v8::String>();
37 bool markAsInternal(v8::Local<v8::Context> context,
38 v8::Local<v8::Object> object, V8InternalValueType type) {
40 v8::Local<v8::Private> privateValue = internalSubtypePrivate(isolate);
41 v8::Local<v8::String> subtype = subtypeForInternalType(isolate, type);
45 bool markArrayEntriesAsInternal(v8::Local<v8::Context> context,
46 v8::Local<v8::Array> array,
49 v8::Local<v
[all...]
H A Dv8-function-call.cc43 v8::Local<v8::Context> context,
44 v8::Local<v8::Value> value, const String16& name)
50 void V8FunctionCall::appendArgument(v8::Local<v8::Value> value) {
67 v8::Local<v8::Value> V8FunctionCall::call(bool& hadException,
72 v8::Local<v8::Value> result = callWithoutExceptionHandling();
77 v8::Local<v8::Value> V8FunctionCall::callWithoutExceptionHandling() {
78 v8::Local<v8::Object> thisObject = v8::Local<v8::Object>::Cast(m_value);
79 v8::Local<v8::Value> value;
81 return v8::Local<v
[all...]
H A Djava-script-call-frame.h46 v8::Local<v8::Context> debuggerContext, v8::Local<v8::Object> callFrame) {
57 v8::MaybeLocal<v8::Value> evaluate(v8::Local<v8::Value> expression,
61 v8::Local<v8::Value> variableName,
62 v8::Local<v8::Value> newValue);
65 JavaScriptCallFrame(v8::Local<v8::Context> debuggerContext,
66 v8::Local<v8::Object> callFrame);
H A Dv8-debugger.h53 const String16& sourceID, v8::Local<v8::String> newSource, bool dryRun,
69 v8::Local<v8::Context> pausedContext() { return m_pausedContext; }
74 std::unique_ptr<V8StackTraceImpl> createStackTrace(v8::Local<v8::StackTrace>);
77 v8::MaybeLocal<v8::Array> internalProperties(v8::Local<v8::Context>,
78 v8::Local<v8::Value>);
101 v8::Local<v8::Value> argv[],
103 v8::Local<v8::Context> debuggerContext() const;
109 void handleProgramBreak(v8::Local<v8::Context> pausedContext,
110 v8::Local<v8::Object> executionState,
111 v8::Local<v
[all...]
H A Dv8-inspector-impl.h60 int contextGroupId(v8::Local<v8::Context>);
63 v8::MaybeLocal<v8::Value> runCompiledScript(v8::Local<v8::Context>,
64 v8::Local<v8::Script>);
65 v8::MaybeLocal<v8::Value> callFunction(v8::Local<v8::Function>,
66 v8::Local<v8::Context>,
67 v8::Local<v8::Value> receiver,
68 int argc, v8::Local<v8::Value> info[]);
69 v8::MaybeLocal<v8::Value> compileAndRunInternalScript(v8::Local<v8::Context>,
70 v8::Local<v8::String>);
71 v8::MaybeLocal<v8::Value> callInternalFunction(v8::Local<v
[all...]
/external/pdfium/fxjs/
H A Dcjs_v8.h31 v8::Local<v8::Context> NewLocalContext();
32 v8::Local<v8::Context> GetPersistentContext();
34 v8::Local<v8::Value> NewNull();
35 v8::Local<v8::Value> NewUndefined();
36 v8::Local<v8::Array> NewArray();
37 v8::Local<v8::Number> NewNumber(int number);
38 v8::Local<v8::Number> NewNumber(double number);
39 v8::Local<v8::Number> NewNumber(float number);
40 v8::Local<v8::Boolean> NewBoolean(bool b);
41 v8::Local<v
[all...]
H A Dcjs_v8.cpp20 v8::Local<v8::Value> CJS_V8::GetObjectProperty(
21 v8::Local<v8::Object> pObj,
24 return v8::Local<v8::Value>();
25 v8::Local<v8::Value> val;
29 return v8::Local<v8::Value>();
34 v8::Local<v8::Object> pObj) {
38 v8::Local<v8::Array> val;
39 v8::Local<v8::Context> context = m_isolate->GetCurrentContext();
51 void CJS_V8::PutObjectProperty(v8::Local<v8::Object> pObj,
53 v8::Local<v
[all...]
H A Dcfxjse_value.cpp60 v8::Local<v8::String> hMessage = v8::String::NewFromUtf8(
63 v8::Local<v8::Value> hError = v8::Exception::Error(hMessage);
75 v8::Local<v8::Value> pValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue);
87 v8::Local<v8::FunctionTemplate> hClass =
88 v8::Local<v8::FunctionTemplate>::New(m_pIsolate, pClass->m_hTemplate);
89 v8::Local<v8::Object> hObject = hClass->InstanceTemplate()->NewInstance();
97 v8::Local<v8::Array> hArrayObject = v8::Array::New(m_pIsolate, values.size());
100 hArrayObject->Set(count++, v8::Local<v8::Value>::New(
108 v8::Local<v
[all...]
H A Dcjs_document.h27 CJS_Return set_ADBE(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
30 CJS_Return set_author(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
33 CJS_Return set_base_URL(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
36 CJS_Return set_bookmark_root(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
39 CJS_Return set_calculate(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
42 CJS_Return set_collab(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
45 CJS_Return set_creation_date(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
48 CJS_Return set_creator(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
51 CJS_Return set_delay(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
54 CJS_Return set_dirty(CJS_Runtime* pRuntime, v8::Local<v
[all...]
H A Dcfxjse_context.cpp46 v8::Local<v8::Object> CreateReturnValue(v8::Isolate* pIsolate,
48 v8::Local<v8::Object> hReturnValue = v8::Object::New(pIsolate);
50 v8::Local<v8::Value> hException = trycatch.Exception();
51 v8::Local<v8::Message> hMessage = trycatch.Message();
53 v8::Local<v8::Value> hValue;
83 v8::Local<v8::Object> GetGlobalObjectFromContext(
84 v8::Local<v8::Context> hContext) {
98 m_cscope(v8::Local<v8::Context>::New(pContext->m_pIsolate,
101 v8::Local<v8::Context> GetLocalContext() {
102 return v8::Local<v
[all...]
H A Dcjs_return.h16 explicit CJS_Return(v8::Local<v8::Value>);
24 v8::Local<v8::Value> Return() const { return return_; }
31 v8::Local<v8::Value> return_;
H A Dcjs_app.h25 CJS_Return set_active_docs(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
28 CJS_Return set_calculate(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
31 CJS_Return set_forms_version(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
34 CJS_Return set_fs(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
37 CJS_Return set_fullscreen(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
40 CJS_Return set_language(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
43 CJS_Return set_media(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
46 CJS_Return set_platform(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
50 v8::Local<v8::Value> vp);
53 CJS_Return set_viewer_type(CJS_Runtime* pRuntime, v8::Local<v
[all...]
H A Dcjs_publicmethods.h17 explicit CJS_PublicMethods(v8::Local<v8::Object> pObject);
31 const std::vector<v8::Local<v8::Value>>& params);
34 const std::vector<v8::Local<v8::Value>>& params);
37 const std::vector<v8::Local<v8::Value>>& params);
40 const std::vector<v8::Local<v8::Value>>& params);
43 const std::vector<v8::Local<v8::Value>>& params);
46 const std::vector<v8::Local<v8::Value>>& params);
49 const std::vector<v8::Local<v8::Value>>& params);
52 const std::vector<v8::Local<v8::Value>>& params);
55 const std::vector<v8::Local<v
[all...]
/external/v8/include/
H A Dv8-debug.h59 virtual Local<Object> GetExecutionState() const = 0;
60 virtual Local<Object> GetEventData() const = 0;
65 virtual Local<String> GetJSON() const = 0;
72 virtual Local<Context> GetEventContext() const = 0;
102 virtual Local<Object> GetExecutionState() const = 0;
103 virtual Local<Object> GetEventData() const = 0;
110 virtual Local<Context> GetEventContext() const = 0;
116 virtual Local<Value> GetCallbackData() const = 0;
149 Local<Value> data = Local<Valu
[all...]
H A Dv8.h111 template <class T> class Local;
203 * Local handles are light-weight and transient and typically used in
211 * a Local<Object>); the value will still be governed by a handle
216 class Local { class in namespace:v8
218 V8_INLINE Local() : val_(0) {} function in class:v8::Local
220 V8_INLINE Local(Local<S> that) function in class:v8::Local
224 * handles. For example, converting from a Local<String> to a
225 * Local<Number>.
251 V8_INLINE bool operator==(const Local<
334 explicit V8_INLINE Local(T* that) : val_(that) {} function in class:v8::Local
5274 NamedPropertyHandlerConfiguration( GenericNamedPropertyGetterCallback getter = 0, GenericNamedPropertySetterCallback setter = 0, GenericNamedPropertyQueryCallback query = 0, GenericNamedPropertyDeleterCallback deleter = 0, GenericNamedPropertyEnumeratorCallback enumerator = 0, Local<Value> data = Local<Value>(), PropertyHandlerFlags flags = PropertyHandlerFlags::kNone) argument
5293 NamedPropertyHandlerConfiguration( GenericNamedPropertyGetterCallback getter, GenericNamedPropertySetterCallback setter, GenericNamedPropertyDescriptorCallback descriptor, GenericNamedPropertyDeleterCallback deleter, GenericNamedPropertyEnumeratorCallback enumerator, GenericNamedPropertyDefinerCallback definer, Local<Value> data = Local<Value>(), PropertyHandlerFlags flags = PropertyHandlerFlags::kNone) argument
5325 IndexedPropertyHandlerConfiguration( IndexedPropertyGetterCallback getter = 0, IndexedPropertySetterCallback setter = 0, IndexedPropertyQueryCallback query = 0, IndexedPropertyDeleterCallback deleter = 0, IndexedPropertyEnumeratorCallback enumerator = 0, Local<Value> data = Local<Value>(), PropertyHandlerFlags flags = PropertyHandlerFlags::kNone) argument
5344 IndexedPropertyHandlerConfiguration( IndexedPropertyGetterCallback getter, IndexedPropertySetterCallback setter, IndexedPropertyDescriptorCallback descriptor, IndexedPropertyDeleterCallback deleter, IndexedPropertyEnumeratorCallback enumerator, IndexedPropertyDefinerCallback definer, Local<Value> data = Local<Value>(), PropertyHandlerFlags flags = PropertyHandlerFlags::kNone) argument
5497 SetIndexedPropertyHandler( IndexedPropertyGetterCallback getter, IndexedPropertySetterCallback setter = 0, IndexedPropertyQueryCallback query = 0, IndexedPropertyDeleterCallback deleter = 0, IndexedPropertyEnumeratorCallback enumerator = 0, Local<Value> data = Local<Value>()) argument
[all...]
/external/v8/samples/
H A Dprocess.cc85 JsHttpRequestProcessor(Isolate* isolate, Local<String> script)
96 bool ExecuteScript(Local<String> script);
104 static Local<ObjectTemplate> MakeRequestTemplate(Isolate* isolate);
105 static Local<ObjectTemplate> MakeMapTemplate(Isolate* isolate);
108 static void GetPath(Local<String> name,
110 static void GetReferrer(Local<String> name,
112 static void GetHost(Local<String> name,
114 static void GetUserAgent(Local<String> name,
118 static void MapGet(Local<Name> name, const PropertyCallbackInfo<Value>& info);
119 static void MapSet(Local<Nam
[all...]
/external/v8/src/extensions/
H A Dfree-buffer-extension.cc14 v8::Local<v8::FunctionTemplate> FreeBufferExtension::GetNativeFunctionTemplate(
15 v8::Isolate* isolate, v8::Local<v8::String> str) {
22 v8::Local<v8::ArrayBuffer> arrayBuffer = args[0].As<v8::ArrayBuffer>();
/external/clang/test/CXX/class.access/class.friend/
H A Dp6.cpp21 struct Local { struct
/external/dexmaker/dexmaker/src/main/java/com/android/dx/
H A DLocal.java24 public final class Local<T> { class
30 private Local(Code code, TypeId<T> type) { method in class:Local
35 static <T> Local<T> get(Code code, TypeId<T> type) {
36 return new Local<T>(code, type);
/external/libmojo/mojo/edk/js/
H A Dcore.h17 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
H A Dsupport.h17 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);

Completed in 636 milliseconds

1234567891011>>