HomeSort by relevance Sort by last modified time
    Searched refs:Local (Results 1 - 25 of 469) 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 31 template <class T> class Local;
41 void injectInternalsObject(v8::Local<v8::Context>);
42 void resetInternalsObject(v8::Local<v8::Context>);
  /external/chromium_org/chrome/renderer/extensions/
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;
safe_builtins.cc 119 v8::Local<v8::String> MakeKey(const char* name) {
125 v8::Local<v8::Value> value,
126 v8::Local<v8::Context> context) {
131 v8::Local<v8::Object> Load(const char* name, v8::Handle<v8::Context> context) {
132 v8::Local<v8::Value> value =
135 return v8::Local<v8::Object>::New(value->ToObject());
160 v8::Local<v8::Function> function = info[0].As<v8::Function>();
161 v8::Local<v8::Object> recv;
171 v8::Local<v8::Object> args = info[2]->ToObject();
176 scoped_ptr<v8::Local<v8::Value>[]> argv(new v8::Local<v8::Value>[argc])
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebScriptBindings.h 39 template <class T> class Local;
50 WEBKIT_EXPORT static v8::Local<v8::String> toV8String(const WebString&, v8::Isolate*);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8EventListener.cpp 40 V8EventListener::V8EventListener(v8::Local<v8::Object> listener, bool isAttribute)
46 v8::Local<v8::Function> V8EventListener::getListenerFunction(ScriptExecutionContext* context)
48 v8::Local<v8::Object> listener = getListenerObject(context);
52 return v8::Local<v8::Function>();
55 return v8::Local<v8::Function>::Cast(listener);
59 v8::Local<v8::Value> property = listener->Get(v8::String::NewSymbol("handleEvent"));
63 return v8::Local<v8::Function>::Cast(property);
66 return v8::Local<v8::Function>();
69 v8::Local<v8::Value> V8EventListener::callListenerFunction(ScriptExecutionContext* context, v8::Handle<v8::Value> jsEvent, Event* event)
72 v8::Local<v8::Function> handlerFunction = getListenerFunction(context)
    [all...]
V8NPObject.h 41 void npObjectNamedPropertyGetter(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>&);
43 void npObjectGetNamedProperty(v8::Local<v8::Object> self, v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>&);
44 void npObjectGetIndexedProperty(v8::Local<v8::Object> self, uint32_t index, const v8::PropertyCallbackInfo<v8::Value>&);
47 void npObjectNamedPropertySetter(v8::Local<v8::String> name, v8::Local<v8::Value>, const v8::PropertyCallbackInfo<v8::Value>&);
49 void npObjectSetNamedProperty(v8::Local<v8::Object> self, v8::Local<v8::String> name, v8::Local<v8::Value>, const v8::PropertyCallbackInfo<v8::Value>&);
50 void npObjectSetIndexedProperty(v8::Local<v8::Object> self, uint32_t index, v8::Local<v8::Value>, const v8::PropertyCallbackInfo<v8::Value>& (…)
    [all...]
V8ErrorHandler.h 42 static PassRefPtr<V8ErrorHandler> create(v8::Local<v8::Object> listener, bool isInline)
48 V8ErrorHandler(v8::Local<v8::Object> listener, bool isInline);
50 virtual v8::Local<v8::Value> callListenerFunction(ScriptExecutionContext*, v8::Handle<v8::Value> jsEvent, Event*);
51 virtual bool shouldPreventDefault(v8::Local<v8::Value> returnValue);
V8EventListener.h 48 static PassRefPtr<V8EventListener> create(v8::Local<v8::Object> listener, bool isAttribute)
54 V8EventListener(v8::Local<v8::Object> listener, bool isAttribute);
56 v8::Local<v8::Function> getListenerFunction(ScriptExecutionContext*);
58 virtual v8::Local<v8::Value> callListenerFunction(ScriptExecutionContext*, v8::Handle<v8::Value> jsEvent, Event*);
V8WorkerGlobalScopeEventListener.h 44 static PassRefPtr<V8WorkerGlobalScopeEventListener> create(v8::Local<v8::Object> listener, bool isInline)
52 V8WorkerGlobalScopeEventListener(v8::Local<v8::Object> listener, bool isInline);
55 virtual v8::Local<v8::Value> callListenerFunction(ScriptExecutionContext*, v8::Handle<v8::Value> jsEvent, Event*);
56 v8::Local<v8::Object> getReceiverObject(ScriptExecutionContext*, Event*);
V8ObjectConstructor.cpp 37 v8::Local<v8::Object> V8ObjectConstructor::newInstance(v8::Handle<v8::Function> function)
40 return v8::Local<v8::Object>();
45 v8::Local<v8::Object> V8ObjectConstructor::newInstance(v8::Handle<v8::ObjectTemplate> objectTemplate)
48 return v8::Local<v8::Object>();
53 v8::Local<v8::Object> V8ObjectConstructor::newInstance(v8::Handle<v8::Function> function, int argc, v8::Handle<v8::Value> argv[])
56 return v8::Local<v8::Object>();
61 v8::Local<v8::Object> V8ObjectConstructor::newInstanceInDocument(v8::Handle<v8::Function> function, int argc, v8::Handle<v8::Value> argv[], Document* document)
64 return v8::Local<v8::Object>();
V8Utilities.h 48 void createHiddenDependency(v8::Handle<v8::Object>, v8::Local<v8::Value>, int cacheIndex, v8::Isolate*);
49 void removeHiddenDependency(v8::Handle<v8::Object>, v8::Local<v8::Value>, int cacheIndex, v8::Isolate*);
52 void transferHiddenDependency(v8::Handle<v8::Object>, EventListener* oldValue, v8::Local<v8::Value> newValue, int cacheIndex, v8::Isolate*);
63 bool extractTransferables(v8::Local<v8::Value>, MessagePortArray&, ArrayBufferArray&, v8::Isolate*);
64 bool getMessagePortArray(v8::Local<v8::Value>, MessagePortArray&, v8::Isolate*);
V8Utilities.cpp 54 void createHiddenDependency(v8::Handle<v8::Object> object, v8::Local<v8::Value> value, int cacheIndex, v8::Isolate* isolate)
56 v8::Local<v8::Value> cache = object->GetInternalField(cacheIndex);
62 v8::Local<v8::Array> cacheArray = v8::Local<v8::Array>::Cast(cache);
66 bool extractTransferables(v8::Local<v8::Value> value, MessagePortArray& ports, ArrayBufferArray& arrayBuffers, v8::Isolate* isolate)
76 v8::Local<v8::Array> array = v8::Local<v8::Array>::Cast(value);
83 v8::Local<v8::Object> transferrables = v8::Local<v8::Object>::Cast(value);
87 v8::Local<v8::Value> transferrable = transferrables->Get(i)
    [all...]
V8ErrorHandler.cpp 43 V8ErrorHandler::V8ErrorHandler(v8::Local<v8::Object> listener, bool isInline)
48 v8::Local<v8::Value> V8ErrorHandler::callListenerFunction(ScriptExecutionContext* context, v8::Handle<v8::Value> jsEvent, Event* event)
54 v8::Local<v8::Object> listener = getListenerObject(context);
56 v8::Local<v8::Value> returnValue;
58 v8::Local<v8::Function> callFunction = v8::Local<v8::Function>::Cast(listener);
59 v8::Local<v8::Object> thisValue = v8::Context::GetCurrent()->Global();
61 v8::Local<v8::Value> error = jsEvent->ToObject()->GetHiddenValue(V8HiddenPropertyName::error());
76 bool V8ErrorHandler::shouldPreventDefault(v8::Local<v8::Value> returnValue)
V8WorkerGlobalScopeEventListener.cpp 47 V8WorkerGlobalScopeEventListener::V8WorkerGlobalScopeEventListener(v8::Local<v8::Object> listener, bool isInline)
57 // The callback function on XMLHttpRequest can clear the event listener and destroys 'this' object. Keep a local reference to it.
78 invokeEventHandler(context, event, v8::Local<v8::Value>::New(isolate, jsEvent));
81 v8::Local<v8::Value> V8WorkerGlobalScopeEventListener::callListenerFunction(ScriptExecutionContext* context, v8::Handle<v8::Value> jsEvent, Event* event)
83 v8::Local<v8::Function> handlerFunction = getListenerFunction(context);
84 v8::Local<v8::Object> receiver = getReceiverObject(context, event);
86 return v8::Local<v8::Value>();
101 v8::Local<v8::Value> result = V8ScriptRunner::callFunction(handlerFunction, context, receiver, WTF_ARRAY_LENGTH(parameters), parameters);
108 v8::Local<v8::Object> V8WorkerGlobalScopeEventListener::getReceiverObject(ScriptExecutionContext* context, Event* event)
110 v8::Local<v8::Object> listener = getListenerObject(context)
    [all...]
ScriptScope.h 44 v8::Local<v8::Object> global() const { return m_context->Global(); }
48 v8::Local<v8::Context> m_context;
V8ScriptRunner.cpp 66 v8::Local<v8::Script> V8ScriptRunner::compileScript(v8::Handle<v8::String> code, const String& fileName, const TextPosition& scriptStartPosition, v8::ScriptData* scriptData, v8::Isolate* isolate, AccessControlStatus corsStatus)
78 v8::Local<v8::Value> V8ScriptRunner::runCompiledScript(v8::Handle<v8::Script> script, ScriptExecutionContext* context)
83 return v8::Local<v8::Value>();
89 return v8::Local<v8::Value>();
92 v8::Local<v8::Value> result;
102 return v8::Local<v8::Value>();
108 v8::Local<v8::Value> V8ScriptRunner::compileAndRunInternalScript(v8::Handle<v8::String> source, v8::Isolate* isolate, const String& fileName, const TextPosition& scriptStartPosition, v8::ScriptData* scriptData)
114 return v8::Local<v8::Value>();
117 v8::Local<v8::Value> result = script->Run();
122 v8::Local<v8::Value> V8ScriptRunner::callFunction(v8::Handle<v8::Function> function, ScriptExecutionContext* (…)
    [all...]
  /external/clang/test/PCH/
cxx-local-templates.cpp 9 struct Local {
14 return Local{}.foo(d);
19 struct Local {
24 return Local{}.foo(d);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8HTMLLinkElementCustom.cpp 36 void V8HTMLLinkElement::sizesAttrSetterCustom(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<void>& info)
V8HTMLFrameElementCustom.cpp 43 void V8HTMLFrameElement::locationAttrSetterCustom(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::PropertyCallbackInfo<void>& info)
  /external/v8/test/cctest/
test-decls.cc 62 v8::Handle<Value> value = Local<Value>());
69 virtual v8::Handle<Value> Get(Local<String> key);
70 virtual v8::Handle<Value> Set(Local<String> key, Local<Value> value);
71 virtual v8::Handle<Integer> Query(Local<String> key);
77 virtual Local<ObjectTemplate> GetHolder(Local<FunctionTemplate> function) {
83 static v8::Handle<Value> HandleGet(Local<String> key,
85 static v8::Handle<Value> HandleSet(Local<String> key,
86 Local<Value> value
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebScriptBindings.cpp 41 v8::Local<v8::String> WebScriptBindings::toV8String(const WebString& string, 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.
  /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...]

Completed in 420 milliseconds

1 2 3 4 5 6 7 8 91011>>