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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/compile/libbcc/tests/debuginfo/host-tests/
nested-struct.cpp 15 struct Local {
22 i = Local::my_number();
  /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;
  /external/chromium_org/third_party/WebKit/Source/bindings/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)
73 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 46 V8ErrorHandler::V8ErrorHandler(v8::Local<v8::Object> listener, bool isInline, ScriptState* scriptState)
51 v8::Local<v8::Value> V8ErrorHandler::callListenerFunction(v8::Handle<v8::Value> jsEvent, Event* event)
61 v8::Local<v8::Object> listener = getListenerObject(scriptState()->executionContext());
62 v8::Local<v8::Value> returnValue;
64 v8::Local<v8::Function> callFunction = v8::Local<v8::Function>::Cast(listener);
65 v8::Local<v8::Object> thisValue = scriptState()->context()->Global();
67 v8::Local<v8::Value> error = V8HiddenValue::getHiddenValue(isolate(), jsEvent->ToObject(), V8HiddenValue::error(isolate()));
85 v8::Local<v8::Value> wrappedEvent = toV8(event, creationContext, isolate);
88 V8HiddenValue::setHiddenValue(isolate, v8::Local<v8::Object>::Cast(wrappedEvent), V8HiddenValue::error(isolate), data)
    [all...]
V8WorkerGlobalScopeEventListener.cpp 48 V8WorkerGlobalScopeEventListener::V8WorkerGlobalScopeEventListener(v8::Local<v8::Object> listener, bool isInline, ScriptState* scriptState)
55 // The callback function on XMLHttpRequest can clear the event listener and destroys 'this' object. Keep a local reference to it.
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())
    [all...]
  /external/chromium_org/gin/modules/
console.h 18 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
  /external/chromium_org/gin/test/
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/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/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.
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8InjectedScriptManager.cpp 54 static v8::Local<v8::Object> createInjectedScriptHostV8Wrapper(InjectedScriptHost* host, v8::Isolate* isolate)
56 v8::Local<v8::Function> function = V8InjectedScriptHost::domTemplate(isolate)->GetFunction();
59 return v8::Local<v8::Object>();
61 v8::Local<v8::Object> instanceTemplate = V8ObjectConstructor::newInstance(isolate, function);
64 return v8::Local<v8::Object>();
85 v8::Local<v8::Object> scriptHostWrapper = createInjectedScriptHostV8Wrapper(m_injectedScriptHost.get(), inspectedScriptState->isolate());
94 v8::Local<v8::Value> value = V8ScriptRunner::compileAndRunInternalScript(v8String(isolate, scriptSource), isolate);
98 v8::Local<v8::Object> windowGlobal = inspectedScriptState->context()->Global();
100 v8::Local<v8::Value> injectedScriptValue = V8ScriptRunner::callInternalFunction(v8::Local<v8::Function>::Cast(value), windowGlobal, WTF_ARRAY_LENGTH(info), info, inspectedScriptState->isol (…)
    [all...]

Completed in 226 milliseconds

1 2 3 4 5 6 7 8 91011>>