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

1 2 3 4 5 6 7 8 91011>>

  /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
platform-posix.h 1 // Copyright 2012 the V8 project authors. All rights reserved.
31 namespace v8 { namespace
38 } } // 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...]
  /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...]
V8Proxy.h 44 #include <v8.h>
78 v8::AccessorGetter getter;
79 v8::AccessorSetter setter;
81 v8::AccessControl settings;
82 v8::PropertyAttribute attribute;
86 void batchConfigureAttributes(v8::Handle<v8::ObjectTemplate>, v8::Handle<v8::ObjectTemplate>, const BatchedAttribute*, size_t attributeCount);
88 inline void configureAttribute(v8::Handle<v8::ObjectTemplate> instance, v8::Handle<v8::ObjectTemplate> proto, const BatchedAttribute (…)
    [all...]
JavaScriptCallFrame.h 38 #include <v8-debug.h>
44 static PassRefPtr<JavaScriptCallFrame> create(v8::Handle<v8::Context> debuggerContext, v8::Handle<v8::Object> callFrame)
57 v8::Handle<v8::Value> scopeChain() const;
59 v8::Handle<v8::Value> thisObject() const;
61 v8::Handle<v8::Value> evaluate(const String& expression)
    [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();
V8MessagePortCustom.h 35 #include <v8.h>
44 bool getMessagePortArray(v8::Local<v8::Value>, MessagePortArray&);
V8ScriptProfileCustom.cpp 38 #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::Object> instance = SafeAllocation::newInstance(function)
    [all...]
V8HTMLPlugInElementCustom.cpp 48 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::Handle<v8::Value> npObjectNamedSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, con (…)
    [all...]
  /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...]
V8TestInterface.h 30 #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::Handle<v8::Object> wrap(TestInterface*)
    [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;

Completed in 854 milliseconds

1 2 3 4 5 6 7 8 91011>>