Searched refs:v8 (Results 126 - 150 of 1196) sorted by relevance

1234567891011>>

/external/clang/test/CXX/class/class.mem/
H A Dp1.cpp59 void v8();
60 int v8(int); //expected-note{{previous declaration is here}}
61 int v8; //expected-error{{duplicate member 'v8'}} member in struct:S5
/external/pdfium/fpdfsdk/include/javascript/
H A Dglobal.h36 v8::Global<v8::Object> pData;
64 void ObjectToArray(v8::Local<v8::Object> pObj, CJS_GlobalVariableArray& array);
65 void PutObjectProperty(v8::Local<v8::Object> obj, CJS_KeyValue* pData);
/external/v8/src/base/
H A Dlogging.cc18 namespace v8 { namespace
71 } } // namespace v8::base
78 v8::base::OS::PrintError("\n\n#\n# Fatal error in %s, line %d\n# ", file,
82 v8::base::OS::VPrintError(format, arguments);
84 v8::base::OS::PrintError("\n#\n");
85 v8::base::DumpBacktrace();
87 v8::base::OS::Abort();
H A Dbits.cc8 namespace v8 { namespace
25 } // namespace v8
H A Dsys-info-unittest.cc14 namespace v8 { namespace
32 } // namespace v8
/external/v8/src/libplatform/
H A Ddefault-platform.cc15 namespace v8 { namespace
19 v8::Platform* CreateDefaultPlatform(int thread_pool_size) {
27 bool PumpMessageLoop(v8::Platform* platform, v8::Isolate* isolate) {
48 for (std::map<v8::Isolate*, std::queue<Task*> >::iterator i =
80 bool DefaultPlatform::PumpMessageLoop(v8::Isolate* isolate) {
84 std::map<v8::Isolate*, std::queue<Task*> >::iterator it =
104 void DefaultPlatform::CallOnForegroundThread(v8::Isolate* isolate, Task* task) {
109 } } // namespace v8::platform
/external/v8/src/
H A Dnatives.h10 namespace v8 { class StartupData; } // Forward declaration. namespace
12 namespace v8 { namespace
51 } } // namespace v8::internal
H A Ddebug.h21 #include "include/v8-debug.h"
23 namespace v8 { namespace
165 return ComputeIntegerHash(key, v8::internal::kZeroHashSeed);
173 const v8::WeakCallbackData<v8::Value, void>& data);
202 class MessageImpl: public v8::Debug::Message {
216 v8::Debug::ClientData* client_data);
218 // Implementation of interface v8::Debug::Message.
223 virtual v8::Handle<v8
[all...]
H A Dbootstrapper.h10 namespace v8 { namespace
80 v8::Handle<v8::ObjectTemplate> global_object_template,
81 v8::ExtensionConfiguration* extensions);
107 v8::ExtensionConfiguration* extensions);
127 static v8::Extension* free_buffer_extension_;
128 static v8::Extension* gc_extension_;
129 static v8::Extension* externalize_string_extension_;
130 static v8::Extension* statistics_extension_;
131 static v8
[all...]
H A Dcached-powers.h11 namespace v8 { namespace
40 } } // namespace v8::internal
H A Ddtoa.h8 namespace v8 { namespace
60 } } // namespace v8::internal
H A Dflags.h10 namespace v8 { namespace
23 // ("--prof", "--log-file", "v8.prof", "--nolazy").
62 } } // namespace v8::internal
H A Dhydrogen-bch.h10 namespace v8 { namespace
30 } } // namespace v8::internal
H A Dhydrogen-canonicalize.h10 namespace v8 { namespace
26 } } // namespace v8::internal
H A Dhydrogen-dehoist.h10 namespace v8 { namespace
26 } } // namespace v8::internal
/external/v8/tools/oom_dump/
H A Doom_dump.cc35 #include <v8.h>
47 static char const* names[v8::internal::LAST_TYPE] = {0};
48 if (names[v8::internal::STRING_TYPE] == NULL) {
49 using namespace v8::internal;
150 if (value2 == v8::internal::HeapStats::kStartMarker) {
163 CHECK(READ_FIELD(0) == v8::internal::HeapStats::kStartMarker);
164 CHECK(READ_FIELD(24) == v8::internal::HeapStats::kEndMarker);
189 int objects_per_type[v8::internal::LAST_TYPE + 1] = {0};
191 v8::internal::LAST_TYPE + 1, objects_per_type);
193 int size_per_type[v8
[all...]
/external/skia/experimental/SkV8Example/
H A DSkV8Example.cpp9 #include <v8.h>
170 v8::V8::SetFlagsFromCommandLine(&argc, argv, true);
173 v8::V8::InitializeICU();
174 v8::Platform* platform = v8::platform::CreateDefaultPlatform();
175 v8::V8::InitializePlatform(platform);
176 v8::V8::Initialize();
178 v8::Isolate* isolate = v8::Isolate::New();
179 v8
[all...]
/external/v8/test/cctest/
H A Dtest-decls.cc30 #include "src/v8.h"
35 using namespace v8;
45 // A DeclarationContext holds a reference to a v8::Context and keeps
66 v8::Handle<Value> value = Local<Value>());
73 virtual v8::Handle<Value> Get(Local<String> key);
74 virtual v8::Handle<Value> Set(Local<String> key, Local<Value> value);
75 virtual v8::Handle<Integer> Query(Local<String> key);
92 const v8::PropertyCallbackInfo<v8::Value>& info);
95 const v8
[all...]
H A Dtest-global-handles.cc32 using namespace v8::internal;
33 using v8::UniqueId;
52 class TestRetainedObjectInfo : public v8::RetainedObjectInfo {
63 virtual bool IsEquivalent(v8::RetainedObjectInfo* other) {
91 v8::HandleScope handle_scope(CcTest::isolate());
187 v8::HandleScope handle_scope(CcTest::isolate());
282 v8::HandleScope handle_scope(CcTest::isolate());
327 v8::Isolate* v8_isolate = reinterpret_cast<v8::Isolate*>(isolate);
333 v8
[all...]
/external/pdfium/fpdfsdk/src/javascript/
H A Dglobal.cpp171 return SetGlobalVariables(sPropName, JS_GLOBALDATA_TYPE_NUMBER, dData, false, "", v8::Local<v8::Object>(), FALSE);
177 return SetGlobalVariables(sPropName, JS_GLOBALDATA_TYPE_BOOLEAN, 0, bData, "", v8::Local<v8::Object>(), FALSE);
183 return SetGlobalVariables(sPropName, JS_GLOBALDATA_TYPE_STRING, 0, false, sData, v8::Local<v8::Object>(), FALSE);
193 return SetGlobalVariables(sPropName, JS_GLOBALDATA_TYPE_NULL, 0, false, "", v8::Local<v8::Object>(), FALSE);
228 v8::Local<v8
[all...]
/external/v8/src/arm/
H A Dinterface-descriptors-arm.h10 namespace v8 { namespace
24 } // namespace v8::internal
/external/v8/src/arm64/
H A Dinterface-descriptors-arm64.h10 namespace v8 { namespace
24 } // namespace v8::internal
/external/v8/src/compiler/
H A Dgraph-visualizer.h8 #include "src/v8.h"
10 namespace v8 { namespace
27 } // namespace v8::internal::compiler
H A Doperator.cc7 namespace v8 { namespace
26 } // namespace v8
H A Dverifier.h8 #include "src/v8.h"
10 namespace v8 { namespace
35 } // namespace v8::internal::compiler

Completed in 2035 milliseconds

1234567891011>>