/external/srtp/tables/ |
aes_tables.c | 106 tmp.v8[0] = x2; 107 tmp.v8[1] = x1; 108 tmp.v8[2] = x1; 109 tmp.v8[3] = x3; 112 tmp.v8[0] = x3; 113 tmp.v8[1] = x2; 114 tmp.v8[2] = x1; 115 tmp.v8[3] = x1; 118 tmp.v8[0] = x1; 119 tmp.v8[1] = x3 [all...] |
/external/v8/src/ |
apiutils.h | 1 // Copyright 2009 the V8 project authors. All rights reserved. 31 namespace v8 { namespace 48 implicit_args[v8::Arguments::kDataIndex] = data; 49 implicit_args[v8::Arguments::kCalleeIndex] = callee; 50 implicit_args[v8::Arguments::kHolderIndex] = holder; 53 static v8::Arguments NewArguments(internal::Object** implicit_args, 56 ASSERT(implicit_args[v8::Arguments::kCalleeIndex]->IsJSFunction()); 57 ASSERT(implicit_args[v8::Arguments::kHolderIndex]->IsHeapObject()); 59 return v8::Arguments(implicit_args, argv, argc, is_construct_call); 64 typedef v8::HandleScope::Data HandleScopeData [all...] |
cpu.h | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 39 namespace v8 { namespace 65 } } // namespace v8::internal
|
fixed-dtoa.h | 1 // Copyright 2010 the V8 project authors. All rights reserved. 31 namespace v8 { namespace 53 } } // namespace v8::internal
|
/external/v8/src/arm/ |
frames-arm.cc | 1 // Copyright 2011 the V8 project authors. All rights reserved. 28 #include "v8.h" 34 namespace v8 { namespace 43 } } // namespace v8::internal
|
/external/v8/src/ia32/ |
frames-ia32.cc | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 28 #include "v8.h" 34 namespace v8 { namespace 43 } } // namespace v8::internal
|
/external/v8/src/x64/ |
frames-x64.cc | 1 // Copyright 2010 the V8 project authors. All rights reserved. 28 #include "v8.h" 34 namespace v8 { namespace 43 } } // namespace v8::internal
|
/external/v8/test/cctest/ |
gay-fixed.h | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 31 namespace v8 { namespace 45 } } // namespace v8::internal
|
gay-precision.h | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 31 namespace v8 { namespace 45 } } // namespace v8::internal
|
gay-shortest.h | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 31 namespace v8 { namespace 42 } } // namespace v8::internal
|
test-compiler.cc | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 31 #include "v8.h" 41 using namespace v8::internal; 43 static v8::Persistent<v8::Context> env; 47 class PrintExtension : public v8::Extension { 49 PrintExtension() : v8::Extension("v8/print", kSource) { } 50 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunction [all...] |
test-log.cc | 1 // Copyright 2006-2009 the V8 project authors. All rights reserved. 14 #include "v8.h" 21 using v8::internal::Address; 22 using v8::internal::EmbeddedVector; 23 using v8::internal::Logger; 24 using v8::internal::StrLength; 26 namespace i = v8::internal; 135 v8::Script::Compile(v8::String::New(src))->Run(); 139 namespace v8 { namespace [all...] |
/external/webkit/Source/WebCore/bindings/v8/ |
DOMDataStore.h | 37 #include <v8.h> 78 // A list of all DOMDataStore objects in the current V8 instance (thread). Normally, each World has a DOMDataStore. 95 static void weakActiveDOMObjectCallback(v8::Persistent<v8::Value> v8Object, void* domObject); 98 static void weakNodeCallback(v8::Persistent<v8::Value> v8Object, void* domObject); 99 static void weakDOMObjectCallback(v8::Persistent<v8::Value> v8Object, void* domObject); 101 static void weakSVGElementInstanceCallback(v8::Persistent<v8::Value> v8Object, void* domObject) [all...] |
ScriptGCEvent.h | 36 #include "v8.h" 55 static void gcEpilogueCallback(v8::GCType type, v8::GCCallbackFlags flags); 56 static void gcPrologueCallback(v8::GCType type, v8::GCCallbackFlags flags);
|
ScriptProfileNode.h | 36 namespace v8 { namespace 48 static PassRefPtr<ScriptProfileNode> create(const v8::CpuProfileNode* profileNode) 65 ScriptProfileNode(const v8::CpuProfileNode* profileNode) 70 const v8::CpuProfileNode* m_profileNode;
|
SerializedScriptValue.cpp | 156 // Uses UTF8 encoding so we can read it back as either V8 or 223 void writeRegExp(v8::Local<v8::String> pattern, v8::RegExp::Flags flags) 226 v8::String::Utf8Value patternUtf8Value(pattern); 347 Serializer(Writer& writer, v8::TryCatch& tryCatch) 356 Status serialize(v8::Handle<v8::Value> value) 358 v8::HandleScope scope; 367 StateBase* doSerialize(v8::Handle<v8::Value> value, StateBase* next) [all...] |
WorkerScriptController.cpp | 48 #include <v8.h> 88 v8::V8::TerminateExecution(); 111 if (!v8::Context::InContext()) 113 v8::Handle<v8::Context> context = v8::Context::GetCurrent(); 114 v8::Handle<v8::Object> global = context->Global();
|
V8DOMMap.h | 36 #include <v8.h> 47 AbstractWeakReferenceMap(v8::WeakReferenceCallback callback) : m_weakReferenceCallback(callback) { } 54 virtual void visitDOMWrapper(DOMDataStore* store, KeyType* key, v8::Persistent<ValueType> object) = 0; 59 virtual v8::Persistent<ValueType> get(KeyType* obj) = 0; 60 virtual void set(KeyType* obj, v8::Persistent<ValueType> wrapper) = 0; 63 virtual bool removeIfPresent(KeyType*, v8::Persistent<ValueType>) = 0; 66 v8::WeakReferenceCallback weakReferenceCallback() { return m_weakReferenceCallback; } 68 v8::WeakReferenceCallback m_weakReferenceCallback; 71 typedef AbstractWeakReferenceMap<Node, v8::Object> DOMNodeMapping; 79 WeakReferenceMap(v8::WeakReferenceCallback callback) : Parent(callback) { [all...] |
/external/webkit/Source/WebCore/css/ |
MediaQueryListListener.cpp | 40 v8::HandleScope handleScope; 41 v8::Handle<v8::Context> context = state->context(); 44 v8::Context::Scope scope(context);
|
/external/webkit/Source/WebKit/chromium/src/ |
InspectorFrontendClientImpl.cpp | 65 v8::HandleScope handleScope; 66 v8::Handle<v8::Context> frameContext = V8Proxy::context(m_frontendPage->mainFrame()); 67 v8::Context::Scope contextScope(frameContext); 71 v8::Handle<v8::Value> frontendHostObj = toV8(m_frontendHost.get()); 72 v8::Handle<v8::Object> global = frameContext->Global(); 74 global->Set(v8::String::New("InspectorFrontendHost"), frontendHostObj);
|
/hardware/ril/mock-ril/src/cpp/ |
requests.h | 23 #include <v8.h> 61 v8::Handle<v8::Context> context_; 70 RilRequestWorkerQueue(v8::Handle<v8::Context> context); 94 int requestsInit(v8::Handle<v8::Context> context, RilRequestWorkerQueue **rwq); 99 void testRequests(v8::Handle<v8::Context> context);
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8SQLTransactionCustom.cpp | 51 v8::Handle<v8::Value> V8SQLTransaction::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::Integer> key = v8::Integer::New(i) [all...] |
V8AudioNodeCustom.cpp | 39 v8::Handle<v8::Value> V8AudioNode::connectCallback(const v8::Arguments& args) 68 return v8::Undefined(); 71 v8::Handle<v8::Value> V8AudioNode::disconnectCallback(const v8::Arguments& args) 86 return v8::Undefined();
|
V8HTMLFormElementCustom.cpp | 44 v8::Handle<v8::Value> V8HTMLFormElement::indexedPropertyGetter(uint32_t index, const v8::AccessorInfo& info) 55 v8::Handle<v8::Value> V8HTMLFormElement::namedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
|
/external/clang/test/Sema/ |
altivec-init.c | 4 typedef short v8 __attribute((vector_size(16))); typedef 6 v8 foo(void) { 7 v8 a; 9 a = (v8){4, 2}; 24 return (v8){0, 1, 2, 3, 1, 2, 3, 4};
|