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

1 2 3 4 5 6 7 8 91011>>

  /external/v8/src/
v8-counters.h 1 // Copyright 2011 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 2012 the V8 project authors. All rights reserved.
28 #include "v8.h"
45 namespace v8 { namespace
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)
    [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);
83 } } // namespace v8::internal
zone.cc 1 // Copyright 2012 the V8 project authors. All rights reserved.
30 #include "v8.h"
33 namespace v8 { namespace
184 V8::FatalProcessOutOfMemory("Zone");
198 V8::FatalProcessOutOfMemory("Zone");
207 V8::FatalProcessOutOfMemory("Zone");
216 } } // namespace v8::internal
  /external/chromium_org/v8/src/
v8-counters.h 1 // Copyright 2012 the V8 project authors. All rights reserved.
36 namespace v8 { namespace
41 HT(gc_compactor, V8.GCCompactor) \
42 HT(gc_scavenger, V8.GCScavenger) \
43 HT(gc_context, V8.GCContext) /* GC context cleanup time */ \
45 HT(parse, V8.Parse) \
46 HT(parse_lazy, V8.ParseLazy) \
47 HT(pre_parse, V8.PreParse) \
49 HT(compile, V8.Compile) \
50 HT(compile_eval, V8.CompileEval)
    [all...]
v8.cc 1 // Copyright 2012 the V8 project authors. All rights reserved.
28 #include "v8.h"
48 namespace v8 { namespace
53 bool V8::is_running_ = false;
54 bool V8::has_been_set_up_ = false;
55 bool V8::has_been_disposed_ = false;
56 bool V8::has_fatal_error_ = false;
57 bool V8::use_crankshaft_ = true;
58 List<CallCompletedCallback>* V8::call_completed_callbacks_ = NULL;
59 v8::ArrayBuffer::Allocator* V8::array_buffer_allocator_ = NULL
    [all...]
zone.cc 1 // Copyright 2012 the V8 project authors. All rights reserved.
30 #include "v8.h"
33 namespace v8 { namespace
194 V8::FatalProcessOutOfMemory("Zone");
208 V8::FatalProcessOutOfMemory("Zone");
217 V8::FatalProcessOutOfMemory("Zone");
226 } } // namespace v8::internal
  /external/chromium_org/v8/tools/
v8-info.sh 2 # Copyright 2013 the V8 project authors. All rights reserved.
32 BASE_URL="https://code.google.com/p/v8/source/list"
39 V8="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
43 cd $V8
49 Fetches V8 revision information from a git-svn checkout.
54 -i Print revision info for all branches matching the V8 version.
56 Output format: [Git hash] [SVN revision] [V8 version]
58 -v Print the V8 version tag for a trunk SVN revision.
60 Output format: [V8 version]
62 -m Print all patches that were merged to the specified V8 branch
    [all...]
v8-rolls.sh 2 # Copyright 2013 the V8 project authors. All rights reserved.
33 INFO=tools/v8-info.sh
35 V8="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
43 Run in chromium/src to get information about V8 rolls.
48 -s Chromium git hash to start printing V8 information about.
84 cd $V8
  /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 2012 the V8 project authors. All rights reserved.
30 #include "v8.h"
35 using namespace v8::internal;
38 v8::internal::V8::Initialize(NULL);
  /external/chromium_org/third_party/WebKit/Source/web/
WebKit.cpp 38 #include "bindings/v8/V8Binding.h"
39 #include "bindings/v8/V8RecursionScope.h"
60 #include <v8.h>
103 v8::V8::SetEntropySource(&generateEntropy);
104 v8::V8::SetArrayBufferAllocator(WebCore::v8ArrayBufferAllocator());
106 v8::V8::SetFlagsFromString(kTypedArraysFlag, strlen(kTypedArraysFlag));
107 v8::V8::Initialize()
    [all...]
  /external/chromium_org/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 void Signal(const v8::FunctionCallbackInfo<v8::Value>& args) {
41 void TerminateCurrentThread(const v8::FunctionCallbackInfo<v8::Value>& args) {
42 CHECK(!v8::V8::IsExecutionTerminating());
43 v8::V8::TerminateExecution()
    [all...]
test-random.cc 1 // Copyright 2012 the V8 project authors. All rights reserved.
28 #include "v8.h"
36 using namespace v8::internal;
63 V8::FillHeapNumberWithRandom(*value, *context);
70 v8::V8::Initialize();
72 if (!V8::UseCrankshaft()) return;
73 v8::Isolate* isolate = v8::Isolate::GetCurrent();
74 v8::HandleScope scope(isolate)
    [all...]
test-ast.cc 1 // Copyright 2012 the V8 project authors. All rights reserved.
30 #include "v8.h"
35 using namespace v8::internal;
38 v8::internal::V8::Initialize(NULL);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8GCForContextDispose.cpp 32 #include "bindings/v8/V8GCForContextDispose.h"
47 v8::V8::ContextDisposedNotification();
74 v8::V8::IdleNotification(hint);
ScriptGCEvent.cpp 34 #include "bindings/v8/ScriptGCEvent.h"
35 #include "bindings/v8/V8Binding.h"
53 v8::V8::AddGCPrologueCallback(ScriptGCEvent::gcPrologueCallback);
54 v8::V8::AddGCEpilogueCallback(ScriptGCEvent::gcEpilogueCallback);
68 v8::V8::RemoveGCPrologueCallback(ScriptGCEvent::gcPrologueCallback);
69 v8::V8::RemoveGCEpilogueCallback(ScriptGCEvent::gcEpilogueCallback)
    [all...]
V8Initializer.cpp 27 #include "bindings/v8/V8Initializer.h"
33 #include "bindings/v8/DOMWrapperWorld.h"
34 #include "bindings/v8/ScriptCallStackFactory.h"
35 #include "bindings/v8/ScriptController.h"
36 #include "bindings/v8/ScriptProfiler.h"
37 #include "bindings/v8/V8Binding.h"
38 #include "bindings/v8/V8GCController.h"
39 #include "bindings/v8/V8HiddenPropertyName.h"
40 #include "bindings/v8/V8PerContextData.h"
49 #include <v8-debug.h
    [all...]
V8StringResource.h 29 #include <v8.h>
42 static WebCoreStringResourceBase* toWebCoreStringResourceBase(v8::Handle<v8::String>);
51 v8::V8::AdjustAmountOfExternalAllocatedMemory(memoryConsumption(string));
62 v8::V8::AdjustAmountOfExternalAllocatedMemory(memoryConsumption(string));
73 v8::V8::AdjustAmountOfExternalAllocatedMemory(reducedExternalMemory);
87 v8::V8::AdjustAmountOfExternalAllocatedMemory(memoryConsumption(m_atomicString.string()))
    [all...]
  /external/chromium_org/webkit/glue/
webkit_glue.cc 9 #include "v8/include/v8.h"
14 v8::V8::SetFlagsFromString(str.data(), static_cast<int>(str.size()));
  /external/v8/
Android.mk 22 $(warning WARNING: Building on ARM with non-ARMv7 variant. On ARM, V8 is well tested only on ARMv7.)
  /external/chromium_org/chrome/browser/ui/android/
android_about_app_info.cc 11 #include "v8/include/v8.h"
48 std::string js_version(v8::V8::GetVersion());
49 std::string js_engine = "V8";
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
Pattern.cpp 31 #include <v8.h>
51 v8::V8::AdjustAmountOfExternalAllocatedMemory(-m_externalMemoryAllocated);
90 v8::V8::AdjustAmountOfExternalAllocatedMemory(m_externalMemoryAllocated);
  /external/chromium_org/chrome/common/
profiling.cc 16 #include "v8/include/v8.h"
23 void JitCodeEventHandler(const v8::JitCodeEvent* event) {
30 case v8::JitCodeEvent::CODE_ADDED:
35 case v8::JitCodeEvent::CODE_MOVED:
131 // Establish the V8 profiling hooks if we're an instrumented binary.
137 v8::V8::SetReturnAddressLocationResolver(resolve_func);
143 // V8 profiling?
149 v8::Isolate* isolate = v8::Isolate::GetCurrent()
    [all...]
  /external/v8/test/mjsunit/
fast-element-smi-check.js 1 // Copyright 2011 the V8 project authors. All rights reserved.
49 gc(); // Makes V8 forget about type information for test_load_set_smi.
70 gc(); // Makes V8 forget about type information for test_load_set_smi.

Completed in 328 milliseconds

1 2 3 4 5 6 7 8 91011>>