HomeSort by relevance Sort by last modified time
    Searched refs:Local (Results 1 - 25 of 516) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/testing/v8/
WebCoreTestSupport.h 34 template <class T> class Local;
44 void injectInternalsObject(v8::Local<v8::Context>);
45 void resetInternalsObject(v8::Local<v8::Context>);
  /external/chromium_org/extensions/renderer/
safe_builtins.h 31 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;
set_icon_natives.h 26 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/
V8NPObject.h 42 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<v8::Object> self, uint32_t index, v8::Local<v8::Value>, const v8::PropertyCallbackInfo<v8::Value>& (…)
    [all...]
V8EventListener.cpp 41 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<v8::Function> handlerFunction = getListenerFunction(scriptState()->executionContext())
    [all...]
V8EventListener.h 47 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;
V8WorkerGlobalScopeEventListener.h 44 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*);
V8ErrorHandler.h 45 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;
V8ErrorHandler.cpp 45 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<v8::Object>::Cast(wrappedEvent), V8HiddenValue::error(isolate), data)
    [all...]
V8ScriptRunner.h 47 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<v8::Object> instantiateObject(v8::Isolate*, v8::Handle<v8::Function>, int argc = 0, v8::Handle<v8: (…)
    [all...]
  /external/chromium_org/gin/modules/
console.h 18 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
  /external/chromium_org/gin/test/
file.h 15 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
gc.h 16 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
gtest.h 18 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
  /external/chromium_org/mojo/apps/js/bindings/gl/
module.h 16 v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
  /external/chromium_org/mojo/apps/js/bindings/
monotonic_clock.h 16 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
threading.h 17 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
  /external/chromium_org/mojo/bindings/js/
core.h 16 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
support.h 16 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
  /external/chromium_org/third_party/skia/experimental/SkV8Example/
BaseContext.h 53 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<String> name
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebScriptBindings.h 40 template <class T> class Local;
51 BLINK_EXPORT static v8::Local<v8::String> toV8String(const WebString&, v8::Isolate*);
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
Local.java 20 public class Local
25 public Local(int index, Type type) {
  /external/chromium_org/mojo/apps/js/
mojo_module.h 19 static v8::Local<v8::Value> GetModule(JSApp* js_app, v8::Isolate* isolate);
  /external/clang/test/CXX/class.access/class.friend/
p6.cpp 18 void local() { function
21 struct Local {
22 friend void f() { } // expected-error{{friend function cannot be defined in a local class}}
  /external/dexmaker/src/main/java/com/google/dexmaker/
Local.java 24 public final class Local<T> {
30 private Local(Code code, TypeId<T> type) {
35 static <T> Local<T> get(Code code, TypeId<T> type) {
36 return new Local<T>(code, type);
40 * Assigns registers to this local.
51 * Returns the number of registered required to hold this local.

Completed in 2769 milliseconds

1 2 3 4 5 6 7 8 91011>>