HomeSort by relevance Sort by last modified time
    Searched refs:V8 (Results 1 - 25 of 813) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/v8/src/
v8-counters.h 1 // Copyright 2010 the V8 project authors. All rights reserved.
35 namespace v8 { namespace
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)
    [all...]
v8.cc 1 // Copyright 2011 the V8 project authors. All rights reserved.
28 #include "v8.h"
41 namespace v8 { namespace
47 bool V8::is_running_ = false;
48 bool V8::has_been_setup_ = false;
49 bool V8::has_been_disposed_ = false;
50 bool V8::has_fatal_error_ = false;
51 bool V8::use_crankshaft_ = true;
54 bool V8::Initialize(Deserializer* des) {
85 void V8::SetFatalError()
    [all...]
snapshot-common.cc 1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
30 #include "v8.h"
37 namespace v8 { namespace
43 return V8::Initialize(&deserializer);
82 } } // namespace v8::internal
v8.h 1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
29 // Top include for all V8 .cc files.
38 // If both are defined in Google3, then we are building an optimized v8 with
42 // If neither is defined in Google3, then we are building a debug v8. Mark it
48 // V8 only uses DEBUG, but included external files
55 #include "../include/v8.h"
70 namespace v8 { namespace
75 class V8 : public AllStatic {
114 // True if V8 has ever been run
126 } } // namespace v8::interna
    [all...]
log-utils.h 1 // Copyright 2006-2009 the V8 project authors. All rights reserved.
31 namespace v8 { namespace
106 // See description in include/v8.h.
115 static const int kMessageBufferSize = v8::V8::kMinimumSizeForLogLinesBuffer;
227 } } // namespace v8::internal
  /external/webkit/Source/WebKit/android/WebCoreSupport/
MemoryUsage.cpp 32 #if USE(V8)
33 #include <v8.h>
34 #endif // USE(V8)
62 #if USE(V8)
63 v8::HeapStatistics stat;
64 v8::V8::GetHeapStatistics(&stat);
67 #endif // USE(V8)
V8Counters.cpp 39 #if USE(V8)
86 v8::V8::SetCounterFunction(counterForName);
87 v8::V8::SetCreateHistogramFunction(createHistogram);
88 v8::V8::SetAddHistogramSampleFunction(addHistogramSample);
116 #endif // USE(V8)
V8Counters.h 29 #if USE(V8)
34 #include <v8.h>
41 // Counter callbacks, see v8.h
76 #endif // USE(V8)
  /external/webkit/Source/WebCore/bindings/v8/
ScriptGCEvent.cpp 50 v8::V8::AddGCPrologueCallback(ScriptGCEvent::gcPrologueCallback);
51 v8::V8::AddGCEpilogueCallback(ScriptGCEvent::gcEpilogueCallback);
64 v8::V8::RemoveGCPrologueCallback(ScriptGCEvent::gcPrologueCallback);
65 v8::V8::RemoveGCEpilogueCallback(ScriptGCEvent::gcEpilogueCallback);
71 v8::HeapStatistics heapStatistics;
72 v8::V8::GetHeapStatistics(&heapStatistics)
    [all...]
V8GCForContextDispose.cpp 45 v8::V8::ContextDisposedNotification();
69 v8::V8::IdleNotification();
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();
  /external/v8/test/cctest/
test-thread-termination.cc 1 // Copyright 2009 the V8 project authors. All rights reserved.
28 #include "v8.h"
33 v8::internal::Semaphore* semaphore = NULL;
36 v8::Handle<v8::Value> Signal(const v8::Arguments& args) {
38 return v8::Undefined();
42 v8::Handle<v8::Value> TerminateCurrentThread(const v8::Arguments& args)
    [all...]
test-ast.cc 1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
30 #include "v8.h"
35 using namespace v8::internal;
38 v8::internal::V8::Initialize(NULL);
test-threads.cc 1 // Copyright 2008 the V8 project authors. All rights reserved.
28 #include "v8.h"
37 v8::Locker locker;
38 v8::V8::Initialize();
39 v8::HandleScope scope;
40 v8::Context::Scope context_scope(v8::Context::New());
42 v8::Locker::StartPreemption(100);
44 v8::Handle<v8::Script> script = v8::Script::Compile
    [all...]
  /external/webkit/Source/WebCore/bridge/jni/
JavaType.h 56 #if USE(V8)
66 // currently used only with V8.
JavaString.h 36 #elif USE(V8)
JavaMethodJobject.cpp 134 #if USE(V8)
151 #if USE(V8)
  /external/v8/src/mips/
cpu-mips.cc 1 // Copyright 2010 the V8 project authors. All rights reserved.
37 #include "v8.h"
46 namespace v8 { namespace
54 V8::DisableCrankshaft();
88 } } // namespace v8::internal
  /external/webkit/LayoutTests/fast/js/resources/
script-line-number.js 11 // V8
  /external/webkit/Source/WebKit/chromium/src/
WebBindings.cpp 37 #if USE(V8)
128 #if USE(V8)
177 #if USE(V8)
203 #if USE(V8)
211 v8::Handle<v8::Object> v8Object(v8NPObject->v8Object);
229 v8::Handle<v8::Object> v8Object(v8NPObject->v8Object);
240 v8::HandleScope handleScope;
241 v8::Handle<v8::Array> result = v8::Array::New(data.size())
    [all...]
  /external/webkit/Source/WebCore/
Android.derived.v8bindings.mk 71 $(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)
325 $(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 $@) $<
326 $(GEN): $(intermediates)/bindings/V8%.h : $(LOCAL_PATH)/html/canvas/%.idl $(js_binding_scripts
    [all...]
  /external/v8/test/mjsunit/
string-split.js 1 // Copyright 2008 the V8 project authors. All rights reserved.
76 * V8: a,,b
88 * V8: a,b
93 // For issue http://code.google.com/p/v8/issues/detail?id=924
102 // Issue http://code.google.com/p/v8/issues/detail?id=929
  /external/v8/tools/
logreader.js 1 // Copyright 2009 the V8 project authors. All rights reserved.
29 * @fileoverview Log Reader is used to process log file produced by V8.
71 * Processes a portion of V8 profiler event log.
81 * Processes a line of V8 profiler event log.
  /external/v8/test/mjsunit/regress/
regress-r3391.js 1 // Copyright 2009 the V8 project authors. All rights reserved.
30 // vague on this point. This test is now passed by both V8 and JSC.
  /external/v8/test/mozilla/
mozilla-shell-emulation.js 1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
29 // necessary to run the tests in V8.

Completed in 330 milliseconds

1 2 3 4 5 6 7 8 91011>>