/external/v8/src/ |
string-search.cc | 1 // Copyright 2010 the V8 project authors. All rights reserved. 28 #include "v8.h" 31 namespace v8 { namespace 41 }} // namespace v8::internal
|
/external/v8/src/extensions/ |
gc-extension.h | 1 // Copyright 2010 the V8 project authors. All rights reserved. 31 #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) [all...] |
externalize-string-extension.h | 1 // Copyright 2010 the V8 project authors. All rights reserved. 31 #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) [all...] |
/hardware/ril/mock-ril/src/cpp/ |
ctrl_server.h | 20 #include <v8.h> 22 extern v8::Handle<v8::Value> SendCtrlRequestComplete(const v8::Arguments& args); 24 extern void ctrlServerInit(v8::Handle<v8::Context> context);
|
experiments.h | 20 #include <v8.h> 22 void experiments(v8::Handle<v8::Context> context);
|
protobuf_v8.h | 15 #include <v8.h> 22 extern "C" void SchemaObjectTemplateInit(v8::Handle<v8::ObjectTemplate> target);
|
worker_v8.h | 20 #include <v8.h> 26 extern void WorkerV8ObjectTemplateInit(v8::Handle<v8::ObjectTemplate> target); 28 extern void testWorkerV8(v8::Handle<v8::Context> context);
|
util.h | 20 const char* ToCString(const v8::String::Utf8Value& value); 22 const char* ToCString(const v8::String::AsciiValue& value); 24 const char* ToCString(v8::Handle<v8::Value> value); 26 void LogErrorMessage(v8::Handle<v8::Message> message, 29 void ReportException(v8::TryCatch* try_catch);
|
responses.h | 20 #include <v8.h> 35 v8::Handle<v8::Value> SendRilRequestComplete(const v8::Arguments& args); 46 v8::Handle<v8::Value> SendRilUnsolicitedResponse(const v8::Arguments& args); 49 int responsesInit(v8::Handle<v8::Context> context);
|
/external/webkit/Source/WebCore/bindings/v8/ |
DateExtension.h | 34 #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::Handle<v8::Value> OnSleepDetected(const v8::Arguments&) [all...] |
V8NPObject.h | 40 #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::Handle<v8::Value> npObjectGetNamedProperty(v8::Local<v8::Object> self, v8::Local<v8::String> name (…) [all...] |
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) [all...] |
ScriptWrappable.h | 34 #include <v8.h> 42 v8::Persistent<v8::Object>* wrapper() const 47 void setWrapper(v8::Persistent<v8::Object>* wrapper) 56 v8::Persistent<v8::Object>* m_wrapper;
|
V8Utilities.h | 35 #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::Handle<v8::Object>, EventListener* oldValue, v8::Local<v8::Value> newValue, int cacheIndex) [all...] |
V8HiddenPropertyName.cpp | 40 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::Persistent<v8::String>::New(v8::String::NewSymbol(key))) [all...] |
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8HTMLSelectElementCustom.h | 35 #include <v8.h> 41 v8::Handle<v8::Value> removeElement(HTMLSelectElement*, const v8::Arguments&);
|
V8CoordinatesCustom.cpp | 35 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::Handle<v8::Value> V8Coordinates::altitudeAccuracyAccessorGetter(v8::Local<v8::String> name, const (…) [all...] |
V8ImageDataCustom.cpp | 38 v8::Handle<v8::Value> toV8(ImageData* impl) 41 return v8::Null(); 42 v8::Handle<v8::Object> wrapper = V8ImageData::wrap(impl); 44 // Create a V8 CanvasPixelArray object. 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") [all...] |
V8HTMLAudioElementConstructor.h | 36 #include <v8.h> 42 static v8::Persistent<v8::FunctionTemplate> GetTemplate();
|
V8HTMLImageElementConstructor.h | 36 #include <v8.h> 42 static v8::Persistent<v8::FunctionTemplate> GetTemplate();
|
V8HTMLOptionElementConstructor.h | 36 #include <v8.h> 42 static v8::Persistent<v8::FunctionTemplate> GetTemplate();
|
/external/v8/test/cctest/ |
test-platform-macos.cc | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 7 #include "v8.h" 10 using namespace ::v8::internal;
|
test-thread-termination.cc | 1 // Copyright 2009 the V8 project authors. All rights reserved. 28 #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) [all...] |
/external/webkit/Source/WebCore/bindings/scripts/test/V8/ |
V8TestObj.h | 28 #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::Handle<v8::Object> wrap(TestObj*) [all...] |
/external/webkit/Source/WebKit/chromium/src/ |
BoundObject.h | 34 #include <v8.h> 45 BoundObject(v8::Handle<v8::Context> context, void* v8This, const char* objectName); 48 void addProtoFunction(const char* name, v8::InvocationCallback callback); 52 v8::HandleScope m_handleScope; 54 v8::Handle<v8::Context> m_context; 55 v8::Persistent<v8::FunctionTemplate> m_hostTemplate;
|