Searched refs:v8 (Results 176 - 200 of 789) sorted by relevance

1234567891011>>

/external/v8/src/mips/
H A Dframes-mips.cc29 #include "v8.h"
36 namespace v8 { namespace
46 } } // namespace v8::internal
/external/v8/src/
H A Dstrtod.h31 namespace v8 { namespace
38 } } // namespace v8::internal
/external/webkit/Source/WebCore/bindings/v8/
H A DV8DataGridDataSource.cpp45 V8DataGridDataSource::V8DataGridDataSource(v8::Handle<v8::Value> dataSource, Frame* frame)
46 : m_dataSource(v8::Persistent<v8::Value>::New(dataSource))
H A DWorldContextHandle.cpp48 v8::Local<v8::Context> WorldContextHandle::adjustedContext(V8Proxy* proxy) const
53 return v8::Local<v8::Context>::New(m_context->get());
H A DWorldContextHandle.h36 #include <v8.h>
48 v8::Local<v8::Context> adjustedContext(V8Proxy*) const;
52 RefPtr<SharedPersistent<v8::Context> > m_context;
H A DWrapperTypeInfo.h34 #include <v8.h>
47 typedef v8::Persistent<v8::FunctionTemplate> (*GetTemplateFunction)();
49 typedef ActiveDOMObject* (*ToActiveDOMObjectFunction)(v8::Handle<v8::Object>);
52 // v8 objects. Each v8 bindings class has exactly one static WrapperTypeInfo member, so
56 static WrapperTypeInfo* unwrap(v8::Handle<v8::Value> typeInfoWrapper)
58 return reinterpret_cast<WrapperTypeInfo*>(v8
[all...]
H A DScriptController.cpp85 v8::V8::SetFlagsFromString(string, length);
100 return !v8::Context::InContext() || V8BindingSecurity::canAccessFrame(V8BindingState::Only(), frame, true);
167 v8::HandleScope handleScope;
168 v8::Handle<v8::Context> v8Context = V8Proxy::mainWorldContext(activeFrame);
175 v8::Context::Scope scope(v8Context);
177 v8::Handle<v8::Object> global = v8Context->Global();
178 v8::Handle<v8
[all...]
H A DDOMDataStore.cpp137 void DOMDataStore::weakDOMObjectCallback(v8::Persistent<v8::Value> v8Object, void* domObject)
139 v8::HandleScope scope;
141 DOMData::handleWeakObject(DOMDataStore::DOMObjectMap, v8::Persistent<v8::Object>::Cast(v8Object), domObject);
144 void DOMDataStore::weakActiveDOMObjectCallback(v8::Persistent<v8::Value> v8Object, void* domObject)
146 v8::HandleScope scope;
148 DOMData::handleWeakObject(DOMDataStore::ActiveDOMObjectMap, v8::Persistent<v8
[all...]
H A DScriptFunctionCall.cpp42 #include <v8.h>
76 m_arguments.append(v8::Number::New(argument));
82 m_arguments.append(v8::Number::New(argument));
88 m_arguments.append(v8::Number::New(argument));
94 m_arguments.append(v8::Number::New(argument));
100 m_arguments.append(v8::Number::New(argument));
119 v8::Local<v8::Object> thisObject = m_thisObject.v8Object();
120 v8::Local<v8
[all...]
H A DScriptProfiler.cpp39 #include <v8-profiler.h>
46 v8::HandleScope hs;
47 v8::CpuProfiler::StartProfiling(v8String(title));
52 v8::HandleScope hs;
53 const v8::CpuProfile* profile = state ?
54 v8::CpuProfiler::StopProfiling(v8String(title), state->context()->GetSecurityToken()) :
55 v8::CpuProfiler::StopProfiling(v8String(title));
61 // NOTE : There is currently no direct way to collect memory from the v8 C++ API
64 v8::V8::LowMemoryNotification();
69 class ActivityControlAdapter : public v8
[all...]
H A DV8HiddenPropertyName.h34 #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);
H A DWorkerContextExecutionProxy.h38 #include <v8.h>
73 v8::Local<v8::Context> context() { return v8::Local<v8::Context>::New(m_context); }
81 v8::Local<v8::Value> runScript(v8::Handle<v8::Script>);
88 v8
[all...]
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8NodeCustom.cpp61 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
[all...]
H A DV8DOMSettableTokenListCustom.cpp35 v8::Handle<v8::Value> V8DOMSettableTokenList::indexedPropertyGetter(uint32_t index, const v8::AccessorInfo& info)
H A DV8EntryCustom.cpp47 v8::Handle<v8::Value> toV8(Entry* impl)
50 return v8::Null();
H A DV8EntrySyncCustom.cpp47 v8::Handle<v8::Value> toV8(EntrySync* impl)
50 return v8::Null();
H A DV8FileReaderCustom.cpp43 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
[all...]
H A DV8SharedWorkerCustom.cpp47 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
[all...]
H A DV8SQLTransactionSyncCustom.cpp51 v8::Handle<v8::Value> V8SQLTransactionSync::executeSqlCallback(const v8::Arguments& args)
67 v8::Local<v8::Object> sqlArgsObject = args[1]->ToObject();
68 EXCEPTION_BLOCK(v8::Local<v8::Value>, length, sqlArgsObject->Get(v8::String::New("length")));
76 v8::Local<v8
[all...]
H A DV8DedicatedWorkerContextCustom.cpp45 v8::Handle<v8::Value> V8DedicatedWorkerContext::postMessageCallback(const v8::Arguments& args)
52 return v8::Undefined();
56 return v8::Undefined();
H A DV8SVGLengthCustom.cpp42 v8::Handle<v8::Value> V8SVGLength::valueAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
51 return v8::Handle<v8::Value>();
53 return v8::Number::New(value);
56 void V8SVGLength::valueAccessorSetter(v8::Local<v8
[all...]
H A DV8XMLHttpRequestConstructor.cpp43 v8::Handle<v8::Value> V8XMLHttpRequest::constructorCallback(const v8::Arguments& args)
60 V8DOMWrapper::setJSWrapperForActiveDOMObject(xmlHttpRequest.get(), v8::Persistent<v8::Object>::New(args.Holder()));
/external/v8/test/cctest/
H A Dtest-heap-profiler.cc7 #include "v8.h"
13 #include "../include/v8-profiler.h"
15 namespace i = v8::internal;
53 v8::HandleScope scope;
140 v8::HandleScope scope;
178 v8::HandleScope scope;
208 v8::HandleScope scope;
260 v8::HandleScope scope;
354 v8::HandleScope scope;
412 static const v8
[all...]
H A Dtest-api.cc30 #include "v8.h"
52 using ::v8::AccessorInfo;
53 using ::v8::Arguments;
54 using ::v8::Context;
55 using ::v8::Extension;
56 using ::v8::Function;
57 using ::v8::FunctionTemplate;
58 using ::v8::Handle;
59 using ::v8::HandleScope;
60 using ::v8
[all...]
H A Dtest-threads.cc28 #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
[all...]

Completed in 198 milliseconds

1234567891011>>