/external/webkit/Source/WebCore/bindings/v8/ |
V8Collection.h | 39 #include <v8.h> 45 template<class T> static v8::Handle<v8::Value> getV8Object(T* implementation) 48 return v8::Handle<v8::Value>(); 52 template<class Collection> static Collection* toNativeCollection(v8::Local<v8::Object> object) 57 template<class T> static v8::Handle<v8::Value> getV8Object(PassRefPtr<T> implementation) 63 template<class Collection, class ItemType> static v8::Handle<v8::Value> getNamedPropertyOfCollection(v8::Local<v8::String> name, v8::Local<v8::Object> (…) [all...] |
V8AbstractEventListener.cpp | 49 static void weakEventListenerCallback(v8::Persistent<v8::Value>, void* parameter) 66 v8::HandleScope scope; 67 v8::Local<v8::Object> listener = v8::Local<v8::Object>::New(m_listener); 83 // Don't reenter V8 if execution was terminated in this instance of V8. 93 v8::HandleScope handleScope [all...] |
ScriptControllerQt.cpp | 38 v8::HandleScope handleScope; 39 v8::Handle<v8::Context> v8Context = V8Proxy::mainWorldContext(m_frame); 40 v8::Context::Scope scope(v8Context);
|
WorldContextHandle.h | 36 #include <v8.h> 48 v8::Local<v8::Context> adjustedContext(V8Proxy*) const; 52 RefPtr<SharedPersistent<v8::Context> > m_context;
|
NPV8Object.h | 45 #include <v8.h> 57 // A V8NPObject is a NPObject which carries additional V8-specific information. It is allocated and deallocated by 61 v8::Persistent<v8::Object> v8Object; 73 NPObject* npCreateV8ScriptObject(NPP, v8::Handle<v8::Object>, DOMWindow*); 75 NPObject* v8ObjectToNPObject(v8::Handle<v8::Object>);
|
ScriptCallStackFactory.cpp | 42 #include <v8-debug.h> 46 static ScriptCallFrame toScriptCallFrame(v8::Handle<v8::StackFrame> frame) 49 v8::Local<v8::String> sourceNameValue(frame->GetScriptNameOrSourceURL()); 54 v8::Local<v8::String> functionNameValue(frame->GetFunctionName()); 63 static void toScriptCallFramesVector(v8::Handle<v8::StackTrace> stackTrace, Vector<ScriptCallFrame>& scriptCallFrames, size_t maxStackSize, bool emptyStackIsAllowed) 65 ASSERT(v8::Context::InContext()) [all...] |
ScriptState.cpp | 44 #include <v8.h> 49 ScriptState::ScriptState(v8::Handle<v8::Context> context) 50 : m_context(v8::Persistent<v8::Context>::New(context)) 61 ScriptState* ScriptState::forContext(v8::Local<v8::Context> context) 63 v8::Context::Scope contextScope(context); 65 v8::Local<v8::Object> global = context->Global() [all...] |
V8HiddenPropertyName.h | 34 #include <v8.h> 51 #define V8_DECLARE_PROPERTY(name) static v8::Handle<v8::String> name(); 56 static v8::Persistent<v8::String>* createString(const char* key);
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8InjectedScriptHostCustom.cpp | 56 return V8Node::toNative(v8::Handle<v8::Object>::Cast(value.v8Value())); 61 v8::HandleScope scope; 62 v8::Local<v8::Context> context = state->context(); 63 v8::Context::Scope contextScope(context); 68 v8::Handle<v8::Value> V8InjectedScriptHost::inspectedNodeCallback(const v8::Arguments& args) 72 return v8::Undefined() [all...] |
V8XSLTProcessorCustom.cpp | 49 v8::Handle<v8::Value> V8XSLTProcessor::constructorCallback(const v8::Arguments& args) 56 v8::Handle<v8::Value> V8XSLTProcessor::importStylesheetCallback(const v8::Arguments& args) 60 return v8::Undefined(); 64 Node* node = V8Node::toNative(v8::Handle<v8::Object>::Cast(args[0])); 66 return v8::Undefined() [all...] |
V8SQLResultSetRowListCustom.cpp | 42 v8::Handle<v8::Value> V8SQLResultSetRowList::itemCallback(const v8::Arguments& args) 48 return v8::Undefined(); 53 return v8::Undefined(); 61 return v8::Undefined(); 64 v8::Local<v8::Object> item = v8::Object::New(); 70 v8::Handle<v8::Value> value [all...] |
V8CustomApplicationInstalledCallback.h | 31 #include <v8.h> 41 static PassRefPtr<V8CustomApplicationInstalledCallback> create(v8::Local<v8::Value> value, Frame* frame) 51 V8CustomApplicationInstalledCallback(v8::Local<v8::Object>, Frame*); 53 v8::Persistent<v8::Object> m_callback;
|
V8CustomPositionCallback.h | 31 #include <v8.h> 43 static PassRefPtr<V8CustomPositionCallback> create(v8::Local<v8::Value> value, ScriptExecutionContext* context) 53 V8CustomPositionCallback(v8::Local<v8::Object>, ScriptExecutionContext*); 55 v8::Persistent<v8::Object> m_callback;
|
V8CustomPositionErrorCallback.h | 31 #include <v8.h> 43 static PassRefPtr<V8CustomPositionErrorCallback> create(v8::Local<v8::Value> value, ScriptExecutionContext* context) 53 V8CustomPositionErrorCallback(v8::Local<v8::Object>, ScriptExecutionContext*); 55 v8::Persistent<v8::Object> m_callback;
|
V8CustomPositionCallback.cpp | 38 V8CustomPositionCallback::V8CustomPositionCallback(v8::Local<v8::Object> callback, ScriptExecutionContext* context) 40 , m_callback(v8::Persistent<v8::Object>::New(callback)) 51 v8::HandleScope handleScope; 63 v8::Handle<v8::Context> context = proxy->context(); 67 v8::Context::Scope scope(context); 69 v8::Handle<v8::Value> argv[] = [all...] |
V8CustomPositionErrorCallback.cpp | 38 V8CustomPositionErrorCallback::V8CustomPositionErrorCallback(v8::Local<v8::Object> callback, ScriptExecutionContext* context) 40 , m_callback(v8::Persistent<v8::Object>::New(callback)) 51 v8::HandleScope handleScope; 63 v8::Handle<v8::Context> context = proxy->context(); 67 v8::Context::Scope scope(context); 69 v8::Handle<v8::Value> argv[] = [all...] |
V8CustomSQLStatementErrorCallback.cpp | 51 v8::HandleScope handleScope; 53 v8::Handle<v8::Context> v8Context = toV8Context(scriptExecutionContext(), m_worldContext); 57 v8::Context::Scope scope(v8Context); 59 v8::Handle<v8::Value> transactionHandle = toV8(transaction); 60 v8::Handle<v8::Value> errorHandle = toV8(error); 66 v8::Handle<v8::Value> argv[] = [all...] |
V8HTMLFrameElementCustom.cpp | 44 void V8HTMLFrameElement::locationAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
|
V8SVGDocumentCustom.cpp | 41 v8::Handle<v8::Value> toV8(SVGDocument* impl, bool forceNewObject) 44 return v8::Null(); 45 v8::Handle<v8::Object> wrapper = V8SVGDocument::wrap(impl, forceNewObject);
|
V8StyleSheetCustom.cpp | 40 v8::Handle<v8::Value> toV8(StyleSheet* impl) 43 return v8::Null(); 46 v8::Handle<v8::Object> wrapper = V8StyleSheet::wrap(impl);
|
V8StyleSheetListCustom.cpp | 42 v8::Handle<v8::Value> V8StyleSheetList::namedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
|
V8HTMLAllCollectionCustom.cpp | 44 static v8::Handle<v8::Value> getNamedItems(HTMLAllCollection* collection, AtomicString name) 50 return v8::Handle<v8::Value>(); 58 static v8::Handle<v8::Value> getItem(HTMLAllCollection* collection, v8::Handle<v8::Value> argument) 60 v8::Local<v8::Uint32> index = argument->ToArrayIndex() [all...] |
/external/v8/src/ |
d8-windows.cc | 1 // Copyright 2009 the V8 project authors. All rights reserved. 35 namespace v8 { namespace 42 } // namespace v8
|
strtod.h | 1 // Copyright 2010 the V8 project authors. All rights reserved. 31 namespace v8 { namespace 38 } } // namespace v8::internal
|
/hardware/ril/mock-ril/src/cpp/ |
worker_v8.cpp | 18 #include <v8.h> 41 v8::Persistent<v8::FunctionTemplate> WorkerV8Template; 49 v8::Persistent<v8::Object> js_this; 50 v8::Persistent<v8::Value> value; 77 v8::Persistent<v8::Value> functionValue_; 81 Handler(WorkerV8 *worker, v8::Handle<v8::Value> value [all...] |