/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
|
/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" 51 namespace v8 { namespace 56 List<CallCompletedCallback>* V8::call_completed_callbacks_ = NULL; 57 v8::ArrayBuffer::Allocator* V8::array_buffer_allocator_ = NULL; 58 v8::Platform* V8::platform_ = NULL; 61 bool V8::Initialize(Deserializer* des) { 86 void V8::TearDown() [all...] |
zone.cc | 1 // Copyright 2012 the V8 project authors. All rights reserved. 30 #include "v8.h" 33 namespace v8 { namespace 196 V8::FatalProcessOutOfMemory("Zone"); 209 V8::FatalProcessOutOfMemory("Zone"); 214 V8::FatalProcessOutOfMemory("Zone"); 226 V8::FatalProcessOutOfMemory("Zone"); 235 } } // 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/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(args.GetIsolate())); 43 v8::V8::TerminateExecution(args.GetIsolate()) [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/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...] |
/external/chromium_org/gin/ |
isolate_holder.cc | 39 v8::V8::SetArrayBufferAllocator(ArrayBufferAllocator::SharedInstance()); 41 v8::V8::SetFlagsFromString(v8_flags, sizeof(v8_flags) - 1); 42 v8::V8::SetEntropySource(&GenerateEntropy); 43 v8::V8::Initialize(); 51 isolate_ = v8::Isolate::New(); 52 v8::ResourceConstraints constraints [all...] |
/external/chromium_org/third_party/WebKit/Source/web/ |
WebKit.cpp | 37 #include "bindings/v8/V8Binding.h" 38 #include "bindings/v8/V8Initializer.h" 39 #include "bindings/v8/V8RecursionScope.h" 58 #include <v8.h> 101 v8::Isolate* isolate = v8::Isolate::GetCurrent(); 103 v8::V8::SetEntropySource(&generateEntropy); 104 v8::V8::SetArrayBufferAllocator(WebCore::v8ArrayBufferAllocator()) [all...] |
/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" 34 #include "bindings/v8/DOMWrapperWorld.h" 35 #include "bindings/v8/ScriptCallStackFactory.h" 36 #include "bindings/v8/ScriptController.h" 37 #include "bindings/v8/ScriptProfiler.h" 38 #include "bindings/v8/V8Binding.h" 39 #include "bindings/v8/V8ErrorHandler.h" 40 #include "bindings/v8/V8GCController.h" 41 #include "bindings/v8/V8HiddenPropertyName.h" 42 #include "bindings/v8/V8PerContextData.h [all...] |
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-347909.js | 1 // Copyright 2014 the V8 project authors. All rights reserved.
|
regress-crbug-345715.js | 1 // Copyright 2014 the V8 project authors. All rights reserved.
|
regress-3176.js | 1 // Copyright 2014 the V8 project authors. All rights reserved.
|
regress-crbug-344186.js | 1 // Copyright 2014 the V8 project authors. All rights reserved.
|
regress-crbug-349079.js | 1 // Copyright 2014 the V8 project authors. All rights reserved.
|
/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/v8/src/extensions/ |
free-buffer-extension.cc | 1 // Copyright 2013 the V8 project authors. All rights reserved. 30 #include "v8.h" 32 namespace v8 { namespace 36 v8::Handle<v8::FunctionTemplate> FreeBufferExtension::GetNativeFunctionTemplate( 37 v8::Isolate* isolate, 38 v8::Handle<v8::String> str) { 39 return v8::FunctionTemplate::New(FreeBufferExtension::FreeBuffer); 44 const v8::FunctionCallbackInfo<v8::Value>& args) [all...] |