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

1 2 3 4 5 6 7 8 910

  /frameworks/compile/libbcc/tests/debuginfo/host-tests/
nested-struct.cpp 15 struct Local {
22 i = Local::my_number();
  /external/webkit/Source/JavaScriptCore/heap/
Local.h 34 LocalScope. Use Locals for local values on the stack. It is an error to
35 create a Local outside of any LocalScope.
40 template <typename T> class Local : public Handle<T> {
47 Local(JSGlobalData&, ExternalType = ExternalType());
48 Local(JSGlobalData&, Handle<T>);
49 Local(const Local<T>&); // Adopting constructor. Used to return a Local to a calling function.
51 Local& operator=(ExternalType);
52 Local& operator=(Handle<T>)
    [all...]
LocalScope.h 30 #include "Local.h"
47 template <typename T> Local<T> release(Local<T>); // Destroys all other locals in the scope.
65 template <typename T> Local<T> LocalScope::release(Local<T> local)
67 typename Local<T>::ExternalType ptr = local.get();
73 return Local<T>(slot, ptr);
  /external/webkit/Source/WebCore/bindings/v8/
V8EventListener.cpp 38 V8EventListener::V8EventListener(v8::Local<v8::Object> listener, bool isAttribute, const WorldContextHandle& worldContext)
44 v8::Local<v8::Function> V8EventListener::getListenerFunction(ScriptExecutionContext* context)
46 v8::Local<v8::Object> listener = getListenerObject(context);
50 return v8::Local<v8::Function>();
53 return v8::Local<v8::Function>::Cast(listener);
56 v8::Local<v8::Value> property = listener->Get(v8::String::NewSymbol("handleEvent"));
60 return v8::Local<v8::Function>::Cast(property);
63 return v8::Local<v8::Function>();
66 v8::Local<v8::Value> V8EventListener::callListenerFunction(ScriptExecutionContext* context, v8::Handle<v8::Value> jsEvent, Event* event)
69 v8::Local<v8::Function> handlerFunction = getListenerFunction(context)
    [all...]
V8NPObject.h 46 v8::Handle<v8::Value> npObjectNamedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo&);
48 v8::Handle<v8::Value> npObjectGetNamedProperty(v8::Local<v8::Object> self, v8::Local<v8::String> name);
49 v8::Handle<v8::Value> npObjectGetIndexedProperty(v8::Local<v8::Object> self, uint32_t index);
52 v8::Handle<v8::Value> npObjectNamedPropertySetter(v8::Local<v8::String> name, v8::Local<v8::Value>, const v8::AccessorInfo&);
54 v8::Handle<v8::Value> npObjectSetNamedProperty(v8::Local<v8::Object> self, v8::Local<v8::String> name, v8::Local<v8::Value>);
55 v8::Handle<v8::Value> npObjectSetIndexedProperty(v8::Local<v8::Object> self, uint32_t index, v8::Local<v8::Value>)
    [all...]
V8EventListener.h 47 static PassRefPtr<V8EventListener> create(v8::Local<v8::Object> listener, bool isAttribute, const WorldContextHandle& worldContext)
53 V8EventListener(v8::Local<v8::Object> listener, bool isAttribute, const WorldContextHandle& worldContext);
55 v8::Local<v8::Function> getListenerFunction(ScriptExecutionContext*);
57 virtual v8::Local<v8::Value> callListenerFunction(ScriptExecutionContext*, v8::Handle<v8::Value> jsEvent, Event*);
OptionsObject.cpp 44 OptionsObject::OptionsObject(const v8::Local<v8::Value>& options)
68 v8::Local<v8::Value> v8Value;
72 v8::Local<v8::Boolean> v8Bool = v8Value->ToBoolean();
81 v8::Local<v8::Value> v8Value;
85 v8::Local<v8::Int32> v8Int32 = v8Value->ToInt32();
94 v8::Local<v8::Value> v8Value;
108 v8::Local<v8::Value> v8Value;
116 v8::Local<v8::Array> v8Array = v8::Local<v8::Array>::Cast(v8Value);
118 v8::Local<v8::Value> indexedValue = v8Array->Get(v8::Integer::New(i))
    [all...]
V8Utilities.h 46 void createHiddenDependency(v8::Handle<v8::Object>, v8::Local<v8::Value>, int cacheIndex);
47 void removeHiddenDependency(v8::Handle<v8::Object>, v8::Local<v8::Value>, int cacheIndex);
50 void transferHiddenDependency(v8::Handle<v8::Object>, EventListener* oldValue, v8::Local<v8::Value> newValue, int cacheIndex);
69 PassRefPtr<V8CallbackType> createFunctionOnlyCallback(v8::Local<v8::Value> value, bool& succeeded, CallbackAllowedValueFlags acceptedValues = 0)
109 static inline v8::Local<v8::Object> newInstance(v8::Handle<v8::Function>);
110 static inline v8::Local<v8::Object> newInstance(v8::Handle<v8::ObjectTemplate>);
111 static inline v8::Local<v8::Object> newInstance(v8::Handle<v8::Function>, int argc, v8::Handle<v8::Value> argv[]);
114 v8::Local<v8::Object> SafeAllocation::newInstance(v8::Handle<v8::Function> function)
117 return v8::Local<v8::Object>();
122 v8::Local<v8::Object> SafeAllocation::newInstance(v8::Handle<v8::ObjectTemplate> objectTemplate
    [all...]
V8WindowErrorHandler.cpp 40 V8WindowErrorHandler::V8WindowErrorHandler(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext)
45 v8::Local<v8::Value> V8WindowErrorHandler::callListenerFunction(ScriptExecutionContext* context, v8::Handle<v8::Value> jsEvent, Event* event)
51 v8::Local<v8::Object> listener = getListenerObject(context);
52 v8::Local<v8::Value> returnValue;
54 v8::Local<v8::Function> callFunction = v8::Local<v8::Function>::Cast(listener);
55 v8::Local<v8::Object> thisValue = v8::Context::GetCurrent()->Global();
V8WorkerContextErrorHandler.cpp 42 V8WorkerContextErrorHandler::V8WorkerContextErrorHandler(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext)
47 v8::Local<v8::Value> V8WorkerContextErrorHandler::callListenerFunction(ScriptExecutionContext* context, v8::Handle<v8::Value> jsEvent, Event* event)
50 v8::Local<v8::Object> listener = getListenerObject(context);
51 v8::Local<v8::Value> returnValue;
54 v8::Local<v8::Function> callFunction = v8::Local<v8::Function>::Cast(listener);
55 v8::Local<v8::Object> thisValue = v8::Context::GetCurrent()->Global();
V8WindowErrorHandler.h 42 static PassRefPtr<V8WindowErrorHandler> create(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext)
48 V8WindowErrorHandler(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext);
50 virtual v8::Local<v8::Value> callListenerFunction(ScriptExecutionContext*, v8::Handle<v8::Value> jsEvent, Event*);
V8WorkerContextErrorHandler.h 44 static PassRefPtr<V8WorkerContextErrorHandler> create(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext)
50 V8WorkerContextErrorHandler(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext);
52 virtual v8::Local<v8::Value> callListenerFunction(ScriptExecutionContext*, v8::Handle<v8::Value> jsEvent, Event*);
V8Helpers.h 40 v8::Local<v8::Context> toV8Context(NPP, NPObject*);
V8WorkerContextEventListener.h 47 static PassRefPtr<V8WorkerContextEventListener> create(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext)
55 V8WorkerContextEventListener(v8::Local<v8::Object> listener, bool isInline, const WorldContextHandle& worldContext);
58 virtual v8::Local<v8::Value> callListenerFunction(ScriptExecutionContext*, v8::Handle<v8::Value> jsEvent, Event*);
59 v8::Local<v8::Object> getReceiverObject(ScriptExecutionContext*, Event*);
V8Utilities.cpp 53 void createHiddenDependency(v8::Handle<v8::Object> object, v8::Local<v8::Value> value, int cacheIndex)
55 v8::Local<v8::Value> cache = object->GetInternalField(cacheIndex);
61 v8::Local<v8::Array> cacheArray = v8::Local<v8::Array>::Cast(cache);
65 void removeHiddenDependency(v8::Handle<v8::Object> object, v8::Local<v8::Value> value, int cacheIndex)
67 v8::Local<v8::Value> cache = object->GetInternalField(cacheIndex);
70 v8::Local<v8::Array> cacheArray = v8::Local<v8::Array>::Cast(cache);
72 v8::Local<v8::Value> cached = cacheArray->Get(v8::Integer::New(i));
82 v8::Local<v8::Value> newValue,
    [all...]
ScriptScope.h 44 v8::Local<v8::Object> global() const { return m_context->Global(); }
48 v8::Local<v8::Context> m_context;
WorldContextHandle.cpp 48 v8::Local<v8::Context> WorldContextHandle::adjustedContext(V8Proxy* proxy) const
53 return v8::Local<v8::Context>::New(m_context->get());
  /external/clang/test/CXX/class.access/class.friend/
p6.cpp 14 void local() { function
17 struct Local {
18 friend void f() { } // expected-error{{friend function cannot be defined in a local class}}
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8MessagePortCustom.h 44 bool getMessagePortArray(v8::Local<v8::Value>, MessagePortArray&);
V8ScriptProfileCustom.cpp 46 v8::Local<v8::Function> function = V8ScriptProfile::GetTemplate()->GetFunction();
49 return v8::Local<v8::Object>();
51 v8::Local<v8::Object> instance = SafeAllocation::newInstance(function);
54 return v8::Local<v8::Object>();
V8HTMLOutputElementCustom.cpp 41 v8::Handle<v8::Value> V8HTMLOutputElement::htmlForAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
48 void V8HTMLOutputElement::htmlForAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
V8InspectorFrontendHostCustom.cpp 70 v8::Local<v8::Object> eventWrapper = v8::Local<v8::Object>::Cast(args[0]);
78 v8::Local<v8::Array> array = v8::Local<v8::Array>::Cast(args[1]);
82 v8::Local<v8::Object> item = v8::Local<v8::Object>::Cast(array->Get(v8::Integer::New(i)));
83 v8::Local<v8::Value> type = item->Get(v8::String::New("type"));
84 v8::Local<v8::Value> id = item->Get(v8::String::New("id"));
85 v8::Local<v8::Value> label = item->Get(v8::String::New("label"));
86 v8::Local<v8::Value> enabled = item->Get(v8::String::New("enabled"))
    [all...]
V8HTMLFrameElementCustom.cpp 44 void V8HTMLFrameElement::locationAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& 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/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 484 milliseconds

1 2 3 4 5 6 7 8 910