Searched refs:V8 (Results 1 - 25 of 113) sorted by relevance

12345

/external/v8/src/
H A Dv8-counters.h1 // Copyright 2011 the V8 project authors. All rights reserved.
40 HT(gc_compactor, V8.GCCompactor) \
41 HT(gc_scavenger, V8.GCScavenger) \
42 HT(gc_context, V8.GCContext) /* GC context cleanup time */ \
44 HT(parse, V8.Parse) \
45 HT(parse_lazy, V8.ParseLazy) \
46 HT(pre_parse, V8.PreParse) \
48 HT(compile, V8.Compile) \
49 HT(compile_eval, V8.CompileEval) \
50 HT(compile_lazy, V8
[all...]
H A Dv8.cc1 // Copyright 2012 the V8 project authors. All rights reserved.
50 bool V8::is_running_ = false;
51 bool V8::has_been_set_up_ = false;
52 bool V8::has_been_disposed_ = false;
53 bool V8::has_fatal_error_ = false;
54 bool V8::use_crankshaft_ = true;
55 List<CallCompletedCallback>* V8::call_completed_callbacks_ = NULL;
62 bool V8::Initialize(Deserializer* des) {
95 void V8::SetFatalError() {
101 void V8
[all...]
H A Dsnapshot-common.cc1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
43 return V8::Initialize(&deserializer);
H A Dzone.cc1 // Copyright 2012 the V8 project authors. All rights reserved.
184 V8::FatalProcessOutOfMemory("Zone");
198 V8::FatalProcessOutOfMemory("Zone");
207 V8::FatalProcessOutOfMemory("Zone");
H A Dv8.h1 // Copyright 2011 the V8 project authors. All rights reserved.
29 // Top include for all V8 .cc files.
38 // V8 only uses DEBUG and whenever it is set we are building a debug
39 // version of V8. We do not use NDEBUG and simply undef it here for
45 // V8 only uses DEBUG, but included external files
74 class V8 : public AllStatic { class in namespace:v8::internal
124 // True if V8 has ever been run
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptGCEvent.cpp50 v8::V8::AddGCPrologueCallback(ScriptGCEvent::gcPrologueCallback);
51 v8::V8::AddGCEpilogueCallback(ScriptGCEvent::gcEpilogueCallback);
64 v8::V8::RemoveGCPrologueCallback(ScriptGCEvent::gcPrologueCallback);
65 v8::V8::RemoveGCEpilogueCallback(ScriptGCEvent::gcEpilogueCallback);
72 v8::V8::GetHeapStatistics(&heapStatistics);
81 v8::V8::GetHeapStatistics(&heapStatistics);
H A DV8GCForContextDispose.cpp45 v8::V8::ContextDisposedNotification();
69 v8::V8::IdleNotification();
H A DWorkerScriptController.cpp88 v8::V8::TerminateExecution();
H A DWorkerContextExecutionProxy.cpp58 // FIXME: We temporarily deal with V8 internal error situations such as out-of-memory by crashing the worker.
118 // Tell V8 not to call the default OOM handler, binding code will handle it.
119 v8::V8::IgnoreOutOfMemoryException();
120 v8::V8::SetFatalErrorHandler(reportFatalErrorInV8);
140 v8::V8::AddMessageListener(&v8MessageHandler);
257 // Handle V8 internal error situation (Out-of-memory).
/external/v8/test/cctest/
H A Dtest-thread-termination.cc1 // Copyright 2009 the V8 project authors. All rights reserved.
43 CHECK(!v8::V8::IsExecutionTerminating());
44 v8::V8::TerminateExecution();
56 CHECK(!v8::V8::IsExecutionTerminating());
61 CHECK(v8::V8::IsExecutionTerminating());
68 CHECK(!v8::V8::IsExecutionTerminating());
86 CHECK(v8::V8::IsExecutionTerminating());
93 CHECK(!v8::V8::IsExecutionTerminating());
103 CHECK(v8::V8::IsExecutionTerminating());
129 CHECK(!v8::V8
[all...]
H A Dtest-ast.cc1 // Copyright 2012 the V8 project authors. All rights reserved.
38 v8::internal::V8::Initialize(NULL);
H A Dtest-random.cc1 // Copyright 2012 the V8 project authors. All rights reserved.
66 V8::FillHeapNumberWithRandom(*value, *context);
75 if (!V8::UseCrankshaft()) return;
H A Dtest-log.cc1 // Copyright 2006-2009 the V8 project authors. All rights reserved.
102 if (!i::V8::UseCrankshaft()) return;
107 v8::V8::ResumeProfiler();
113 v8::V8::PauseProfiler();
118 v8::V8::ResumeProfiler();
124 v8::V8::PauseProfiler();
194 v8_thread_id_ = v8::V8::GetCurrentThreadId();
240 // Now thread has V8's id, but will not run VM code.
478 // This test needs to be run on a "clean" V8 to ensure that snapshot log
482 // are using V8
[all...]
H A Dtest-threads.cc1 // Copyright 2008 the V8 project authors. All rights reserved.
38 v8::V8::Initialize();
127 v8::V8::Initialize();
H A Dtest-regexp.cc1 // Copyright 2008 the V8 project authors. All rights reserved.
73 V8::Initialize(NULL);
83 V8::Initialize(NULL);
96 V8::Initialize(NULL);
114 V8::Initialize(NULL);
140 V8::Initialize(NULL);
386 V8::Initialize(NULL);
400 V8::Initialize(NULL);
486 v8::internal::V8::Initialize(NULL);
498 V8
[all...]
H A Dtest-deoptimization.cc1 // Copyright 2012 the V8 project authors. All rights reserved.
366 CHECK(!i::V8::UseCrankshaft() ||
418 CHECK(!i::V8::UseCrankshaft() ||
516 CHECK(!i::V8::UseCrankshaft() ||
586 if (i::V8::UseCrankshaft()) {
670 if (i::V8::UseCrankshaft()) {
H A Dtest-serialize.cc1 // Copyright 2007-2010 the V8 project authors. All rights reserved.
104 v8::V8::Initialize();
141 v8::V8::Initialize();
254 v8::V8::Initialize();
262 v8::V8::Initialize();
352 v8::V8::Initialize();
475 v8::V8::Initialize();
559 v8::V8::Initialize();
/external/webkit/Source/WebCore/bridge/jni/
H A DJavaType.h56 #if USE(V8)
66 // currently used only with V8.
H A DJavaString.h36 #elif USE(V8)
H A DJNIUtility.cpp193 #if USE(V8)
213 #if USE(V8)
306 #if USE(V8)
362 #if USE(V8)
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DMemoryUsage.cpp42 v8::V8::GetHeapStatistics(&stat);
/external/v8/
H A DAndroid.mk22 $(warning WARNING: Building on ARM with non-ARMv7 variant. On ARM, V8 is well tested only on ARMv7.)
/external/webkit/Source/WebKit/chromium/src/
H A DWebBindings.cpp37 #if USE(V8)
128 #if USE(V8)
177 #if USE(V8)
203 #if USE(V8)
274 #if USE(V8)
284 #if USE(V8)
294 #if USE(V8)
304 #if USE(V8)
314 #if USE(V8)
/external/webkit/Source/WebCore/
H A DAndroid.derived.v8bindings.mk71 $(GEN): PRIVATE_CUSTOM_TOOL = SOURCE_ROOT=$(PRIVATE_PATH) perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator V8 --include css --include dom --include html --outputdir $(dir $@) $<
72 $(GEN): $(intermediates)/bindings/V8%.h : $(LOCAL_PATH)/css/%.idl $(js_binding_scripts)
140 $(GEN): PRIVATE_CUSTOM_TOOL = SOURCE_ROOT=$(PRIVATE_PATH) perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator V8 --include dom --include html --outputdir $(dir $@) $<
141 $(GEN): $(intermediates)/bindings/V8%.h : $(LOCAL_PATH)/dom/%.idl $(js_binding_scripts)
183 $(GEN): PRIVATE_CUSTOM_TOOL = SOURCE_ROOT=$(PRIVATE_PATH) perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator V8 --include dom --include html --include fileapi --outputdir $(dir $@) $<
184 $(GEN): $(intermediates)/bindings/V8%.h : $(LOCAL_PATH)/fileapi/%.idl $(js_binding_scripts)
284 $(GEN): PRIVATE_CUSTOM_TOOL = SOURCE_ROOT=$(PRIVATE_PATH) perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator V8 --include dom --include html --outputdir $(dir $@) $<
285 $(GEN): $(intermediates)/bindings/V8%.h : $(LOCAL_PATH)/html/%.idl $(js_binding_scripts)
326 $(GEN): PRIVATE_CUSTOM_TOOL = SOURCE_ROOT=$(PRIVATE_PATH) perl -I$(PRIVATE_PATH)/bindings/scripts $(PRIVATE_PATH)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator V8 --include dom --include html --include html/canvas --outputdir $(dir $@) $<
327 $(GEN): $(intermediates)/bindings/V8
[all...]
/external/llvm/unittests/Support/
H A DAlignOfTest.cpp73 struct V8 : V5, virtual V6, V7 { double zz; virtual ~V8(); }; struct in namespace:__anon9262
123 [AlignOf<V8>::Alignment > 0];
173 EXPECT_LE(alignOf<V1>(), alignOf<V8>());
257 // appears to be benign: alignOf<V8>() produces a preposterous value: 12
259 EXPECT_EQ(alignOf<V8>(), alignOf<AlignedCharArrayUnion<V8> >());
322 // benign: sizeof(V8) is only 52 bytes, but our array reserves 56.
324 EXPECT_EQ(sizeof(V8), sizeof(AlignedCharArrayUnion<V8>));
[all...]

Completed in 604 milliseconds

12345