Home | History | Annotate | Download | only in src

Lines Matching refs:V8

1 // Copyright 2012 the V8 project authors. All rights reserved.
5 #include "src/v8.h"
26 namespace v8 {
36 v8::Platform* V8::platform_ = NULL;
39 bool V8::Initialize() {
45 void V8::TearDown() {
56 void V8::InitializeOncePerProcessImpl() {
89 void V8::InitializeOncePerProcess() {
94 void V8::InitializePlatform(v8::Platform* platform) {
98 v8::tracing::TracingCategoryObserver::SetUp();
102 void V8::ShutdownPlatform() {
104 v8::tracing::TracingCategoryObserver::TearDown();
109 v8::Platform* V8::GetCurrentPlatform() {
115 void V8::SetPlatformForTesting(v8::Platform* platform) { platform_ = platform; }
118 void V8::SetNativesBlob(StartupData* natives_blob) {
127 void V8::SetSnapshotBlob(StartupData* snapshot_blob) {
135 } // namespace v8