Home
last modified time | relevance | path

Searched refs:null_value (Results 1 – 25 of 34) sorted by relevance

12

/external/chromium/chrome/common/
Djson_value_serializer_unittest.cc29 Value* null_value = NULL; in TEST() local
30 ASSERT_TRUE(root_dict->Get("null", &null_value)); in TEST()
31 ASSERT_TRUE(null_value); in TEST()
32 ASSERT_TRUE(null_value->IsType(Value::TYPE_NULL)); in TEST()
267 Value* null_value = NULL; in TEST_F() local
268 ASSERT_TRUE(root_dict->Get("null", &null_value)); in TEST_F()
269 ASSERT_TRUE(null_value); in TEST_F()
270 ASSERT_TRUE(null_value->IsType(Value::TYPE_NULL)); in TEST_F()
/external/llvm/unittests/Support/
DValueHandleTest.cpp101 Value *null_value = NULL; in TEST_F() local
102 EXPECT_EQ(null_value, WVH); in TEST_F()
103 EXPECT_EQ(null_value, WVH_Copy); in TEST_F()
104 EXPECT_EQ(null_value, WVH_Recreated); in TEST_F()
/external/chromium/chrome/browser/sync/glue/
Dpreference_model_associator_unittest.cc98 scoped_ptr<Value> null_value(Value::CreateNullValue()); in TEST_F() local
108 PreferenceModelAssociator::MergePreference(*pref, *null_value)); in TEST_F()
223 scoped_ptr<Value> null_value(Value::CreateNullValue()); in TEST_F() local
233 PreferenceModelAssociator::MergePreference(*pref, *null_value)); in TEST_F()
/external/v8/src/
Daccessors.cc47 if (obj == heap->null_value()) return NULL; in FindInPrototypeChain()
653 return isolate->heap()->null_value(); in FunctionGetArguments()
713 if (it.done()) return isolate->heap()->null_value(); in FunctionGetCaller()
722 return isolate->heap()->null_value(); in FunctionGetCaller()
Dic.cc145 ? lookup->holder() : isolate->heap()->null_value(); in HasNormalObjectsInPrototypeChain()
310 PatchInlinedLoad(address, HEAP->null_value()); in ClearInlinedVersion()
329 PatchInlinedLoad(address, heap->null_value(), 0); in ClearInlinedVersion()
331 heap->null_value(), in ClearInlinedVersion()
332 heap->null_value(), in ClearInlinedVersion()
348 PatchInlinedStore(address, HEAP->null_value(), 0); in ClearInlinedVersion()
366 PatchInlinedStore(address, HEAP->null_value()); in ClearInlinedVersion()
Dbuiltins.cc377 if (proto == heap->null_value()) return false; in ArrayPrototypeHasNoElements()
1036 for (; holder != heap->null_value(); holder = holder->GetPrototype()) { in TypeCheck()
1041 if (holder == heap->null_value()) return holder; in TypeCheck()
1054 for (; current != heap->null_value(); current = current->GetPrototype()) { in TypeCheck()
1060 if (current == heap->null_value()) *arg = heap->undefined_value(); in TypeCheck()
Dobjects.cc503 Object* last = result->IsProperty() ? result->holder() : heap->null_value(); in GetProperty()
615 return heap->null_value(); in GetPrototype()
1812 pt != heap->null_value(); in LookupCallbackSetterInPrototypes()
1830 pt != heap->null_value(); in SetElementWithCallbackSetterInPrototypes()
2013 pt != heap->null_value(); in LookupRealNamedPropertyInPrototypes()
3084 o != heap->null_value(); in IsSimpleEnum()
3186 current != heap->null_value(); in Lookup()
3199 current != heap->null_value(); in LookupCallback()
3517 obj != heap->null_value(); in LookupAccessor()
3536 obj != heap->null_value(); in LookupAccessor()
[all …]
Dliveedit.cc731 info.SetFunctionCode(function_code, Handle<Object>(HEAP->null_value())); in FunctionCode()
805 Handle<Object>(HEAP->null_value())); in SerializeFunctionScope()
1296 old_script_object = Handle<Object>(HEAP->null_value()); in ChangeScriptSource()
Dheap.cc1591 map->set_prototype(null_value()); in AllocateMap()
1592 map->set_constructor(null_value()); in AllocateMap()
1702 meta_map()->set_prototype(null_value()); in CreateInitialMaps()
1703 meta_map()->set_constructor(null_value()); in CreateInitialMaps()
1705 fixed_array_map()->set_prototype(null_value()); in CreateInitialMaps()
1706 fixed_array_map()->set_constructor(null_value()); in CreateInitialMaps()
1708 oddball_map()->set_prototype(null_value()); in CreateInitialMaps()
1709 oddball_map()->set_constructor(null_value()); in CreateInitialMaps()
2031 Oddball::cast(null_value())->Initialize("null", in CreateInitialObjects()
Dstring-stream.cc537 for (Object* p = receiver; p != heap->null_value(); p = p->GetPrototype()) { in PrintPrototype()
Disolate.cc666 try_catch_handler()->exception_ = heap()->null_value(); in PropagatePendingExceptionToExternalTryCatch()
Dbootstrapper.cc299 JSGlobalProxy::cast(env->global_proxy())->set_context(*factory->null_value()); in DetachGlobal()
301 factory->null_value()); in DetachGlobal()
433 factory->NewFunction(object_name, factory->null_value()); in CreateEmptyFunction()
Dobjects-inl.h1619 ASSERT(!heap->InNewSpace(heap->null_value())); in set_null()
1620 WRITE_FIELD(this, kHeaderSize + index * kPointerSize, heap->null_value()); in set_null()
1653 ASSERT(!HEAP->InNewSpace(heap->null_value())); in set_null_unchecked()
1654 WRITE_FIELD(this, kHeaderSize + index * kPointerSize, heap->null_value()); in set_null_unchecked()
1828 if (element != isolate->heap()->null_value() && in FindEntry()
Dhandles.cc790 *p != isolate->heap()->null_value(); in GetKeysInFixedArrayFor()
Druntime.cc618 if (!obj->IsJSObject()) return isolate->heap()->null_value(); in RUNTIME_FUNCTION()
3113 return isolate->heap()->null_value(); in RUNTIME_FUNCTION()
3494 return isolate->heap()->null_value(); in RUNTIME_FUNCTION()
3514 if (result == RegExpImpl::RE_FAILURE) return isolate->heap()->null_value(); in RUNTIME_FUNCTION()
7150 Handle<Object> prototype = isolate->factory()->null_value(); in TrySettingInlineConstructStub()
7348 ASSERT(*arguments != isolate->heap()->null_value()); in RUNTIME_FUNCTION()
8098 return isolate->heap()->null_value(); in RUNTIME_FUNCTION()
8133 if (!global->IsJSGlobalObject()) return isolate->heap()->null_value(); in RUNTIME_FUNCTION()
11118 return isolate->heap()->null_value(); in RUNTIME_FUNCTION()
/external/v8/test/cctest/
Dtest-alloc.cc133 FACTORY->NewFunction(FACTORY->function_symbol(), FACTORY->null_value()); in TEST()
/external/v8/src/x64/
Dic-x64.cc1370 (offset == 0 && map == HEAP->null_value())); in PatchInlinedStore()
1380 (offset == 0 && map == HEAP->null_value())); in PatchInlinedStore()
Dfull-codegen-x64.cc865 Register null_value = rdi; in VisitForInStatement() local
866 __ LoadRoot(null_value, Heap::kNullValueRootIndex); in VisitForInStatement()
867 __ cmpq(rax, null_value); in VisitForInStatement()
925 __ cmpq(rcx, null_value); in VisitForInStatement()
/external/v8/src/ia32/
Dic-ia32.cc1391 (offset == 0 && map == HEAP->null_value())); in PatchInlinedStore()
1401 (offset == 0 && map == HEAP->null_value())); in PatchInlinedStore()
Dfull-codegen-ia32.cc863 __ cmp(eax, isolate()->factory()->null_value()); in VisitForInStatement()
918 __ cmp(ecx, isolate()->factory()->null_value()); in VisitForInStatement()
2382 __ cmp(eax, isolate()->factory()->null_value()); in EmitIsObject()
2734 __ mov(eax, isolate()->factory()->null_value()); in EmitClassOf()
4071 __ cmp(eax, isolate()->factory()->null_value()); in TryLiteralCompare()
4212 __ cmp(eax, isolate()->factory()->null_value()); in VisitCompareToNull()
Dlithium-codegen-ia32.cc1502 __ cmp(reg, factory()->null_value()); in DoIsNull()
1542 __ cmp(reg, factory()->null_value()); in DoIsNullAndBranch()
1576 __ cmp(input, isolate()->factory()->null_value()); in EmitIsObject()
1937 __ cmp(object, factory()->null_value()); in DoInstanceOfKnownGlobal()
2449 __ cmp(receiver, factory()->null_value()); in DoApplyArguments()
4043 __ cmp(input, factory()->null_value()); in EmitTypeofIs()
Dbuiltins-ia32.cc607 __ cmp(ebx, factory->null_value()); in Generate_FunctionCall()
762 __ cmp(ebx, factory->null_value()); in Generate_FunctionApply()
Dcode-stubs-ia32.cc250 __ cmp(eax, factory->null_value()); in Generate()
3144 __ mov(Operand(eax), factory->null_value()); in Generate()
4244 __ cmp(Operand(scratch), Immediate(factory->null_value())); in Generate()
4304 __ cmp(object, factory->null_value()); in Generate()
5126 __ cmp(candidate, factory->null_value()); in GenerateTwoCharacterSymbolTableProbe()
/external/v8/src/arm/
Dfull-codegen-arm.cc906 Register null_value = r5; in VisitForInStatement() local
907 __ LoadRoot(null_value, Heap::kNullValueRootIndex); in VisitForInStatement()
908 __ cmp(r0, null_value); in VisitForInStatement()
967 __ cmp(r1, null_value); in VisitForInStatement()
/external/chromium/chrome/browser/sync/engine/
Dsyncapi.cc1377 syncable::AutofillMigrationDebugInfo null_value = {0}; in GetAutofillMigrationDebugInfo() local
1378 return null_value; in GetAutofillMigrationDebugInfo()

12