HomeSort by relevance Sort by last modified time
    Searched refs:null_value (Results 1 - 25 of 72) sorted by null

1 2 3

  /external/v8/src/
prototype.h 22 * 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();
messages.cc 199 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();
accessors.cc 885 return isolate->factory()->null_value();
908 ? Handle<Object>::cast(isolate->factory()->null_value())
    [all...]
bootstrapper.cc 356 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());
    [all...]
  /external/libchrome/base/json/
json_value_serializer_unittest.cc 228 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/v8/test/mjsunit/es6/
debug-stepnext-for.js 15 var null_value = null; variable
23 for (var i in null_value) { // Break c
27 for (j in null_value) { // Break d
  /external/llvm/unittests/IR/
ValueHandleTest.cpp 97 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/
js-graph.cc 87 return CACHED(kNullConstant, HeapConstant(factory()->null_value()));
  /external/v8/src/interpreter/
interpreter.cc 327 Node* null_value = __ HeapConstant(isolate_->factory()->null_value()); local
328 __ SetAccumulator(null_value);
1333 Node* null_value = __ HeapConstant(isolate_->factory()->null_value()); local
1344 Node* null_value = __ HeapConstant(isolate_->factory()->null_value()); local
    [all...]
  /external/v8/test/cctest/compiler/
test-js-constant-cache.cc 264 CHECK_EQ(T.NullConstant(), T.Constant(T.factory()->null_value()));
276 CHECK_EQ(*T.factory()->null_value(), *T.handle(T.NullConstant()));
function-tester.h 187 Handle<Object> null() { return isolate->factory()->null_value(); }
  /external/v8/test/unittests/compiler/
simplified-operator-reducer-unittest.cc 364 factory()->empty_string(), factory()->null_value(),
437 factory()->empty_string(), factory()->null_value(),
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
struct.pb.h 48 NULL_VALUE = 0,
53 const NullValue NullValue_MIN = NULL_VALUE;
54 const NullValue NullValue_MAX = NULL_VALUE;
227 // optional .google.protobuf.NullValue null_value = 1;
233 ::google::protobuf::NullValue null_value() const;
435 // optional .google.protobuf.NullValue null_value = 1;
448 inline ::google::protobuf::NullValue Value::null_value() const { function in class:google::protobuf::Value
449 // @@protoc_insertion_point(field_get:google.protobuf.Value.null_value)
461 // @@protoc_insertion_point(field_set:google.protobuf.Value.null_value)
  /external/v8/src/ast/
ast-value-factory.cc 197 value_ = isolate->factory()->null_value();
ast-value-factory.h 281 F(null_value) \
  /external/v8/src/runtime/
runtime-liveedit.cc 99 return isolate->heap()->null_value();
runtime-object.cc 736 if (!obj->IsJSReceiver()) return isolate->heap()->null_value();
756 isolate->factory()->null_value(), attrs));
775 JSObject::DefineAccessor(object, name, isolate->factory()->null_value(),
runtime-classes.cc 95 prototype_parent = isolate->factory()->null_value();
runtime-debug.cc     [all...]
runtime-regexp.cc     [all...]
  /external/v8/test/cctest/interpreter/
test-interpreter-intrinsics.cc 41 Handle<Object> Null() { return factory_->null_value(); }
test-interpreter.cc 58 Handle<Object> null_value = handles.main_isolate()->factory()->null_value(); local
68 CHECK(return_val.is_identical_to(null_value));
    [all...]
  /bionic/tests/
pthread_test.cpp 1770 pthread_mutex_t* null_value = nullptr; local
1779 pthread_mutex_t* null_value = nullptr; local
    [all...]
  /external/v8/src/full-codegen/ia32/
full-codegen-ia32.cc 948 __ cmp(eax, isolate()->factory()->null_value());
    [all...]
  /external/v8/src/full-codegen/x87/
full-codegen-x87.cc 940 __ cmp(eax, isolate()->factory()->null_value());
    [all...]

Completed in 1516 milliseconds

1 2 3