/external/webkit/Source/WebCore/bindings/v8/ |
IntrusiveDOMWrapperMap.h | 129 class IntrusiveDOMWrapperMap : public AbstractWeakReferenceMap<Node, v8::Object> { 131 IntrusiveDOMWrapperMap(v8::WeakReferenceCallback callback) 132 : AbstractWeakReferenceMap<Node, v8::Object>(callback) { } 134 virtual v8::Persistent<v8::Object> get(Node* obj) 136 v8::Persistent<v8::Object>* wrapper = obj->wrapper(); 137 return wrapper ? *wrapper : v8::Persistent<v8::Object>(); 140 virtual void set(Node* obj, v8::Persistent<v8::Object> wrapper [all...] |
PageScriptDebugServer.h | 51 // v8-specific methods. 66 virtual ScriptDebugListener* getDebugListenerForContext(v8::Handle<v8::Context>); 67 virtual void runMessageLoopOnPause(v8::Handle<v8::Context>);
|
V8GCForContextDispose.h | 35 #include <v8.h>
|
V8Helpers.cpp | 40 v8::Local<v8::Context> toV8Context(NPP npp, NPObject* npObject)
|
ScriptProfile.cpp | 36 #include <v8-profiler.h> 44 const_cast<v8::CpuProfile*>(m_profile)->Delete(); 49 v8::HandleScope scope; 63 static PassRefPtr<InspectorObject> buildInspectorObjectFor(const v8::CpuProfileNode* node) 65 v8::HandleScope handleScope; 79 const v8::CpuProfileNode* child = node->GetChild(i);
|
V8GCController.cpp | 56 #include <v8-debug.h> 84 typedef HashMap<v8::Value*, GlobalHandleInfo*> GlobalHandleMap; 99 v8::Value* handle = it->first; 104 void V8GCController::registerGlobalHandle(GlobalHandleType type, void* host, v8::Persistent<v8::Value> handle) 110 void V8GCController::unregisterGlobalHandle(void* host, v8::Persistent<v8::Value> handle) 119 typedef HashMap<Node*, v8::Object*> DOMNodeMap; 120 typedef HashMap<void*, v8::Object*> DOMObjectMap; 126 void visitDOMWrapper(DOMDataStore* store, void* object, v8::Persistent<v8::Object> wrapper [all...] |
/external/v8/src/ |
allocation-inl.h | 1 // Copyright 2010 the V8 project authors. All rights reserved. 33 namespace v8 { namespace 47 } } // namespace v8::internal
|
bignum-dtoa.h | 1 // Copyright 2010 the V8 project authors. All rights reserved. 31 namespace v8 { namespace 79 } } // namespace v8::internal
|
cached-powers.h | 1 // Copyright 2010 the V8 project authors. All rights reserved. 33 namespace v8 { namespace 62 } } // namespace v8::internal
|
dtoa.h | 1 // Copyright 2011 the V8 project authors. All rights reserved. 31 namespace v8 { namespace 83 } } // namespace v8::internal
|
fast-dtoa.h | 1 // Copyright 2011 the V8 project authors. All rights reserved. 31 namespace v8 { namespace 81 } } // namespace v8::internal
|
flags.h | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 30 namespace v8 { namespace 43 // ("--prof", "--log-file", "v8.prof", "--nolazy"). 80 } } // namespace v8::internal
|
interpreter-irregexp.h | 1 // Copyright 2011 the V8 project authors. All rights reserved. 33 namespace v8 { namespace 47 } } // namespace v8::internal
|
debug.h | 1 // Copyright 2011 the V8 project authors. All rights reserved. 45 #include "../include/v8-debug.h" 47 namespace v8 { namespace 182 return ComputeIntegerHash(key, v8::internal::kZeroHashSeed); 192 static void HandleWeakScript(v8::Persistent<v8::Value> obj, void* data); 376 static void HandleWeakDebugInfo(v8::Persistent<v8::Value> obj, void* data); 569 class MessageImpl: public v8::Debug::Message { 583 v8::Debug::ClientData* client_data) [all...] |
/external/webkit/Source/WebKit/chromium/src/ |
WebScriptController.cpp | 44 void WebScriptController::registerExtension(v8::Extension* extension)
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8BindingMacros.h | 34 v8::TryCatch block; \ 43 return v8::Undefined();
|
V8DataGridColumnListCustom.cpp | 46 v8::Handle<v8::Value> value = info.Holder()->GetRealNamedPropertyInPrototypeChain(name);
|
V8CSSStyleDeclarationCustom.cpp | 100 static CSSPropertyInfo* cssPropertyInfo(v8::Handle<v8::String>v8PropertyName) 155 v8::Handle<v8::Value> V8CSSStyleDeclaration::namedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) 175 return v8::Number::New(static_cast<CSSPrimitiveValue*>( 193 v8::Handle<v8::Value> V8CSSStyleDeclaration::namedPropertySetter(v8::Local<v8::String> name, v8::Local<v8::Value (…) [all...] |
V8ArrayBufferViewCustom.h | 44 v8::Handle<v8::Value> constructWebGLArrayWithArrayBufferArgument(const v8::Arguments& args, WrapperTypeInfo* type, v8::ExternalArrayType arrayType, bool hasIndexer) 80 v8::Handle<v8::Value> constructWebGLArray(const v8::Arguments& args, WrapperTypeInfo* type, v8::ExternalArrayType arrayType) 125 v8::Handle<v8::Object> srcArray [all...] |
/external/v8/test/cctest/ |
test-decls.cc | 1 // Copyright 2007-2008 the V8 project authors. All rights reserved. 30 #include "v8.h" 35 using namespace v8; 44 // A DeclarationContext holds a reference to a v8::Context and keeps 62 v8::Handle<Value> value = Local<Value>()); 69 virtual v8::Handle<Value> Get(Local<String> key); 70 virtual v8::Handle<Value> Set(Local<String> key, Local<Value> value); 71 virtual v8::Handle<Integer> Query(Local<String> key); 83 static v8::Handle<Value> HandleGet(Local<String> key, 85 static v8::Handle<Value> HandleSet(Local<String> key [all...] |
test-serialize.cc | 1 // Copyright 2007-2010 the V8 project authors. All rights reserved. 31 #include "v8.h" 45 using namespace v8::internal; 104 v8::V8::Initialize(); 109 CHECK_EQ(make_code(v8::internal::RUNTIME_FUNCTION, Runtime::kAbort), 141 v8::V8::Initialize(); 147 decoder.Decode(make_code(v8::internal::RUNTIME_FUNCTION, 245 v8::Persistent<v8::Context> env = v8::Context::New() [all...] |
test-deoptimization.cc | 1 // Copyright 2012 the V8 project authors. All rights reserved. 30 #include "v8.h" 41 using ::v8::internal::Deoptimizer; 42 using ::v8::internal::EmbeddedVector; 43 using ::v8::internal::Handle; 44 using ::v8::internal::Isolate; 45 using ::v8::internal::JSFunction; 46 using ::v8::internal::OS; 47 using ::v8::internal::Object; 107 static Handle<JSFunction> GetJSFunction(v8::Handle<v8::Object> obj [all...] |
test-strings.cc | 1 // Copyright 2011 the V8 project authors. All rights reserved. 10 #include "v8.h" 29 using namespace v8::internal; 31 static v8::Persistent<v8::Context> env; 36 v8::HandleScope scope; 37 const char* extensions[] = { "v8/print" }; 38 v8::ExtensionConfiguration config(1, extensions); 39 env = v8::Context::New(&config); 41 v8::HandleScope scope [all...] |
/external/webkit/Source/WebCore/bindings/scripts/ |
CodeGeneratorV8.pm | 109 my $headerFileName = "$outputHeadersDir/V8$name.h"; 110 my $implFileName = "$outputDir/V8$name.cpp"; 228 my $className = "V8$interfaceName"; 257 push(@headerContent, "#include <v8.h>\n"); 281 static bool HasInstance(v8::Handle<v8::Value> value); 282 static v8::Persistent<v8::FunctionTemplate> GetRawTemplate(); 283 static v8::Persistent<v8::FunctionTemplate> GetTemplate() [all...] |
/prebuilts/sdk/renderscript/lib/ |
javalib.jar | |