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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8ScriptRunner.h 45 static v8::Local<v8::Script> compileScript(v8::Handle<v8::String>, const String&, const TextPosition&, v8::ScriptData*, v8::Isolate*, AccessControlStatus = SharableCrossOrigin);
46 static v8::Local<v8::Value> runCompiledScript(v8::Handle<v8::Script>, ScriptExecutionContext*);
47 static v8::Local<v8::Value> compileAndRunInternalScript(v8::Handle<v8::String>, v8::Isolate*, const String& = String(), const TextPosition& = TextPosition(), v8::ScriptData* = 0);
48 static v8::Local<v8::Value> callInternalFunction(v8::Handle<v8::Function>, v8::Handle<v8::Object>, int argc, v8::Handle<v8::Value> args[], v8::Isolate*);
49 static v8::Local<v8::Value> callFunction(v8::Handle<v8::Function>, ScriptExecutionContext*, v8::Handle<v8::Object> receiver, int argc, v8::Handle<v8::Value> args[]);
50 static v8::Local<v8::Value> callAsFunction(v8::Handle<v8::Object>, v8::Handle<v8::Object> receiver, int argc, v8::Handle<v8::Value> args[]);
51 static v8::Local<v8::Value> callAsConstructor(v8::Handle<v8::Object>, int argc, v8::Handle<v8::Value> args[]);
52 static v8::Local<v8::Object> instantiateObject(v8::Handle<v8::ObjectTemplate>);
53 static v8::Local<v8::Object> instantiateObject(v8::Handle<v8::Function>, int argc = 0, v8::Handle<v8::Value> argv[] = 0);
54 static v8::Local<v8::Object> instantiateObjectInDocument(v8::Handle<v8::Function>, ScriptExecutionContext*, int arg (…)
    [all...]
Dictionary.cpp 66 Dictionary::Dictionary(const v8::Local<v8::Value>& options, v8::Isolate* isolate)
96 bool Dictionary::getKey(const String& key, v8::Local<v8::Value>& value) const
100 v8::Local<v8::Object> options = m_options->ToObject();
114 bool Dictionary::get(const String& key, v8::Local<v8::Value>& value) const
121 v8::Local<v8::Value> v8Value;
125 v8::Local<v8::Boolean> v8Bool = v8Value->ToBoolean();
134 v8::Local<v8::Value> v8Value;
138 v8::Local<v8::Int32> v8Int32 = v8Value->ToInt32();
147 v8::Local<v8::Value> v8Value;
151 v8::Local<v8::Number> v8Number = v8Value->ToNumber()
    [all...]
V8EventListenerList.h 52 static PassRefPtr<V8EventListener> findWrapper(v8::Local<v8::Value> value, bool isAttribute)
59 return doFindWrapper(v8::Local<v8::Object>::Cast(value), wrapperProperty);
63 static PassRefPtr<V8EventListener> findOrCreateWrapper(v8::Local<v8::Value>, bool isAttribute);
71 static PassRefPtr<EventListener> getEventListener(v8::Local<v8::Value>, bool isAttribute, ListenerLookupType);
74 static V8EventListener* doFindWrapper(v8::Local<v8::Object> object, v8::Handle<v8::String> wrapperProperty)
78 v8::Local<v8::Value> listener = object->GetHiddenValue(wrapperProperty);
91 PassRefPtr<V8EventListener> V8EventListenerList::findOrCreateWrapper(v8::Local<v8::Value> value, bool isAttribute)
97 v8::Local<v8::Object> object = v8::Local<v8::Object>::Cast(value);
V8AbstractEventListener.h 79 v8::Local<v8::Object> getListenerObject(ScriptExecutionContext* context)
90 v8::Local<v8::Object> getExistingListenerObject()
121 void invokeEventHandler(ScriptExecutionContext*, Event*, v8::Local<v8::Value> jsEvent);
124 v8::Local<v8::Object> getReceiverObject(ScriptExecutionContext*, Event*);
130 virtual v8::Local<v8::Value> callListenerFunction(ScriptExecutionContext*, v8::Handle<v8::Value> jsevent, Event*) = 0;
132 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 73 return v8::Local<v8::Object>::New(isolate, value.As<v8::Object>());
76 v8::Local<v8::Value> V8LazyEventListener::callListenerFunction(ScriptExecutionContext* context, v8::Handle<v8::Value> jsEvent, Event* event)
78 v8::Local<v8::Object> listenerObject = getListenerObject(context);
80 return v8::Local<v8::Value>();
82 v8::Local<v8::Function> handlerFunction = listenerObject.As<v8::Function>();
83 v8::Local<v8::Object> receiver = getReceiverObject(context, event);
85 return v8::Local<v8::Value>();
89 return v8::Local<v8::Value>();
92 return v8::Local<v8::Value>();
96 return v8::Local<v8::Value>()
    [all...]
V8PerContextData.cpp 52 v8::Local<v8::Context>::New(m_isolate, m_context)->SetAlignedPointerInEmbedderData(v8ContextPerContextDataIndex, 0);
67 v8::Handle<v8::Object> object = v8::Handle<v8::Object>::Cast(v8::Local<v8::Context>::New(m_isolate, m_context)->Global()->Get(symbol)); \
78 v8::Handle<v8::Context> context = v8::Local<v8::Context>::New(m_isolate, m_context);
92 v8::Local<v8::Object> V8PerContextData::createWrapperFromCacheSlowCase(WrapperTypeInfo* type)
96 v8::Context::Scope scope(v8::Local<v8::Context>::New(m_isolate, m_context));
97 v8::Local<v8::Function> function = constructorForType(type);
98 v8::Local<v8::Object> instance = V8ObjectConstructor::newInstance(function);
103 return v8::Local<v8::Object>();
106 v8::Local<v8::Function> V8PerContextData::constructorForTypeSlowCase(WrapperTypeInfo* type)
110 v8::Context::Scope scope(v8::Local<v8::Context>::New(m_isolate, m_context))
    [all...]
V8Callback.cpp 49 v8::Local<v8::Function> callbackFunction;
51 callbackFunction = v8::Local<v8::Function>::New(v8::Handle<v8::Function>::Cast(callback));
53 v8::Local<v8::Value> handleEventFunction = callback->Get(v8::String::NewSymbol("handleEvent"));
55 callbackFunction = v8::Local<v8::Function>::Cast(handleEventFunction);
V8ObjectConstructor.h 70 static v8::Local<v8::Object> newInstance(v8::Handle<v8::Function>);
71 static v8::Local<v8::Object> newInstance(v8::Handle<v8::ObjectTemplate>);
72 static v8::Local<v8::Object> newInstance(v8::Handle<v8::Function>, int, v8::Handle<v8::Value> argv[]);
73 static v8::Local<v8::Object> newInstanceInDocument(v8::Handle<v8::Function>, int, v8::Handle<v8::Value> argv[], Document*);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8InjectedScriptManager.cpp 48 static v8::Local<v8::Object> createInjectedScriptHostV8Wrapper(InjectedScriptHost* host, v8::Isolate* isolate)
50 v8::Local<v8::Function> function = V8InjectedScriptHost::GetTemplate(isolate, MainWorld)->GetFunction();
53 return v8::Local<v8::Object>();
55 v8::Local<v8::Object> instance = V8ObjectConstructor::newInstance(function);
58 return v8::Local<v8::Object>();
73 v8::Local<v8::Context> inspectedContext = inspectedScriptState->context();
81 v8::Local<v8::Object> scriptHostWrapper = createInjectedScriptHostV8Wrapper(m_injectedScriptHost.get(), inspectedContext->GetIsolate());
90 v8::Local<v8::Value> value = V8ScriptRunner::compileAndRunInternalScript(v8String(scriptSource, isolate), isolate);
94 v8::Local<v8::Object> windowGlobal = inspectedContext->Global();
96 v8::Local<v8::Value> injectedScriptValue = V8ScriptRunner::callInternalFunction(v8::Local<v8::Function>::Cas (…)
    [all...]
V8PromiseResolverCustom.cpp 42 v8::Local<v8::Object> resolver = args.This();
45 v8::Local<v8::Object> internal = V8PromiseCustom::getInternal(resolver);
51 v8::Local<v8::Value> result = v8::Undefined();
59 v8::Local<v8::Object> resolver = args.This();
62 v8::Local<v8::Object> internal = V8PromiseCustom::getInternal(resolver);
68 v8::Local<v8::Value> result = v8::Undefined();
76 v8::Local<v8::Object> resolver = args.This();
79 v8::Local<v8::Object> internal = V8PromiseCustom::getInternal(resolver);
85 v8::Local<v8::Value> result = v8::Undefined();
V8HTMLPlugInElementCustom.cpp 47 static void npObjectNamedGetter(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info)
54 v8::Local<v8::Object> instance = scriptInstance->newLocal(v8::Isolate::GetCurrent());
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> instance = scriptInstance->newLocal(v8::Isolate::GetCurrent());
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...]
V8DocumentLocationCustom.cpp 35 void V8Document::locationAttrGetterCustom(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info)
47 void V8Document::locationAttrSetterCustom(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<void>& info)
V8AudioBufferSourceNodeCustom.cpp 38 void V8AudioBufferSourceNode::bufferAttrSetterCustom(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<void>& info)
V8HTMLMediaElementCustom.cpp 34 void V8HTMLMediaElement::controllerAttrSetterCustom(v8::Local<v8::String>, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<void>& info)
V8PromiseCustom.cpp 55 v8::Local<v8::ObjectTemplate> cachedObjectTemplate(void* privateTemplateUniqueKey, int internalFieldCount, v8::Isolate* isolate)
64 v8::Local<v8::ObjectTemplate> instanceTemplate = functionDescriptor->InstanceTemplate();
70 v8::Local<v8::ObjectTemplate> wrapperCallbackEnvironmentObjectTemplate(v8::Isolate* isolate)
77 v8::Local<v8::ObjectTemplate> promiseEveryEnvironmentObjectTemplate(v8::Isolate* isolate)
84 v8::Local<v8::ObjectTemplate> primitiveWrapperObjectTemplate(v8::Isolate* isolate)
91 v8::Local<v8::ObjectTemplate> internalObjectTemplate(v8::Isolate* isolate)
154 v8::Local<v8::Object> environment = args.Data().As<v8::Object>();
155 v8::Local<v8::Value> result = v8::Undefined(isolate);
159 v8::Local<v8::Object> promise = environment->GetInternalField(V8PromiseCustom::WrapperCallbackEnvironmentPromiseIndex).As<v8::Object>();
160 v8::Local<v8::Object> resolver = environment->GetInternalField(V8PromiseCustom::WrapperCallbackEnvironmentPr (…)
    [all...]
V8ErrorEventCustom.cpp 48 void V8ErrorEvent::errorAttrGetterCustom(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info)
V8PannerNodeCustom.cpp 36 void V8PannerNode::panningModelAttrSetterCustom(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<void>& info)
60 void V8PannerNode::distanceModelAttrSetterCustom(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<void>& info)
V8DeviceMotionEventCustom.cpp 38 RefPtr<DeviceMotionData::Acceleration> readAccelerationArgument(v8::Local<v8::Value> value)
44 v8::Local<v8::Object> object = value->ToObject();
46 v8::Local<v8::Value> xValue = object->Get(v8::String::NewSymbol("x"));
52 v8::Local<v8::Value> yValue = object->Get(v8::String::NewSymbol("y"));
58 v8::Local<v8::Value> zValue = object->Get(v8::String::NewSymbol("z"));
70 RefPtr<DeviceMotionData::RotationRate> readRotationRateArgument(v8::Local<v8::Value> value)
76 v8::Local<v8::Object> object = value->ToObject();
78 v8::Local<v8::Value> alphaValue = object->Get(v8::String::NewSymbol("alpha"));
84 v8::Local<v8::Value> betaValue = object->Get(v8::String::NewSymbol("beta"));
90 v8::Local<v8::Value> gammaValue = object->Get(v8::String::NewSymbol("gamma"))
    [all...]
V8GeolocationCustom.cpp 42 static PassRefPtr<PositionOptions> createPositionOptions(v8::Local<v8::Value> value, bool& succeeded)
56 v8::Local<v8::Object> object = value->ToObject();
62 v8::Local<v8::Value> enableHighAccuracyValue = object->Get(v8::String::NewSymbol("enableHighAccuracy"));
68 v8::Local<v8::Boolean> enableHighAccuracyBoolean = enableHighAccuracyValue->ToBoolean();
76 v8::Local<v8::Value> timeoutValue = object->Get(v8::String::NewSymbol("timeout"));
82 v8::Local<v8::Number> timeoutNumber = timeoutValue->ToNumber();
90 v8::Local<v8::Int32> timeoutInt32 = timeoutValue->ToInt32();
100 v8::Local<v8::Value> maximumAgeValue = object->Get(v8::String::NewSymbol("maximumAge"));
106 v8::Local<v8::Number> maximumAgeNumber = maximumAgeValue->ToNumber();
116 v8::Local<v8::Int32> maximumAgeInt32 = maximumAgeValue->ToInt32()
    [all...]
  /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/v8/test/cctest/
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/chrome/renderer/extensions/
unsafe_persistent.h 40 v8::Local<T> newLocal(v8::Isolate* isolate) {
41 return v8::Local<T>::New(isolate, v8::Local<T>(value_));
  /external/chromium_org/third_party/WebKit/Source/core/platform/text/
RegularExpression.cpp 46 v8::Local<v8::Context> context = V8PerIsolateData::from(isolate)->ensureRegexContext();
56 v8::Local<v8::RegExp> regex = v8::RegExp::New(v8String(pattern, context->GetIsolate()), static_cast<v8::RegExp::Flags>(flags));
77 v8::Local<v8::Context> context = V8PerIsolateData::current()->ensureRegexContext();
83 v8::Local<v8::RegExp> regex = m_regex.newLocal(isolate);
84 v8::Local<v8::Function> exec = regex->Get(v8::String::NewSymbol("exec")).As<v8::Function>();
87 v8::Local<v8::Value> returnValue = exec->Call(regex, 1, argv);
99 v8::Local<v8::Array> result = returnValue.As<v8::Array>();
103 v8::Local<v8::String> match = result->Get(0).As<v8::String>();
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p12.cpp 12 struct Local {
25 struct Local {

Completed in 2377 milliseconds

12 3 4 5 6 7 8 91011>>