Home | History | Annotate | Download | only in cctest

Lines Matching full:local1

3417     Local<String> local1 = Local<String>::New(isolate, global1);
3420 CHECK_EQ(global1 == local1, true);
3421 CHECK_EQ(global1 != local1, false);
3422 CHECK_EQ(local1 == global1, true);
3423 CHECK_EQ(local1 != global1, false);
3430 CHECK_EQ(local1 == local2, false);
3431 CHECK_EQ(local1 != local2, true);
3434 CHECK_EQ(local1 == anotherLocal1, true);
3435 CHECK_EQ(local1 != anotherLocal1, false);