HomeSort by relevance Sort by last modified time
    Searched refs:v8 (Results 176 - 200 of 1233) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/webkit/Source/WebCore/bindings/v8/
V8Proxy.cpp 91 void batchConfigureAttributes(v8::Handle<v8::ObjectTemplate> instance,
92 v8::Handle<v8::ObjectTemplate> proto,
100 void batchConfigureCallbacks(v8::Handle<v8::ObjectTemplate> proto,
101 v8::Handle<v8::Signature> signature,
102 v8::PropertyAttribute attributes,
107 proto->Set(v8::String::New(callbacks[i].name)
    [all...]
ScriptInstance.cpp 45 V8ScriptInstance::V8ScriptInstance(v8::Handle<v8::Object> instance)
55 v8::Persistent<v8::Object> V8ScriptInstance::instance()
71 void V8ScriptInstance::set(v8::Handle<v8::Object> instance)
77 m_instance = v8::Persistent<v8::Object>::New(instance);
ScriptHeapSnapshot.h 36 namespace v8 { namespace
53 static PassRefPtr<ScriptHeapSnapshot> create(const v8::HeapSnapshot* snapshot)
64 ScriptHeapSnapshot(const v8::HeapSnapshot* snapshot)
68 const v8::HeapSnapshot* m_snapshot;
ScriptProfile.h 37 namespace v8 { namespace
47 static PassRefPtr<ScriptProfile> create(const v8::CpuProfile* profile)
60 ScriptProfile(const v8::CpuProfile* profile)
64 const v8::CpuProfile* m_profile;
V8DataGridDataSource.cpp 45 V8DataGridDataSource::V8DataGridDataSource(v8::Handle<v8::Value> dataSource, Frame* frame)
46 : m_dataSource(v8::Persistent<v8::Value>::New(dataSource))
WorkerScriptDebugServer.h 52 virtual ScriptDebugListener* getDebugListenerForContext(v8::Handle<v8::Context>);
53 virtual void runMessageLoopOnPause(v8::Handle<v8::Context>);
WorldContextHandle.cpp 48 v8::Local<v8::Context> WorldContextHandle::adjustedContext(V8Proxy* proxy) const
53 return v8::Local<v8::Context>::New(m_context->get());
  /external/webkit/Source/WebKit/chromium/tests/
IDBBindingUtilitiesTest.cpp 44 : m_context(v8::Context::New())
56 v8::HandleScope m_scope;
57 v8::Persistent<v8::Context> m_context;
117 v8::Local<v8::Object> object = v8::Object::New();
118 object->Set(v8::String::New("foo"), v8::String::New("zoo"));
130 v8::Local<v8::Object> object = v8::Object::New()
    [all...]
  /external/chromium/net/proxy/
proxy_resolver_v8.cc 25 #include "v8/include/v8.h"
85 // External string wrapper so V8 can access the UTF16 string wrapped by
88 : public v8::String::ExternalStringResource {
107 // External string wrapper so V8 can access a string literal.
108 class V8ExternalASCIILiteral : public v8::String::ExternalAsciiStringResource {
131 // When creating a v8::String from a C++ string we have two choices: create
138 // Converts a V8 String to a UTF8 std::string.
139 std::string V8StringToUTF8(v8::Handle<v8::String> s)
    [all...]
  /external/v8/test/cctest/
test-accessors.cc 1 // Copyright 2009 the V8 project authors. All rights reserved.
30 #include "v8.h"
37 using ::v8::ObjectTemplate;
38 using ::v8::Value;
39 using ::v8::Context;
40 using ::v8::Local;
41 using ::v8::String;
42 using ::v8::Script;
43 using ::v8::Function;
44 using ::v8::AccessorInfo
    [all...]
test-threads.cc 1 // Copyright 2008 the V8 project authors. All rights reserved.
28 #include "v8.h"
37 v8::Locker locker;
38 v8::V8::Initialize();
39 v8::HandleScope scope;
40 v8::Context::Scope context_scope(v8::Context::New());
42 v8::Locker::StartPreemption(100);
44 v8::Handle<v8::Script> script = v8::Script::Compile
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8HTMLCanvasElementCustom.cpp 51 v8::Handle<v8::Value> V8HTMLCanvasElement::getContextCallback(const v8::Arguments& args)
54 v8::Handle<v8::Object> holder = args.Holder();
63 v8::Handle<v8::Object> jsAttrs = args[1]->ToObject();
64 v8::Handle<v8::String> alpha = v8::String::New("alpha")
    [all...]
V8NodeCustom.cpp 61 v8::Handle<v8::Value> V8Node::insertBeforeCallback(const v8::Arguments& args)
64 v8::Handle<v8::Object> holder = args.Holder();
67 Node* newChild = V8Node::HasInstance(args[0]) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(args[0])) : 0;
68 Node* refChild = V8Node::HasInstance(args[1]) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(args[1])) : 0;
72 return v8::Handle<v8::Value>()
    [all...]
V8DOMSettableTokenListCustom.cpp 35 v8::Handle<v8::Value> V8DOMSettableTokenList::indexedPropertyGetter(uint32_t index, const v8::AccessorInfo& info)
V8EntryCustom.cpp 47 v8::Handle<v8::Value> toV8(Entry* impl)
50 return v8::Null();
V8EntrySyncCustom.cpp 47 v8::Handle<v8::Value> toV8(EntrySync* impl)
50 return v8::Null();
V8FileReaderCustom.cpp 43 v8::Handle<v8::Value> V8FileReader::constructorCallback(const v8::Arguments& args)
60 V8DOMWrapper::setJSWrapperForActiveDOMObject(fileReader.get(), v8::Persistent<v8::Object>::New(args.Holder()));
64 v8::Handle<v8::Value> V8FileReader::resultAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info
    [all...]
V8SharedWorkerCustom.cpp 47 v8::Handle<v8::Value> V8SharedWorker::constructorCallback(const v8::Arguments& args)
57 v8::TryCatch tryCatch;
58 v8::Handle<v8::String> scriptUrl = args[0]->ToString();
67 return v8::Undefined();
72 return v8::Undefined();
82 v8::Handle<v8::Object> wrapperObject = args.Holder()
    [all...]
  /external/webkit/Source/WebKit/chromium/public/
WebScriptController.h 36 namespace v8 { namespace
46 // Registers a v8 extension to be available on webpages. The three forms
52 // Will only affect v8 contexts initialized after this call. Takes ownership
53 // of the v8::Extension object passed.
54 WEBKIT_API static void registerExtension(v8::Extension*);
56 // Enables special settings which are only applicable if V8 is executed
  /dalvik/dx/tests/096-dex-giant-catch/
Blort.java 19 long v5, long v6, long v7, long v8) {
  /external/v8/src/
rewriter.h 1 // Copyright 2011 the V8 project authors. All rights reserved.
31 namespace v8 { namespace
48 } } // namespace v8::internal
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
RSDriverException.java 17 package android.support.v8.renderscript;
RSIllegalArgumentException.java 17 package android.support.v8.renderscript;
RSInvalidStateException.java 17 package android.support.v8.renderscript;
  /external/webkit/Source/WebKit/android/WebCoreSupport/
MemoryUsage.cpp 29 #include <v8.h>
41 v8::HeapStatistics stat;
42 v8::V8::GetHeapStatistics(&stat);

Completed in 386 milliseconds

1 2 3 4 5 6 78 91011>>