Lines Matching refs:Lookup
54 CHECK_EQ(table->Lookup(a), *b);
55 // When the key does not exist in the map, Lookup returns the hole.
56 CHECK_EQ(table->Lookup(b), CcTest::heap()->the_hole_value());
61 CHECK_EQ(table->Lookup(a), *b);
62 CHECK_EQ(table->Lookup(b), CcTest::heap()->the_hole_value());
67 CHECK_NE(table->Lookup(a), *b);
74 CHECK_EQ(table->Lookup(a), CcTest::heap()->the_hole_value());
84 CHECK_EQ(table->Lookup(key), *value);
94 CHECK_EQ(table->Lookup(key), CcTest::heap()->the_hole_value());
102 CHECK_EQ(table->Lookup(key), CcTest::heap()->the_hole_value());
126 return Smi::cast(Lookup(key_obj))->value();
212 // Calling Lookup() should not cause GC ever.
213 CHECK(table->Lookup(key)->IsTheHole(isolate));