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

1234567891011>>

/external/chromium_org/extensions/renderer/
H A Dsafe_builtins.h31 v8::Local<v8::Object> GetArray() const;
32 v8::Local<v8::Object> GetFunction() const;
33 v8::Local<v8::Object> GetJSON() const;
36 v8::Local<v8::Object> GetObjekt() const;
37 v8::Local<v8::Object> GetRegExp() const;
38 v8::Local<v8::Object> GetString() const;
39 v8::Local<v8::Object> GetError() const;
H A Dset_icon_natives.h26 bool ConvertImageDataToBitmapValue(const v8::Local<v8::Object> image_data,
27 v8::Local<v8::Value>* image_data_bitmap);
29 v8::Local<v8::Object>& details,
30 v8::Local<v8::Object>* bitmap_set_value);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8NPObject.h42 void npObjectNamedPropertyGetter(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>&);
44 void npObjectGetNamedProperty(v8::Local<v8::Object> self, v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>&);
45 void npObjectGetIndexedProperty(v8::Local<v8::Object> self, uint32_t index, const v8::PropertyCallbackInfo<v8::Value>&);
48 void npObjectNamedPropertySetter(v8::Local<v8::String> name, v8::Local<v8::Value>, const v8::PropertyCallbackInfo<v8::Value>&);
50 void npObjectSetNamedProperty(v8::Local<v8::Object> self, v8::Local<v8::String> name, v8::Local<v8::Value>, const v8::PropertyCallbackInfo<v8::Value>&);
51 void npObjectSetIndexedProperty(v8::Local<v
[all...]
H A DV8EventListener.cpp41 V8EventListener::V8EventListener(v8::Local<v8::Object> listener, bool isAttribute, ScriptState* scriptState)
47 v8::Local<v8::Function> V8EventListener::getListenerFunction(ExecutionContext*)
49 v8::Local<v8::Object> listener = getListenerObject(scriptState()->executionContext());
53 return v8::Local<v8::Function>();
56 return v8::Local<v8::Function>::Cast(listener);
60 v8::Local<v8::Value> property = listener->Get(v8AtomicString(isolate(), "handleEvent"));
64 return v8::Local<v8::Function>::Cast(property);
67 return v8::Local<v8::Function>();
70 v8::Local<v8::Value> V8EventListener::callListenerFunction(v8::Handle<v8::Value> jsEvent, Event* event)
72 v8::Local<v
[all...]
H A DV8ErrorHandler.h45 static PassRefPtr<V8ErrorHandler> create(v8::Local<v8::Object> listener, bool isInline, ScriptState* scriptState)
53 V8ErrorHandler(v8::Local<v8::Object> listener, bool isInline, ScriptState*);
55 virtual v8::Local<v8::Value> callListenerFunction(v8::Handle<v8::Value> jsEvent, Event*) OVERRIDE;
56 virtual bool shouldPreventDefault(v8::Local<v8::Value> returnValue) OVERRIDE;
H A DV8EventListener.h47 static PassRefPtr<V8EventListener> create(v8::Local<v8::Object> listener, bool isAttribute, ScriptState* scriptState)
53 V8EventListener(v8::Local<v8::Object> listener, bool isAttribute, ScriptState*);
55 v8::Local<v8::Function> getListenerFunction(ExecutionContext*);
57 virtual v8::Local<v8::Value> callListenerFunction(v8::Handle<v8::Value> jsEvent, Event*) OVERRIDE;
H A DV8WorkerGlobalScopeEventListener.h44 static PassRefPtr<V8WorkerGlobalScopeEventListener> create(v8::Local<v8::Object> listener, bool isInline, ScriptState* scriptState)
52 V8WorkerGlobalScopeEventListener(v8::Local<v8::Object> listener, bool isInline, ScriptState*);
55 virtual v8::Local<v8::Value> callListenerFunction(v8::Handle<v8::Value> jsEvent, Event*) OVERRIDE;
56 v8::Local<v8::Object> getReceiverObject(Event*);
H A DV8ErrorHandler.cpp45 V8ErrorHandler::V8ErrorHandler(v8::Local<v8::Object> listener, bool isInline, ScriptState* scriptState)
50 v8::Local<v8::Value> V8ErrorHandler::callListenerFunction(v8::Handle<v8::Value> jsEvent, Event* event)
60 v8::Local<v8::Object> listener = getListenerObject(scriptState()->executionContext());
61 v8::Local<v8::Value> returnValue;
63 v8::Local<v8::Function> callFunction = v8::Local<v8::Function>::Cast(listener);
64 v8::Local<v8::Object> thisValue = scriptState()->context()->Global();
66 v8::Local<v8::Value> error = V8HiddenValue::getHiddenValue(isolate(), jsEvent->ToObject(), V8HiddenValue::error(isolate()));
84 v8::Local<v8::Value> wrappedEvent = toV8(event, creationContext, isolate);
87 V8HiddenValue::setHiddenValue(isolate, v8::Local<v
[all...]
H A DV8ScriptRunner.h47 static v8::Local<v8::Script> compileScript(const ScriptSourceCode&, v8::Isolate*, AccessControlStatus = SharableCrossOrigin, V8CacheOptions = V8CacheOptionsOff);
48 static v8::Local<v8::Script> compileScript(v8::Handle<v8::String>, const String& fileName, const TextPosition&, ScriptResource*, ScriptStreamer*, v8::Isolate*, AccessControlStatus = SharableCrossOrigin, V8CacheOptions = V8CacheOptionsOff);
49 static v8::Local<v8::Value> runCompiledScript(v8::Handle<v8::Script>, ExecutionContext*, v8::Isolate*);
50 static v8::Local<v8::Value> compileAndRunInternalScript(v8::Handle<v8::String>, v8::Isolate*, const String& = String(), const TextPosition& = TextPosition());
51 static v8::Local<v8::Value> runCompiledInternalScript(v8::Handle<v8::Script>, v8::Isolate*);
52 static v8::Local<v8::Value> callInternalFunction(v8::Handle<v8::Function>, v8::Handle<v8::Value> receiver, int argc, v8::Handle<v8::Value> info[], v8::Isolate*);
53 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*);
54 static v8::Local<v8::Value> callAsFunction(v8::Isolate*, v8::Handle<v8::Object>, v8::Handle<v8::Value> receiver, int argc, v8::Handle<v8::Value> info[]);
55 static v8::Local<v8::Object> instantiateObject(v8::Isolate*, v8::Handle<v8::ObjectTemplate>);
56 static v8::Local<v
[all...]
H A DV8WorkerGlobalScopeEventListener.cpp48 V8WorkerGlobalScopeEventListener::V8WorkerGlobalScopeEventListener(v8::Local<v8::Object> listener, bool isInline, ScriptState* scriptState)
70 invokeEventHandler(event, v8::Local<v8::Value>::New(isolate(), jsEvent));
73 v8::Local<v8::Value> V8WorkerGlobalScopeEventListener::callListenerFunction(v8::Handle<v8::Value> jsEvent, Event* event)
75 v8::Local<v8::Function> handlerFunction = getListenerFunction(scriptState()->executionContext());
76 v8::Local<v8::Object> receiver = getReceiverObject(event);
78 return v8::Local<v8::Value>();
93 v8::Local<v8::Value> result = V8ScriptRunner::callFunction(handlerFunction, scriptState()->executionContext(), receiver, WTF_ARRAY_LENGTH(parameters), parameters, isolate());
101 v8::Local<v8::Object> V8WorkerGlobalScopeEventListener::getReceiverObject(Event* event)
103 v8::Local<v8::Object> listener = getListenerObject(scriptState()->executionContext());
111 return v8::Local<v
[all...]
/external/chromium_org/third_party/WebKit/Source/core/testing/v8/
H A DWebCoreTestSupport.h34 template <class T> class Local;
44 void injectInternalsObject(v8::Local<v8::Context>);
45 void resetInternalsObject(v8::Local<v8::Context>);
/external/chromium_org/third_party/skia/experimental/SkV8Example/
H A DBaseContext.h53 static void GetStyle(Local<String> name,
56 static void SetStyle(Local<String> name, Local<Value> value,
60 static void GetFillStyle(Local<String> name,
62 static void SetFillStyle(Local<String> name, Local<Value> value,
64 static void GetStrokeStyle(Local<String> name,
66 static void SetStrokeStyle(Local<String> name, Local<Value> value,
68 static void GetWidth(Local<Strin
[all...]
/external/skia/experimental/SkV8Example/
H A DBaseContext.h53 static void GetStyle(Local<String> name,
56 static void SetStyle(Local<String> name, Local<Value> value,
60 static void GetFillStyle(Local<String> name,
62 static void SetFillStyle(Local<String> name, Local<Value> value,
64 static void GetStrokeStyle(Local<String> name,
66 static void SetStrokeStyle(Local<String> name, Local<Value> value,
68 static void GetWidth(Local<Strin
[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/chromium_org/gin/modules/
H A Dconsole.h18 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
/external/chromium_org/gin/test/
H A Dfile.h15 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
H A Dgc.h16 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
H A Dgtest.h18 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
/external/chromium_org/mojo/apps/js/bindings/gl/
H A Dmodule.h16 v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
/external/chromium_org/mojo/apps/js/bindings/
H A Dmonotonic_clock.h16 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
H A Dthreading.h17 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
/external/chromium_org/mojo/bindings/js/
H A Dcore.h16 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
H A Dsupport.h16 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
/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);

Completed in 457 milliseconds

1234567891011>>