| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_D8_H_ | 5 #ifndef V8_D8_H_ |
| 6 #define V8_D8_H_ | 6 #define V8_D8_H_ |
| 7 | 7 |
| 8 #ifndef V8_SHARED | 8 #ifndef V8_SHARED |
| 9 #include "src/allocation.h" | 9 #include "src/allocation.h" |
| 10 #include "src/hashmap.h" | 10 #include "src/hashmap.h" |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 Handle<Value> name, | 256 Handle<Value> name, |
| 257 bool print_result, | 257 bool print_result, |
| 258 bool report_exceptions); | 258 bool report_exceptions); |
| 259 static const char* ToCString(const v8::String::Utf8Value& value); | 259 static const char* ToCString(const v8::String::Utf8Value& value); |
| 260 static void ReportException(Isolate* isolate, TryCatch* try_catch); | 260 static void ReportException(Isolate* isolate, TryCatch* try_catch); |
| 261 static Handle<String> ReadFile(Isolate* isolate, const char* name); | 261 static Handle<String> ReadFile(Isolate* isolate, const char* name); |
| 262 static Local<Context> CreateEvaluationContext(Isolate* isolate); | 262 static Local<Context> CreateEvaluationContext(Isolate* isolate); |
| 263 static int RunMain(Isolate* isolate, int argc, char* argv[]); | 263 static int RunMain(Isolate* isolate, int argc, char* argv[]); |
| 264 static int Main(int argc, char* argv[]); | 264 static int Main(int argc, char* argv[]); |
| 265 static void Exit(int exit_code); | 265 static void Exit(int exit_code); |
| 266 static void OnExit(); | 266 static void OnExit(Isolate* isolate); |
| 267 | 267 |
| 268 #ifndef V8_SHARED | 268 #ifndef V8_SHARED |
| 269 static Handle<Array> GetCompletions(Isolate* isolate, | 269 static Handle<Array> GetCompletions(Isolate* isolate, |
| 270 Handle<String> text, | 270 Handle<String> text, |
| 271 Handle<String> full); | 271 Handle<String> full); |
| 272 static int* LookupCounter(const char* name); | 272 static int* LookupCounter(const char* name); |
| 273 static void* CreateHistogram(const char* name, | 273 static void* CreateHistogram(const char* name, |
| 274 int min, | 274 int min, |
| 275 int max, | 275 int max, |
| 276 size_t buckets); | 276 size_t buckets); |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 405 static void ExternalArrayWeakCallback(Isolate* isolate, | 405 static void ExternalArrayWeakCallback(Isolate* isolate, |
| 406 Persistent<Object>* object, | 406 Persistent<Object>* object, |
| 407 uint8_t* data); | 407 uint8_t* data); |
| 408 }; | 408 }; |
| 409 | 409 |
| 410 | 410 |
| 411 } // namespace v8 | 411 } // namespace v8 |
| 412 | 412 |
| 413 | 413 |
| 414 #endif // V8_D8_H_ | 414 #endif // V8_D8_H_ |
| OLD | NEW |