Home | History | Annotate | Download | only in extensions

Lines Matching refs:v8

1 // Copyright 2013 the V8 project authors. All rights reserved.
6 #include "src/v8.h"
8 namespace v8 {
18 v8::Handle<v8::FunctionTemplate>
20 v8::Isolate* isolate,
21 v8::Handle<v8::String> str) {
22 if (strcmp(*v8::String::Utf8Value(str), "triggerCheckFalse") == 0) {
23 return v8::FunctionTemplate::New(
26 } else if (strcmp(*v8::String::Utf8Value(str), "triggerAssertFalse") == 0) {
27 return v8::FunctionTemplate::New(
31 CHECK_EQ(0, strcmp(*v8::String::Utf8Value(str), "triggerSlowAssertFalse"));
32 return v8::FunctionTemplate::New(
40 const v8::FunctionCallbackInfo<v8::Value>& args) {
46 const v8::FunctionCallbackInfo<v8::Value>& args) {
52 const v8::FunctionCallbackInfo<v8::Value>& args) {
56 } } // namespace v8::internal