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

12 3 4 5 6 7 8 91011

  /external/webkit/Source/WebCore/bindings/v8/
V8AbstractEventListener.h 80 v8::Local<v8::Object> getListenerObject(ScriptExecutionContext* context)
83 return v8::Local<v8::Object>::New(m_listener);
86 v8::Local<v8::Object> getExistingListenerObject()
88 return v8::Local<v8::Object>::New(m_listener);
111 v8::Local<v8::Object> getReceiverObject(Event*);
117 virtual v8::Local<v8::Value> callListenerFunction(ScriptExecutionContext*, v8::Handle<v8::Value> jsevent, Event*) = 0;
V8WorkerContextEventListener.cpp 52 V8WorkerContextEventListener::V8WorkerContextEventListener(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext)
62 // The callback function on XMLHttpRequest can clear the event listener and destroys 'this' object. Keep a local reference to it.
85 v8::Local<v8::Value> V8WorkerContextEventListener::callListenerFunction(ScriptExecutionContext* context, v8::Handle<v8::Value> jsEvent, Event* event)
87 v8::Local<v8::Function> handlerFunction = getListenerFunction(context);
88 v8::Local<v8::Object> receiver = getReceiverObject(context, event);
90 return v8::Local<v8::Value>();
93 v8::Local<v8::Value> result = handlerFunction->Call(receiver, 1, parameters);
101 v8::Local<v8::Object> V8WorkerContextEventListener::getReceiverObject(ScriptExecutionContext* context, Event* event)
103 v8::Local<v8::Object> listener = getListenerObject(context);
111 return v8::Local<v8::Object>()
    [all...]
V8LazyEventListener.cpp 55 v8::Local<v8::Value> V8LazyEventListener::callListenerFunction(ScriptExecutionContext* context, v8::Handle<v8::Value> jsEvent, Event* event)
57 v8::Local<v8::Object> listenerObject = getListenerObject(context);
59 return v8::Local<v8::Value>();
61 v8::Local<v8::Function> handlerFunction = v8::Local<v8::Function>::Cast(listenerObject);
62 v8::Local<v8::Object> receiver = getReceiverObject(event);
64 return v8::Local<v8::Value>();
71 return v8::Local<v8::Value>();
94 v8::Local<v8::Context> v8Context = worldContext().adjustedContext(proxy);
122 v8::Local<v8::Value> value = proxy->runScript(script, false)
    [all...]
OptionsObject.h 40 OptionsObject(const v8::Local<v8::Value>& options);
53 bool getKey(const String& key, v8::Local<v8::Value>&) const;
55 // This object can only be used safely when stack allocated because of v8::Local.
60 v8::Local<v8::Value> m_options;
ScriptState.h 50 void setException(v8::Local<v8::Value> exception)
54 v8::Local<v8::Value> exception() { return m_exception; }
56 v8::Local<v8::Context> context() const
58 return v8::Local<v8::Context>::New(m_context);
61 static ScriptState* forContext(v8::Local<v8::Context>);
74 v8::Local<v8::Value> m_exception;
V8EventListenerList.h 46 static PassRefPtr<V8EventListener> findWrapper(v8::Local<v8::Value> value, bool isAttribute)
53 return doFindWrapper(v8::Local<v8::Object>::Cast(value), wrapperProperty);
57 static PassRefPtr<V8EventListener> findOrCreateWrapper(v8::Local<v8::Value>, bool isAttribute);
66 static V8EventListener* doFindWrapper(v8::Local<v8::Object> object, v8::Handle<v8::String> wrapperProperty)
70 v8::Local<v8::Value> listener = object->GetHiddenValue(wrapperProperty);
83 PassRefPtr<V8EventListener> V8EventListenerList::findOrCreateWrapper(v8::Local<v8::Value> value, bool isAttribute)
89 v8::Local<v8::Object> object = v8::Local<v8::Object>::Cast(value);
WorldContextHandle.h 48 v8::Local<v8::Context> adjustedContext(V8Proxy*) const;
V8AbstractEventListener.cpp 67 v8::Local<v8::Object> listener = v8::Local<v8::Object>::New(m_listener);
89 // The callback function on XMLHttpRequest can clear the event listener and destroys 'this' object. Keep a local reference to it.
95 v8::Local<v8::Context> v8Context = toV8Context(context, worldContext());
137 v8::Local<v8::Context> v8Context = toV8Context(context, worldContext());
143 v8::Local<v8::Value> returnValue;
155 v8::Local<v8::Value> savedEvent = v8Context->Global()->GetHiddenValue(eventSymbol);
200 v8::Local<v8::Object> V8AbstractEventListener::getReceiverObject(Event* event)
203 return v8::Local<v8::Object>::New(m_listener);
208 return v8::Local<v8::Object>()
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8HTMLPlugInElementCustom.cpp 48 static v8::Handle<v8::Value> npObjectNamedGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
55 v8::Local<v8::Object> instance = v8::Local<v8::Object>::New(scriptInstance->instance());
63 static v8::Handle<v8::Value> npObjectNamedSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
70 v8::Local<v8::Object> instance = v8::Local<v8::Object>::New(scriptInstance->instance());
77 v8::Handle<v8::Value> V8HTMLAppletElement::namedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
83 v8::Handle<v8::Value> V8HTMLEmbedElement::namedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
89 v8::Handle<v8::Value> V8HTMLObjectElement::namedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info
    [all...]
V8InjectedScriptManager.cpp 55 static v8::Local<v8::Object> createInjectedScriptHostV8Wrapper(InjectedScriptHost* host)
57 v8::Local<v8::Function> function = V8InjectedScriptHost::GetTemplate()->GetFunction();
60 return v8::Local<v8::Object>();
62 v8::Local<v8::Object> instance = SafeAllocation::newInstance(function);
65 return v8::Local<v8::Object>();
80 v8::Local<v8::Context> inspectedContext = inspectedScriptState->context();
87 v8::Local<v8::Object> scriptHostWrapper = createInjectedScriptHostV8Wrapper(m_injectedScriptHost.get());
91 v8::Local<v8::Object> windowGlobal = inspectedContext->Global();
98 v8::Local<v8::Script> script = v8::Script::Compile(v8String(scriptSource));
99 v8::Local<v8::Value> v = script->Run()
    [all...]
V8MessagePortCustom.cpp 63 bool getMessagePortArray(v8::Local<v8::Value> value, MessagePortArray& portArray)
75 v8::Local<v8::Object> ports = v8::Local<v8::Object>::Cast(value);
78 v8::Local<v8::Array> array = v8::Local<v8::Array>::Cast(value);
82 v8::Local<v8::Value> sequenceLength = ports->Get(v8::String::New("length"));
92 v8::Local<v8::Value> port = ports->Get(v8::Integer::New(i));
V8DocumentLocationCustom.cpp 35 v8::Handle<v8::Value> V8Document::locationAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
45 void V8Document::locationAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
V8CanvasRenderingContext2DCustom.cpp 77 v8::Handle<v8::Value> V8CanvasRenderingContext2D::strokeStyleAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
83 void V8CanvasRenderingContext2D::strokeStyleAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
89 v8::Handle<v8::Value> V8CanvasRenderingContext2D::fillStyleAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
95 void V8CanvasRenderingContext2D::fillStyleAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
V8ScriptProfileNodeCustom.cpp 42 v8::Handle<v8::Value> V8ScriptProfileNode::childrenAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
55 v8::Handle<v8::Value> V8ScriptProfileNode::callUIDAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
66 v8::Local<v8::Function> function = V8ScriptProfileNode::GetTemplate()->GetFunction();
69 return v8::Local<v8::Object>();
71 v8::Local<v8::Object> instance = SafeAllocation::newInstance(function);
74 return v8::Local<v8::Object>();
V8CustomApplicationInstalledCallback.h 41 static PassRefPtr<V8CustomApplicationInstalledCallback> create(v8::Local<v8::Value> value, Frame* frame)
51 V8CustomApplicationInstalledCallback(v8::Local<v8::Object>, Frame*);
V8CustomPositionCallback.h 43 static PassRefPtr<V8CustomPositionCallback> create(v8::Local<v8::Value> value, ScriptExecutionContext* context)
53 V8CustomPositionCallback(v8::Local<v8::Object>, ScriptExecutionContext*);
V8CustomPositionErrorCallback.h 43 static PassRefPtr<V8CustomPositionErrorCallback> create(v8::Local<v8::Value> value, ScriptExecutionContext* context)
53 V8CustomPositionErrorCallback(v8::Local<v8::Object>, ScriptExecutionContext*);
V8HTMLDocumentCustom.cpp 52 v8::Local<v8::Object> V8HTMLDocument::WrapInShadowObject(v8::Local<v8::Object> wrapper, Node* impl)
58 return v8::Local<v8::Object>();
64 v8::Local<v8::Function> shadowConstructor = shadowTemplate->GetFunction();
66 return v8::Local<v8::Object>();
68 v8::Local<v8::Object> shadow = shadowConstructor->NewInstance();
70 return v8::Local<v8::Object>();
137 v8::Local<v8::Context> context = V8Proxy::context(frame);
141 v8::Local<v8::Object> global = context->Global();
143 v8::Local<v8::Value> function = global->Get(v8::String::New("open"))
    [all...]
V8DeviceMotionEventCustom.cpp 44 v8::Local<v8::Object> object = v8::Object::New();
53 v8::Local<v8::Object> object = v8::Object::New();
60 RefPtr<DeviceMotionData::Acceleration> readAccelerationArgument(v8::Local<v8::Value> value)
66 v8::Local<v8::Object> object = value->ToObject();
68 v8::Local<v8::Value> xValue = object->Get(v8::String::New("x"));
74 v8::Local<v8::Value> yValue = object->Get(v8::String::New("y"));
80 v8::Local<v8::Value> zValue = object->Get(v8::String::New("z"));
92 RefPtr<DeviceMotionData::RotationRate> readRotationRateArgument(v8::Local<v8::Value> value)
98 v8::Local<v8::Object> object = value->ToObject();
100 v8::Local<v8::Value> alphaValue = object->Get(v8::String::New("alpha"))
    [all...]
V8PerformanceCustom.cpp 42 v8::Handle<v8::Value> V8Performance::memoryAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
V8PopStateEventCustom.cpp 40 v8::Handle<v8::Value> V8PopStateEvent::stateAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
  /external/v8/include/
v8.h 102 template <class T> class Local;
156 * There are two types of handles: local and persistent handles.
157 * Local handles are light-weight and transient and typically used in
158 * local operations. They are managed by HandleScopes. Persistent
259 * that return objects from within v8 return them in local handles. They
260 * are created within HandleScopes, and all local handles allocated within a
262 * is not necessary to explicitly deallocate local handles.
264 template <class T> class Local : public Handle<T> {
266 inline Local();
267 template <class S> inline Local(Local<S> that
    [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/webkit/Source/WebKit/chromium/src/
BoundObject.cpp 44 v8::Local<v8::FunctionTemplate> localTemplate = v8::FunctionTemplate::New(WebCore::V8Proxy::checkNewLegal);
57 v8::Local<v8::Signature> signature = v8::Signature::New(m_hostTemplate);
58 v8::Local<v8::ObjectTemplate> proto = m_hostTemplate->PrototypeTemplate();
59 v8::Local<v8::External> v8This = v8::External::New(m_v8This);
72 v8::Local<v8::Function> constructor = m_hostTemplate->GetFunction();
73 v8::Local<v8::Object> boundObject = WebCore::SafeAllocation::newInstance(constructor);
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p12.cpp 12 struct Local {
25 struct Local {

Completed in 623 milliseconds

12 3 4 5 6 7 8 91011