Searched refs:null_value (Results 1 - 25 of 70) sorted by relevance

123

/external/v8/test/mjsunit/es6/
H A Ddebug-stepnext-for.js15 var null_value = null; variable
23 for (var i in null_value) { // Break c
27 for (j in null_value) { // Break d
/external/v8/src/
H A Dprototype.h22 * The PrototypeIterator can either run to the null_value(), the first
100 object_ = isolate_->heap()->null_value();
104 handle_ = isolate_->factory()->null_value();
132 handle_ = isolate_->factory()->null_value();
H A Dmessages.cc199 if (!IsJavaScript()) return isolate_->factory()->null_value();
201 if (!script->IsScript()) return isolate_->factory()->null_value();
220 return isolate_->factory()->null_value();
224 if (!IsJavaScript()) return isolate_->factory()->null_value();
226 if (!script_obj->IsScript()) return isolate_->factory()->null_value();
254 return isolate_->factory()->null_value();
259 return isolate_->factory()->null_value();
298 if (!result.is_null()) return isolate_->factory()->null_value();
304 return isolate_->factory()->null_value();
H A Daccessors.cc885 return isolate->factory()->null_value();
908 ? Handle<Object>::cast(isolate->factory()->null_value())
1041 result = isolate->factory()->null_value();
H A Dbootstrapper.cc356 global_proxy->set_native_context(*factory->null_value());
357 SetObjectPrototype(global_proxy, factory->null_value());
358 global_proxy->map()->SetConstructor(*factory->null_value());
591 isolate->factory()->null_value());
1882 factory->null_value());
2968 isolate()->factory()->null_value());
/external/libchrome/base/json/
H A Djson_value_serializer_unittest.cc228 Value* null_value = NULL; local
229 ASSERT_TRUE(root_dict->Get("null", &null_value));
230 ASSERT_TRUE(null_value);
231 ASSERT_TRUE(null_value->IsType(Value::TYPE_NULL));
427 Value* null_value = NULL; local
428 ASSERT_TRUE(root_dict->Get("null", &null_value));
429 ASSERT_TRUE(null_value);
430 ASSERT_TRUE(null_value->IsType(Value::TYPE_NULL));
/external/llvm/unittests/IR/
H A DValueHandleTest.cpp97 Value *null_value = nullptr; local
98 EXPECT_EQ(null_value, WVH);
99 EXPECT_EQ(null_value, WVH_Copy);
100 EXPECT_EQ(null_value, WVH_Recreated);
/external/v8/src/compiler/
H A Djs-graph.cc87 return CACHED(kNullConstant, HeapConstant(factory()->null_value()));
/external/v8/src/interpreter/
H A Dinterpreter.cc327 Node* null_value = __ HeapConstant(isolate_->factory()->null_value()); local
328 __ SetAccumulator(null_value);
1333 Node* null_value = __ HeapConstant(isolate_->factory()->null_value()); local
1335 __ JumpIfWordEqual(accumulator, null_value, relative_jump);
1344 Node* null_value = __ HeapConstant(isolate_->factory()->null_value()); local
1348 __ JumpIfWordEqual(accumulator, null_value, relative_jump);
/external/v8/test/cctest/compiler/
H A Dtest-js-constant-cache.cc264 CHECK_EQ(T.NullConstant(), T.Constant(T.factory()->null_value()));
276 CHECK_EQ(*T.factory()->null_value(), *T.handle(T.NullConstant()));
H A Dfunction-tester.h187 Handle<Object> null() { return isolate->factory()->null_value(); }
/external/v8/test/unittests/compiler/
H A Dsimplified-operator-reducer-unittest.cc364 factory()->empty_string(), factory()->null_value(),
437 factory()->empty_string(), factory()->null_value(),
/external/v8/src/ast/
H A Dast-value-factory.cc197 value_ = isolate->factory()->null_value();
H A Dast-value-factory.h281 F(null_value) \
/external/v8/src/runtime/
H A Druntime-liveedit.cc99 return isolate->heap()->null_value();
H A Druntime-object.cc736 if (!obj->IsJSReceiver()) return isolate->heap()->null_value();
756 isolate->factory()->null_value(), attrs));
775 JSObject::DefineAccessor(object, name, isolate->factory()->null_value(),
H A Druntime-classes.cc95 prototype_parent = isolate->factory()->null_value();
H A Druntime-debug.cc1554 return handle(isolate->heap()->null_value(), isolate);
1617 return isolate->heap()->null_value();
1633 return isolate->heap()->null_value();
1681 return isolate->heap()->null_value();
H A Druntime-regexp.cc977 return isolate->heap()->null_value(); // No matches at all.
/external/v8/test/cctest/interpreter/
H A Dtest-interpreter-intrinsics.cc41 Handle<Object> Null() { return factory_->null_value(); }
H A Dtest-interpreter.cc58 Handle<Object> null_value = handles.main_isolate()->factory()->null_value(); local
68 CHECK(return_val.is_identical_to(null_value));
1503 } else if (obj->SameValue(*factory->null_value())) {
1524 std::make_pair(factory->null_value(), true),
1646 factory->null_value()),
1727 factory->null_value()),
/external/v8/src/full-codegen/ia32/
H A Dfull-codegen-ia32.cc948 __ cmp(eax, isolate()->factory()->null_value());
1298 PushOperand(isolate()->factory()->null_value());
2738 __ mov(eax, isolate()->factory()->null_value());
3376 __ cmp(eax, isolate()->factory()->null_value());
3394 __ cmp(eax, isolate()->factory()->null_value());
3508 ? isolate()->factory()->null_value()
/external/v8/src/full-codegen/x87/
H A Dfull-codegen-x87.cc940 __ cmp(eax, isolate()->factory()->null_value());
1290 PushOperand(isolate()->factory()->null_value());
2730 __ mov(eax, isolate()->factory()->null_value());
3368 __ cmp(eax, isolate()->factory()->null_value());
3386 __ cmp(eax, isolate()->factory()->null_value());
3500 ? isolate()->factory()->null_value()
/external/v8/src/ia32/
H A Dmacro-assembler-ia32.cc1335 cmp(scratch2, isolate()->factory()->null_value());
3363 cmp(ecx, isolate()->factory()->null_value());
3423 cmp(current, Immediate(factory->null_value()));
3438 cmp(current, Immediate(factory->null_value()));
/external/v8/src/ic/
H A Dhandler-compiler.cc155 DCHECK(last_map->prototype() == isolate()->heap()->null_value());

Completed in 783 milliseconds

123