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

1234567891011>>

/external/v8/src/
H A Dd8-windows.cc11 void Shell::AddOSMethods(Isolate* isolate, Local<ObjectTemplate> os_templ) {}
/external/v8/include/
H A Dv8-debug.h61 virtual Local<Object> GetExecutionState() const = 0;
62 virtual Local<Object> GetEventData() const = 0;
67 virtual Local<String> GetJSON() const = 0;
74 virtual Local<Context> GetEventContext() const = 0;
105 virtual Local<Object> GetExecutionState() const = 0;
106 virtual Local<Object> GetEventData() const = 0;
113 virtual Local<Context> GetEventContext() const = 0;
119 virtual Local<Value> GetCallbackData() const = 0;
159 Local<Value> data = Local<Valu
[all...]
H A Dv8.h113 template <class T> class Local;
205 * Local handles are light-weight and transient and typically used in
213 * a Local<Object>); the value will still be governed by a handle
218 class Local { class in namespace:v8
220 V8_INLINE Local() : val_(0) {} function in class:v8::Local
222 V8_INLINE Local(Local<S> that) function in class:v8::Local
226 * handles. For example, converting from a Local<String> to a
227 * Local<Number>.
253 V8_INLINE bool operator==(const Local<
336 explicit V8_INLINE Local(T* that) : val_(that) {} function in class:v8::Local
4603 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
4631 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
4766 SetIndexedPropertyHandler( IndexedPropertyGetterCallback getter, IndexedPropertySetterCallback setter = 0, IndexedPropertyQueryCallback query = 0, IndexedPropertyDeleterCallback deleter = 0, IndexedPropertyEnumeratorCallback enumerator = 0, Local<Value> data = Local<Value>()) argument
[all...]
/external/pdfium/fpdfsdk/include/jsapi/
H A Dfxjs_v8.h81 using FXJS_CONSTRUCTOR = void (*)(IJS_Runtime* cc, v8::Local<v8::Object> obj);
82 using FXJS_DESTRUCTOR = void (*)(v8::Local<v8::Object> obj);
129 v8::Local<v8::Value> pDefault);
135 v8::Local<v8::Value> pDefault);
151 void FXJS_SetRuntimeForV8Context(v8::Local<v8::Context> v8Context,
161 v8::Local<v8::Object> FXJS_NewFxDynamicObj(v8::Isolate* pIsolate,
164 v8::Local<v8::Object> FXJS_GetThisObj(v8::Isolate* pIsolate);
165 int FXJS_GetObjDefnID(v8::Local<v8::Object> pObj);
166 const wchar_t* FXJS_GetTypeof(v8::Local<v8::Value> pObj);
169 v8::Local<v
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DLocal.java20 public class Local class
25 public Local(int index, Type type) { method in class:Local
/external/pdfium/xfa/src/fxjse/src/
H A Dutil_inline.h9 static V8_INLINE v8::Local<v8::Object> FXJSE_GetGlobalObjectFromContext(
10 const v8::Local<v8::Context>& hContext) {
13 static V8_INLINE void FXJSE_UpdateObjectBinding(v8::Local<v8::Object>& hObject,
20 const v8::Local<v8::Object>& hJSObject,
26 v8::Local<v8::Object> hObject = hJSObject;
28 v8::Local<v8::Value> hProtoObject = hObject->GetPrototype();
38 v8::Local<v8::FunctionTemplate> hClass =
39 v8::Local<v8::FunctionTemplate>::New(
H A Dvalue.h25 v8::Local<v8::Value> hValue =
26 v8::Local<v8::Value>::New(m_pIsolate, m_hValue);
34 v8::Local<v8::Value> hValue =
35 v8::Local<v8::Value>::New(m_pIsolate, m_hValue);
43 v8::Local<v8::Value> hValue =
44 v8::Local<v8::Value>::New(m_pIsolate, m_hValue);
52 v8::Local<v8::Value> hValue =
53 v8::Local<v8::Value>::New(m_pIsolate, m_hValue);
61 v8::Local<v8::Value> hValue =
62 v8::Local<v
[all...]
H A Dcontext.cpp70 v8::Local<v8::Object> FXJSE_CreateReturnValue(v8::Isolate* pIsolate,
72 v8::Local<v8::Object> hReturnValue = v8::Object::New(pIsolate);
74 v8::Local<v8::Value> hException = trycatch.Exception();
75 v8::Local<v8::Message> hMessage = trycatch.Message();
77 v8::Local<v8::Value> hValue;
114 v8::Local<v8::Value> hValue =
115 v8::Local<v8::Value>::New(pIsolate, lpValue->DirectGetValue());
136 v8::Local<v8::Value> hValue =
137 v8::Local<v8::Value>::New(pIsolate, lpValue->DirectGetValue());
151 v8::Local<v
[all...]
/external/v8/test/cctest/
H A Dtest-access-checks.cc13 void NamedGetter(v8::Local<v8::Name> property,
16 v8::Local<v8::Context> context = isolate->GetCurrentContext();
21 void NamedSetter(v8::Local<v8::Name> property, v8::Local<v8::Value> value,
24 v8::Local<v8::Context> context = isolate->GetCurrentContext();
33 void NamedQuery(v8::Local<v8::Name> property,
36 v8::Local<v8::Context> context = isolate->GetCurrentContext();
42 void NamedDeleter(v8::Local<v8::Name> property,
45 v8::Local<v8::Context> context = isolate->GetCurrentContext();
53 v8::Local<v
[all...]
H A Dtest-js-arm64-variables.cc49 using ::v8::Local;
63 static void ExpectInt32(Local<Context> context, int32_t expected,
64 Local<Value> result) {
74 Local<Value> result = CompileRun(
86 Local<Value> result = CompileRun(
97 Local<Value> result = CompileRun(
104 // Context-allocated locals. Local function forces x into f3's context.
108 Local<Value> result = CompileRun(
118 // Local function reads x from an outer context.
122 Local<Valu
[all...]
H A Dtest-receiver-check-hidden-prototype.cc25 v8::Local<v8::Context> current_context = isolate->GetCurrentContext();
27 v8::Local<v8::FunctionTemplate> constructor_template =
29 v8::Local<v8::FunctionTemplate> prototype_template =
33 v8::Local<v8::ObjectTemplate> proto_instance_template =
40 v8::Local<v8::FunctionTemplate> accessor_template =
42 isolate, SlowCallback, fast_accessor_builder, v8::Local<v8::Value>(),
46 v8_str("bar"), accessor_template, v8::Local<v8::FunctionTemplate>(),
49 v8::Local<v8::Object> object =
55 v8::Local<v8::Object> hidden_prototype =
H A Dtest-global-object.cc34 using ::v8::Local;
41 v8::Local<v8::String> var_name = v8_str("x");
44 v8::Local<v8::Script> script = v8_compile("\"use strict\"; x = 42;");
45 v8::Local<v8::Object> proto = v8::Object::New(CcTest::isolate());
46 v8::Local<v8::Object> global =
62 v8::Local<Context> env2 = Context::New(env1->GetIsolate());
64 Local<Value> token = v8_str("foo");
79 Local<Array> result;
80 result = Local<Array>::Cast(CompileRun("Object.keys(global2)"));
92 Local<Arra
[all...]
H A Dprint-extension.h39 virtual v8::Local<v8::FunctionTemplate> GetNativeFunctionTemplate(
40 v8::Isolate* isolate, v8::Local<v8::String> name);
H A Dcctest.h115 static v8::Local<v8::Object> global() {
143 static v8::Local<v8::Context> NewContext(
259 v8::Local<v8::ObjectTemplate> global_template =
260 v8::Local<v8::ObjectTemplate>(),
261 v8::Local<v8::Value> global_object = v8::Local<v8::Value>()) {
266 v8::Local<v8::ObjectTemplate> global_template =
267 v8::Local<v8::ObjectTemplate>(),
268 v8::Local<v8::Value> global_object = v8::Local<v
[all...]
/external/v8/samples/
H A Dprocess.cc96 JsHttpRequestProcessor(Isolate* isolate, Local<String> script)
107 bool ExecuteScript(Local<String> script);
115 static Local<ObjectTemplate> MakeRequestTemplate(Isolate* isolate);
116 static Local<ObjectTemplate> MakeMapTemplate(Isolate* isolate);
119 static void GetPath(Local<String> name,
121 static void GetReferrer(Local<String> name,
123 static void GetHost(Local<String> name,
125 static void GetUserAgent(Local<String> name,
129 static void MapGet(Local<Name> name, const PropertyCallbackInfo<Value>& info);
130 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>();
H A Dfree-buffer-extension.h17 virtual v8::Local<v8::FunctionTemplate> GetNativeFunctionTemplate(
18 v8::Isolate* isolate, v8::Local<v8::String> name);
H A Dignition-statistics-extension.h18 v8::Local<v8::FunctionTemplate> GetNativeFunctionTemplate(
19 v8::Isolate* isolate, v8::Local<v8::String> name) override;
H A Dstatistics-extension.h16 virtual v8::Local<v8::FunctionTemplate> GetNativeFunctionTemplate(
17 v8::Isolate* isolate, v8::Local<v8::String> name);
/external/pdfium/fpdfsdk/src/jsapi/
H A Dfxjs_v8.cpp64 v8::Local<v8::FunctionTemplate> fun = v8::FunctionTemplate::New(isolate);
68 v8::Local<v8::Signature> sig = v8::Signature::New(isolate, fun);
78 v8::Local<v8::ObjectTemplate> GetInstanceTemplate() {
80 v8::Local<v8::FunctionTemplate> function =
85 v8::Local<v8::Signature> GetSignature() {
100 static v8::Local<v8::ObjectTemplate> GetGlobalObjectTemplate(
204 v8::FunctionTemplate::New(pIsolate, pMethodCall, v8::Local<v8::Value>(),
242 v8::Local<v8::Value> pDefault) {
265 v8::Local<v8::Value> pDefault) {
288 v8::Local<v
[all...]
/external/clang/test/CXX/class.access/class.friend/
H A Dp6.cpp21 struct Local { struct
/external/dexmaker/src/main/java/com/google/dexmaker/
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/v8/test/cctest/libsampler/
H A Dtest-sampler.cc60 static void Getter(v8::Local<v8::String> name,
64 static void Setter(v8::Local<v8::String> name,
65 v8::Local<v8::Value> value,
71 static void RunSampler(v8::Local<v8::Context> env,
72 v8::Local<v8::Function> function,
73 v8::Local<v8::Value> argv[], int argc,
104 static v8::Local<v8::Function> GetFunction(v8::Local<v8::Context> env,
106 return v8::Local<v8::Function>::Cast(
116 v8::Local<v
[all...]
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
H A Dp3-generic-lambda-1y.cpp46 struct Local { struct
50 static Local localfi(int) { return Local{}; }
52 auto l4 = [](auto (*fp)(int)) -> int { return fp(3); }; //expected-error{{no viable conversion from returned value of type 'Local' to function return type 'int'}}
53 l4(&Local::ifi);
54 l4(&Local::cfi);
55 l4(&Local::dfi);
56 l4(&Local::localfi); //expected-note{{in instantiation of function template specialization}}
/external/v8/test/mjsunit/
H A Darguments-apply.js49 function Local() { function
54 assertEquals(0, Local().length);
55 assertEquals(1, Local(1).length);
56 assertEquals(2, Local(2)[0]);
57 assertEquals(2, Local(3, 4).length);
58 assertEquals(3, Local(3, 4)[0]);
59 assertEquals(4, Local(3, 4)[1]);

Completed in 435 milliseconds

1234567891011>>