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"
25 namespace v8 {
35 v8::Platform* V8::platform_ = NULL;
38 bool V8::Initialize() {
44 void V8::TearDown() {
55 void V8::InitializeOncePerProcessImpl() {
88 void V8::InitializeOncePerProcess() {
93 void V8::InitializePlatform(v8::Platform* platform) {
97 v8::tracing::TracingCategoryObserver::SetUp();
101 void V8::ShutdownPlatform() {
103 v8::tracing::TracingCategoryObserver::TearDown();
108 v8::Platform* V8::GetCurrentPlatform() {
114 void V8::SetPlatformForTesting(v8::Platform* platform) { platform_ = platform; }
117 void V8::SetNativesBlob(StartupData* natives_blob) {
126 void V8::SetSnapshotBlob(StartupData* snapshot_blob) {
134 } // namespace v8