Searched refs:v8 (Results 1 - 25 of 789) sorted by relevance

1234567891011>>

/external/v8/src/
H A Dframe-element.cc28 #include "v8.h"
33 namespace v8 { namespace
37 } } // namespace v8::internal
H A Dstring-search.cc28 #include "v8.h"
31 namespace v8 { namespace
41 }} // namespace v8::internal
H A Dshell.h35 namespace v8 { namespace
39 void handle_debug_event(v8::DebugEvent event,
40 v8::Handle<v8::Object> exec_state,
41 v8::Handle<v8::Object> event_data,
42 v8::Handle<Value> data);
47 static void PrintObject(v8::Handle<v8::Value> obj);
50 static void Run(v8
[all...]
/external/webkit/Source/WebCore/bindings/v8/
H A DV8NPObject.h40 #include <v8.h>
46 v8::Handle<v8::Value> npObjectNamedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo&);
47 v8::Handle<v8::Value> npObjectIndexedPropertyGetter(uint32_t index, const v8::AccessorInfo&);
48 v8
[all...]
H A DV8EventListener.cpp38 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
[all...]
H A DV8Utilities.h35 #include <v8.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
[all...]
H A DDateExtension.h34 #include <v8.h>
39 class DateExtension : public v8::Extension {
46 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunction(v8::Handle<v8::String>);
47 static v8::Handle<v8::Value> Setup(const v8::Arguments&);
48 static v8
[all...]
H A DV8HiddenPropertyName.cpp40 v8::Handle<v8::String> V8HiddenPropertyName::name() \
42 static v8::Persistent<v8::String>* string = createString("WebCore::V8HiddenPropertyName::" V8_AS_STRING(name)); \
48 v8::Persistent<v8::String>* V8HiddenPropertyName::createString(const char* key)
50 v8::HandleScope scope;
51 return new v8::Persistent<v8::String>(v8
[all...]
H A DScriptScope.h34 #include <v8.h>
44 v8::Local<v8::Object> global() const { return m_context->Global(); }
47 v8::HandleScope m_handleScope;
48 v8::Local<v8::Context> m_context;
49 v8::Context::Scope m_scope;
50 v8::TryCatch m_exceptionCatcher;
/external/v8/test/cctest/
H A Dtest-platform-macos.cc7 #include "v8.h"
10 using namespace ::v8::internal;
H A Dtest-thread-termination.cc28 #include "v8.h"
33 v8::internal::Semaphore* semaphore = NULL;
36 v8::Handle<v8::Value> Signal(const v8::Arguments& args) {
38 return v8::Undefined();
42 v8::Handle<v8::Value> TerminateCurrentThread(const v8::Arguments& args) {
43 CHECK(!v8
[all...]
/external/v8/src/extensions/experimental/
H A Di18n-extension.h31 #include <v8.h>
33 namespace v8 { namespace
37 class I18NExtension : public v8::Extension {
41 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunction(
42 v8::Handle<v8::String> name);
45 static v8::Handle<v8::Value> JSLocale(const v8
[all...]
H A Dbreak-iterator.h31 #include <v8.h>
40 namespace v8 { namespace
45 static v8::Handle<v8::Value> JSBreakIterator(const v8::Arguments& args);
50 static icu::BreakIterator* UnpackBreakIterator(v8::Handle<v8::Object> obj);
54 static icu::UnicodeString* ResetAdoptedText(v8::Handle<v8::Object> obj,
55 v8
[all...]
/external/v8/src/extensions/
H A Dgc-extension.h31 #include "v8.h"
33 namespace v8 { namespace
36 class GCExtension : public v8::Extension {
38 GCExtension() : v8::Extension("v8/gc", kSource) {}
39 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunction(
40 v8::Handle<v8::String> name);
41 static v8
[all...]
H A Dexternalize-string-extension.h31 #include "v8.h"
33 namespace v8 { namespace
36 class ExternalizeStringExtension : public v8::Extension {
38 ExternalizeStringExtension() : v8::Extension("v8/externalize", kSource) {}
39 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunction(
40 v8::Handle<v8::String> name);
41 static v8
[all...]
H A Dgc-extension.cc30 namespace v8 { namespace
36 v8::Handle<v8::FunctionTemplate> GCExtension::GetNativeFunction(
37 v8::Handle<v8::String> str) {
38 return v8::FunctionTemplate::New(GCExtension::GC);
42 v8::Handle<v8::Value> GCExtension::GC(const v8::Arguments& args) {
49 return v8
[all...]
/external/webkit/Source/WebCore/bindings/scripts/test/V8/
H A DV8TestObj.h28 #include <v8.h>
36 static bool HasInstance(v8::Handle<v8::Value> value);
37 static v8::Persistent<v8::FunctionTemplate> GetRawTemplate();
38 static v8::Persistent<v8::FunctionTemplate> GetTemplate();
39 static TestObj* toNative(v8::Handle<v8::Object> object)
43 inline static v8
[all...]
H A DV8TestInterface.h30 #include <v8.h>
38 static bool HasInstance(v8::Handle<v8::Value> value);
39 static v8::Persistent<v8::FunctionTemplate> GetRawTemplate();
40 static v8::Persistent<v8::FunctionTemplate> GetTemplate();
41 static TestInterface* toNative(v8::Handle<v8::Object> object)
45 inline static v8
[all...]
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8CoordinatesCustom.cpp35 v8::Handle<v8::Value> V8Coordinates::altitudeAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
38 v8::Handle<v8::Object> holder = info.Holder();
41 return v8::Null();
42 return v8::Number::New(imp->altitude());
45 v8
[all...]
H A DV8ImageDataCustom.cpp38 v8::Handle<v8::Value> toV8(ImageData* impl)
41 return v8::Null();
42 v8::Handle<v8::Object> wrapper = V8ImageData::wrap(impl);
45 v8::Handle<v8::Value> pixelArray = toV8(impl->data());
47 // the created v8 object, eliminating the C++ callback
50 wrapper->Set(v8::String::NewSymbol("data"),
52 v8
[all...]
H A DV8MessagePortCustom.h35 #include <v8.h>
44 bool getMessagePortArray(v8::Local<v8::Value>, MessagePortArray&);
H A DV8ScriptProfileCustom.cpp38 #include <v8-profiler.h>
42 v8::Handle<v8::Value> toV8(ScriptProfile* impl)
45 return v8::Null();
46 v8::Local<v8::Function> function = V8ScriptProfile::GetTemplate()->GetFunction();
49 return v8::Local<v8::Object>();
51 v8::Local<v8
[all...]
H A DV8HTMLPlugInElementCustom.cpp48 static v8::Handle<v8::Value> npObjectNamedGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
55 v8::Local<v8::Object> instance = v8::Local<v8::Object>::New(scriptInstance->instance());
63 static v8
[all...]
H A DV8HTMLSelectElementCustom.h35 #include <v8.h>
41 v8::Handle<v8::Value> removeElement(HTMLSelectElement*, const v8::Arguments&);
/external/v8/samples/
H A Dshell.cc28 #include <v8.h>
29 #include <v8-testing.h>
42 #include "../src/v8.h"
57 v8::Persistent<v8::Context> CreateShellContext();
58 void RunShell(v8::Handle<v8::Context> context);
59 bool ExecuteString(v8::Handle<v8::String> source,
60 v8
[all...]

Completed in 1137 milliseconds

1234567891011>>