HomeSort by relevance Sort by last modified time
    Searched refs:Local (Results 26 - 50 of 551) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/test/cctest/
test-js-arm64-variables.cc 51 using ::v8::Local;
65 static void ExpectInt32(int32_t expected, Local<Value> result) {
75 Local<Value> result = CompileRun(
87 Local<Value> result = CompileRun(
98 Local<Value> result = CompileRun(
105 // Context-allocated locals. Local function forces x into f3's context.
109 Local<Value> result = CompileRun(
119 // Local function reads x from an outer context.
123 Local<Value> result = CompileRun(
133 // Local function reads x from an outer context
    [all...]
test-decls.cc 57 Local<Context> context = Local<Context>::New(isolate, context_);
66 v8::Handle<Value> value = Local<Value>());
73 virtual v8::Handle<Value> Get(Local<String> key);
74 virtual v8::Handle<Value> Set(Local<String> key, Local<Value> value);
75 virtual v8::Handle<Integer> Query(Local<String> key);
85 virtual Local<ObjectTemplate> GetHolder(Local<FunctionTemplate> function) {
91 static void HandleGet(Local<String> key
    [all...]
  /external/chromium_org/gin/
interceptor.cc 23 v8::Local<v8::Value> NamedPropertyInterceptor::GetNamedProperty(
26 return v8::Local<v8::Value>();
31 v8::Local<v8::Value> value) {}
48 v8::Local<v8::Value> IndexedPropertyInterceptor::GetIndexedProperty(
51 return v8::Local<v8::Value>();
57 v8::Local<v8::Value> value) {}
interceptor.h 26 virtual v8::Local<v8::Value> GetNamedProperty(v8::Isolate* isolate,
30 v8::Local<v8::Value> value);
46 virtual v8::Local<v8::Value> GetIndexedProperty(v8::Isolate* isolate,
50 v8::Local<v8::Value> value);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8ObjectConstructor.cpp 37 v8::Local<v8::Object> V8ObjectConstructor::newInstance(v8::Isolate* isolate, v8::Handle<v8::Function> function)
40 return v8::Local<v8::Object>();
45 v8::Local<v8::Object> V8ObjectConstructor::newInstance(v8::Isolate* isolate, v8::Handle<v8::Function> function, int argc, v8::Handle<v8::Value> argv[])
48 return v8::Local<v8::Object>();
53 v8::Local<v8::Object> V8ObjectConstructor::newInstanceInDocument(v8::Isolate* isolate, v8::Handle<v8::Function> function, int argc, v8::Handle<v8::Value> argv[], Document* document)
56 return v8::Local<v8::Object>();
V8ScriptRunner.h 45 static v8::Local<v8::Script> compileScript(const ScriptSourceCode&, v8::Isolate*, AccessControlStatus = SharableCrossOrigin);
46 static v8::Local<v8::Script> compileScript(v8::Handle<v8::String>, const String& fileName, const TextPosition&, ScriptResource*, v8::Isolate*, AccessControlStatus = SharableCrossOrigin);
47 static v8::Local<v8::Value> runCompiledScript(v8::Handle<v8::Script>, ExecutionContext*, v8::Isolate*);
48 static v8::Local<v8::Value> compileAndRunInternalScript(v8::Handle<v8::String>, v8::Isolate*, const String& = String(), const TextPosition& = TextPosition());
49 static v8::Local<v8::Value> callInternalFunction(v8::Handle<v8::Function>, v8::Handle<v8::Value> receiver, int argc, v8::Handle<v8::Value> info[], v8::Isolate*);
50 static v8::Local<v8::Value> callFunction(v8::Handle<v8::Function>, ExecutionContext*, v8::Handle<v8::Value> receiver, int argc, v8::Handle<v8::Value> info[], v8::Isolate*);
51 static v8::Local<v8::Value> callAsFunction(v8::Isolate*, v8::Handle<v8::Object>, v8::Handle<v8::Value> receiver, int argc, v8::Handle<v8::Value> info[]);
52 static v8::Local<v8::Object> instantiateObject(v8::Isolate*, v8::Handle<v8::ObjectTemplate>);
53 static v8::Local<v8::Object> instantiateObject(v8::Isolate*, v8::Handle<v8::Function>, int argc = 0, v8::Handle<v8::Value> argv[] = 0);
54 static v8::Local<v8::Object> instantiateObjectInDocument(v8::Isolate*, v8::Handle<v8::Function>, ExecutionContext*, (…)
    [all...]
V8DOMWrapper.cpp 44 static v8::Local<v8::Object> wrapInShadowTemplate(v8::Local<v8::Object> wrapper, Node* impl, v8::Isolate* isolate)
52 return v8::Local<v8::Object>();
59 v8::Local<v8::Function> shadowConstructor = shadowTemplate->GetFunction();
61 return v8::Local<v8::Object>();
63 v8::Local<v8::Object> shadow = V8ScriptRunner::instantiateObject(isolate, shadowConstructor);
65 return v8::Local<v8::Object>();
71 v8::Local<v8::Object> V8DOMWrapper::createWrapper(v8::Handle<v8::Object> creationContext, const WrapperTypeInfo* type, void* impl, v8::Isolate* isolate)
76 v8::Local<v8::Object> wrapper = perContextData ? perContextData->createWrapperFromCache(type) : V8ObjectConstructor::newInstance(isolate, type->domTemplate(isolate)->GetFunction());
V8EventListenerList.h 50 static PassRefPtr<V8EventListener> findWrapper(v8::Local<v8::Value> value, ScriptState* scriptState)
57 return doFindWrapper(v8::Local<v8::Object>::Cast(value), wrapperProperty, scriptState);
61 static PassRefPtr<V8EventListener> findOrCreateWrapper(v8::Local<v8::Value>, bool isAttribute, ScriptState*);
69 static PassRefPtr<EventListener> getEventListener(ScriptState*, v8::Local<v8::Value>, bool isAttribute, ListenerLookupType);
72 static V8EventListener* doFindWrapper(v8::Local<v8::Object> object, v8::Handle<v8::String> wrapperProperty, ScriptState* scriptState)
76 v8::Local<v8::Value> listener = object->GetHiddenValue(wrapperProperty);
89 PassRefPtr<V8EventListener> V8EventListenerList::findOrCreateWrapper(v8::Local<v8::Value> value, bool isAttribute, ScriptState* scriptState)
98 v8::Local<v8::Object> object = v8::Local<v8::Object>::Cast(value);
V8AbstractEventListener.h 78 v8::Local<v8::Object> getListenerObject(ExecutionContext* context)
89 v8::Local<v8::Object> getExistingListenerObject()
129 void invokeEventHandler(Event*, v8::Local<v8::Value> jsEvent);
132 v8::Local<v8::Object> getReceiverObject(Event*);
138 virtual v8::Local<v8::Value> callListenerFunction(v8::Handle<v8::Value> jsevent, Event*) = 0;
140 virtual bool shouldPreventDefault(v8::Local<v8::Value> returnValue);
ArrayValue.h 39 explicit ArrayValue(const v8::Local<v8::Array>& array, v8::Isolate* isolate)
55 // This object can only be used safely when stack allocated because of v8::Local.
60 v8::Local<v8::Array> m_array;
V8LazyEventListener.cpp 74 return v8::Local<v8::Object>::New(scriptState->isolate(), value.As<v8::Object>());
77 v8::Local<v8::Value> V8LazyEventListener::callListenerFunction(v8::Handle<v8::Value> jsEvent, Event* event)
79 v8::Local<v8::Object> listenerObject = getListenerObject(scriptState()->executionContext());
81 return v8::Local<v8::Value>();
83 v8::Local<v8::Function> handlerFunction = listenerObject.As<v8::Function>();
84 v8::Local<v8::Object> receiver = getReceiverObject(event);
86 return v8::Local<v8::Value>();
89 return v8::Local<v8::Value>();
93 return v8::Local<v8::Value>();
96 return v8::Local<v8::Value>()
    [all...]
V8ScriptRunner.cpp 40 v8::Local<v8::Script> V8ScriptRunner::compileScript(const ScriptSourceCode& source, v8::Isolate* isolate, AccessControlStatus corsStatus)
45 v8::Local<v8::Script> V8ScriptRunner::compileScript(v8::Handle<v8::String> code, const String& fileName, const TextPosition& scriptStartPosition, ScriptResource* resource, v8::Isolate* isolate, AccessControlStatus corsStatus)
78 v8::Local<v8::Script> script = v8::ScriptCompiler::Compile(isolate, &source, options);
89 v8::Local<v8::Value> V8ScriptRunner::runCompiledScript(v8::Handle<v8::Script> script, ExecutionContext* context, v8::Isolate* isolate)
92 return v8::Local<v8::Value>();
102 v8::Local<v8::Value> result;
109 return v8::Local<v8::Value>();
115 v8::Local<v8::Value> V8ScriptRunner::compileAndRunInternalScript(v8::Handle<v8::String> source, v8::Isolate* isolate, const String& fileName, const TextPosition& scriptStartPosition)
121 return v8::Local<v8::Value>();
124 v8::Local<v8::Value> result = script->Run()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8HTMLDocumentCustom.cpp 61 v8::Local<v8::Context> context = toV8Context(frame.get(), DOMWrapperWorld::current(info.GetIsolate()));
65 v8::Local<v8::Object> global = context->Global();
67 v8::Local<v8::Value> function = global->Get(v8AtomicString(info.GetIsolate(), "open"));
77 OwnPtr<v8::Local<v8::Value>[]> params = adoptArrayPtr(new v8::Local<v8::Value>[info.Length()]);
81 v8SetReturnValue(info, frame->script().callFunction(v8::Local<v8::Function>::Cast(function), global, info.Length(), params.get()));
V8InspectorFrontendHostCustom.cpp 60 static bool populateContextMenuItems(v8::Local<v8::Array>& itemArray, ContextMenu& menu, v8::Isolate* isolate)
63 v8::Local<v8::Object> item = v8::Local<v8::Object>::Cast(itemArray->Get(i));
64 v8::Local<v8::Value> type = item->Get(v8AtomicString(isolate, "type"));
65 v8::Local<v8::Value> id = item->Get(v8AtomicString(isolate, "id"));
66 v8::Local<v8::Value> label = item->Get(v8AtomicString(isolate, "label"));
67 v8::Local<v8::Value> enabled = item->Get(v8AtomicString(isolate, "enabled"));
68 v8::Local<v8::Value> checked = item->Get(v8AtomicString(isolate, "checked"));
69 v8::Local<v8::Value> subItems = item->Get(v8AtomicString(isolate, "subItems"));
80 v8::Local<v8::Array> subItemsArray = v8::Local<v8::Array>::Cast(subItems)
    [all...]
V8HTMLPlugInElementCustom.cpp 47 static void npObjectNamedGetter(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info)
54 v8::Local<v8::Object> instanceTemplate = wrapper->newLocal(info.GetIsolate());
62 static void npObjectNamedSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info)
69 v8::Local<v8::Object> instanceTemplate = wrapper->newLocal(info.GetIsolate());
76 void V8HTMLAppletElement::namedPropertyGetterCustom(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info)
81 void V8HTMLEmbedElement::namedPropertyGetterCustom(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info)
86 void V8HTMLObjectElement::namedPropertyGetterCustom(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info)
91 void V8HTMLAppletElement::namedPropertySetterCustom(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<v8::Value>& info
    [all...]
V8BlobCustomHelpers.h 69 bool parseBlobPropertyBag(v8::Local<v8::Value> propertyBag, const char* blobClassName, ExceptionState&, v8::Isolate*);
87 bool processBlobParts(v8::Local<v8::Object> blobParts, uint32_t blobPartsLength, bool normalizeLineEndingsToNative, BlobData&, v8::Isolate*);
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
p3-generic-lambda-1y.cpp 46 struct Local {
50 static Local localfi(int) { return Local{}; }
52 auto l4 = [](auto (*fp)(int)) -> int { return fp(3); }; //expected-error{{no viable conversion from 'Local' to '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/dexmaker/src/main/java/com/google/dexmaker/
Code.java 47 * All data manipulation takes place in local variables. Each parameter gets its
48 * own local by default; access these using {@link #getParameter
50 * parameter; it's available as {@link #getThis getThis()}. Allocate a new local
52 * with {@link #loadConstant loadConstant()}. Copy a value from one local to
55 * <p>Every local variable has a fixed type. This is either a primitive type (of
57 * the types they operate on. Not all operations are local on all types;
62 * #op(UnaryOp,Local,Local) op(UnaryOp, Local, Local)}. Transform two value
    [all...]
  /external/chromium_org/gin/test/
v8_test.cc 10 using v8::Local;
26 Local<Context>::New(instance_->isolate(), context_)->Enter();
32 Local<Context>::New(instance_->isolate(), context_)->Exit();
gc.cc 26 v8::Local<v8::Value> GC::GetModule(v8::Isolate* isolate) {
28 v8::Local<v8::ObjectTemplate> templ =
  /external/chromium_org/mojo/apps/js/bindings/
monotonic_clock.cc 28 v8::Local<v8::Value> MonotonicClock::GetModule(v8::Isolate* isolate) {
30 v8::Local<v8::ObjectTemplate> templ =
threading.cc 27 v8::Local<v8::Value> Threading::GetModule(v8::Isolate* isolate) {
29 v8::Local<v8::ObjectTemplate> templ = data->GetObjectTemplate(
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p12.cpp 12 struct Local {
25 struct Local {
  /external/chromium_org/extensions/renderer/
safe_builtins.cc 121 v8::Local<v8::String> MakeKey(const char* name, v8::Isolate* isolate) {
127 v8::Local<v8::Value> value,
128 v8::Local<v8::Context> context) {
134 v8::Local<v8::Object> Load(const char* name, v8::Handle<v8::Context> context) {
135 v8::Local<v8::Value> value =
163 v8::Local<v8::Function> function = info[0].As<v8::Function>();
164 v8::Local<v8::Object> recv;
176 v8::Local<v8::Object> args = info[2]->ToObject();
181 scoped_ptr<v8::Local<v8::Value> []> argv(new v8::Local<v8::Value>[argc])
    [all...]
  /external/chromium_org/v8/include/
v8.h 101 template <class T> class Local;
183 * There are two types of handles: local and persistent handles.
184 * Local handles are light-weight and transient and typically used in
185 * local operations. They are managed by HandleScopes. Persistent
301 template<class F> friend class Local;
327 * that return objects from within v8 return them in local handles. They
328 * are created within HandleScopes, and all local handles allocated within a
330 * is not necessary to explicitly deallocate local handles.
332 template <class T> class Local : public Handle<T> {
334 V8_INLINE Local();
    [all...]

Completed in 598 milliseconds

12 3 4 5 6 7 8 91011>>