Searched defs:the_hole (Results 1 - 11 of 11) sorted by relevance
/external/chromium_org/v8/src/ |
H A D | elements.cc | 368 Object* the_hole = from->GetHeap()->the_hole_value(); local 372 if (hole_or_smi == the_hole) { 441 Object* the_hole = from->GetHeap()->the_hole_value(); local 445 if (hole_or_object == the_hole) {
|
H A D | api.cc | 2108 i::Object* the_hole = isolate_->heap()->the_hole_value(); local 2109 exception_ = the_hole; 2110 message_obj_ = the_hole; 2111 message_script_ = the_hole;
|
H A D | objects-inl.h | 1274 Object* the_hole = GetHeap()->the_hole_value(); local 1278 if (!candidate->IsSmi() && candidate != the_hole) return false; 1444 Object* the_hole = heap->the_hole_value(); local 1447 if (current == the_hole) {
|
H A D | objects.cc | 11623 Object* the_hole = GetHeap()->the_hole_value(); local 11626 data[i] = the_hole; 14614 // Split elements into defined and the_hole, in that order. 14643 // Split elements into defined, undefined and the_hole, in that order. Only
|
/external/chromium_org/v8/src/ia32/ |
H A D | stub-cache-ia32.cc | 856 Handle<Oddball> the_hole = masm->isolate()->factory()->the_hole_value(); local 860 Immediate(the_hole)); 862 __ cmp(Operand::ForCell(cell), Immediate(the_hole));
|
/external/v8/src/ia32/ |
H A D | stub-cache-ia32.cc | 838 Handle<Oddball> the_hole = masm->isolate()->factory()->the_hole_value(); local 842 Immediate(the_hole)); 844 __ cmp(Operand::Cell(cell), Immediate(the_hole));
|
H A D | code-stubs-ia32.cc | 6843 Label the_hole; local 6846 __ j(equal, &the_hole, Label::kNear); 6853 __ bind(&the_hole);
|
/external/v8/src/arm/ |
H A D | code-stubs-arm.cc | 6877 Label the_hole; local 6879 __ b(eq, &the_hole); 6888 __ bind(&the_hole);
|
/external/v8/src/mips/ |
H A D | code-stubs-mips.cc | 7140 Label the_hole; local 7141 __ Branch(&the_hole, eq, entity_name, Operand(tmp)); 7150 __ bind(&the_hole);
|
/external/v8/src/x64/ |
H A D | code-stubs-x64.cc | 5816 Label the_hole; local 5819 __ j(equal, &the_hole, Label::kNear); 5827 __ bind(&the_hole);
|
/external/v8/src/ |
H A D | objects-inl.h | 1223 Object* the_hole = GetHeap()->the_hole_value(); local 1227 if (!candidate->IsSmi() && candidate != the_hole) return false; 1281 Object* the_hole = heap->the_hole_value(); local 1285 if (!current->IsSmi() && current != the_hole) {
|
Completed in 1195 milliseconds