HomeSort by relevance Sort by last modified time
    Searched refs:v8 (Results 301 - 325 of 1185) sorted by null

<<11121314151617181920>>

  /external/v8/src/
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...]
property-details.h 1 // Copyright 2012 the V8 project authors. All rights reserved.
31 #include "../include/v8.h"
37 NONE = v8::None,
38 READ_ONLY = v8::ReadOnly,
39 DONT_ENUM = v8::DontEnum,
40 DONT_DELETE = v8::DontDelete,
48 namespace v8 { namespace
130 } } // namespace v8::internal
  /external/webkit/Source/WebCore/bindings/v8/
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...]
ScriptCachedFrameData.cpp 42 v8::HandleScope handleScope;
63 v8::HandleScope handleScope;
64 v8::Context::Scope contextScope(m_context.get());
ScriptCachedFrameData.h 62 #include <v8.h>
81 OwnHandle<v8::Object> m_global;
82 OwnHandle<v8::Context> m_context;
  /external/webkit/Source/WebKit/chromium/src/
WebScriptController.cpp 44 void WebScriptController::registerExtension(v8::Extension* extension)
DebuggerAgentManager.cpp 58 class CallerIdWrapper : public v8::Debug::ClientData {
111 v8::Debug::SetMessageHandler(0);
112 v8::Debug::SetHostDispatchHandler(0);
124 v8::Debug::SetMessageHandler2(&DebuggerAgentManager::onV8DebugMessage);
125 v8::Debug::SetHostDispatchHandler(&DebuggerAgentManager::debugHostDispatchHandler, 100 /* ms */);
153 v8::Debug::SetMessageHandler2(0);
154 v8::Debug::SetHostDispatchHandler(0);
166 // attached agents v8 will wait for explicit'continue' message).
172 void DebuggerAgentManager::onV8DebugMessage(const v8::Debug::Message& message)
174 v8::HandleScope scope
    [all...]
  /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...]
V8CSSRuleCustom.cpp 45 v8::Handle<v8::Value> toV8(CSSRule* impl)
48 return v8::Null();
  /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...]
  /external/srtp/crypto/math/
math.c 167 wt += octet_weight[a.v8[0]]; /* note: endian-ness makes no difference */
168 wt += octet_weight[a.v8[1]];
169 wt += octet_weight[a.v8[2]];
170 wt += octet_weight[a.v8[3]];
217 if ((x.v8[i] & mask) == 0)
232 if ((x.v8[i] & mask) == 0)
247 if ((x->v8[i] & mask) == 0)
317 bit_string[j++] = nibble_to_hex_char(x.v8[i] >> 4);
318 bit_string[j++] = nibble_to_hex_char(x.v8[i] & 0xF);
330 bit_string[j++] = nibble_to_hex_char(x.v8[i] >> 4)
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/specialization/
V8BindingState.cpp 49 v8::Local<v8::Context> activeContext = v8::Context::GetCalling();
53 activeContext = v8::Context::GetCurrent();
60 return V8Proxy::retrieveWindow(v8::Context::GetEntered());
  /external/clang/test/CXX/class/class.mem/
p1.cpp 59 void v8();
60 int v8(int); //expected-note{{previous declaration is here}}
61 int v8; //expected-error{{duplicate member 'v8'}} member in struct:S5

Completed in 513 milliseconds

<<11121314151617181920>>