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

1 2

  /external/v8/src/builtins/
builtins-utils.h 150 if (args.receiver()->IsNullOrUndefined(isolate)) { \
builtins-string.cc 120 Node* IsNullOrUndefined(Node* const value);
    [all...]
builtins-object.cc 599 if (object->IsNullOrUndefined(isolate)) {
645 if (object->IsNullOrUndefined(isolate)) {
    [all...]
builtins-array.cc 41 } else if (object->IsNullOrUndefined(isolate)) {
    [all...]
  /external/v8/src/inspector/
string-util.cc 53 if (value.IsEmpty() || value->IsNullOrUndefined()) return String16();
  /external/v8/src/runtime/
runtime-object.cc 22 if (object->IsNullOrUndefined(isolate)) {
210 } else if (object->IsNullOrUndefined(isolate)) {
265 if (object->IsNullOrUndefined(isolate)) {
608 return obj->IsNullOrUndefined(isolate) || obj->IsCallable();
697 CHECK(!object->IsNullOrUndefined(isolate));
    [all...]
runtime-debug.cc 84 CHECK(args[0]->IsJSFunction() || args[0]->IsNullOrUndefined(isolate));
    [all...]
runtime-array.cc 549 if (receiver_obj->IsNullOrUndefined(isolate)) {
runtime-regexp.cc     [all...]
  /external/v8/src/
messages.cc 374 if (receiver_->IsNullOrUndefined(isolate_)) {
431 if (receiver_->IsNullOrUndefined(isolate_))
460 return receiver_->IsJSGlobalProxy() || receiver_->IsNullOrUndefined(isolate_);
    [all...]
string-stream.cc 487 if (receiver->IsNullOrUndefined(isolate) || receiver->IsTheHole(isolate) ||
objects-inl.h 224 bool Object::IsNullOrUndefined(Isolate* isolate) const {
229 bool HeapObject::IsNullOrUndefined(Isolate* isolate) const {
    [all...]
objects.h     [all...]
  /external/v8/src/compiler/
js-call-reducer.cc 552 (bound_this->IsNullOrUndefined(isolate()))
    [all...]
  /external/v8/src/ic/
ic.cc 378 if (receiver->IsNullOrUndefined(isolate())) return;
657 if (object->IsNullOrUndefined(isolate())) {
    [all...]
  /external/v8/src/full-codegen/arm/
full-codegen-arm.cc 534 DCHECK(lit->IsNullOrUndefined(isolate()) || !lit->IsUndetectable());
535 if (lit->IsNullOrUndefined(isolate()) || lit->IsFalse(isolate())) {
    [all...]
  /external/v8/src/full-codegen/arm64/
full-codegen-arm64.cc 524 DCHECK(lit->IsNullOrUndefined(isolate()) || !lit->IsUndetectable());
525 if (lit->IsNullOrUndefined(isolate()) || lit->IsFalse(isolate())) {
    [all...]
  /external/v8/src/full-codegen/ia32/
full-codegen-ia32.cc 485 DCHECK(lit->IsNullOrUndefined(isolate()) || !lit->IsUndetectable());
486 if (lit->IsNullOrUndefined(isolate()) || lit->IsFalse(isolate())) {
    [all...]
  /external/v8/src/full-codegen/mips/
full-codegen-mips.cc 527 DCHECK(lit->IsNullOrUndefined(isolate()) || !lit->IsUndetectable());
528 if (lit->IsNullOrUndefined(isolate()) || lit->IsFalse(isolate())) {
    [all...]
  /external/v8/src/full-codegen/mips64/
full-codegen-mips64.cc 527 DCHECK(lit->IsNullOrUndefined(isolate()) || !lit->IsUndetectable());
528 if (lit->IsNullOrUndefined(isolate()) || lit->IsFalse(isolate())) {
    [all...]
  /external/v8/src/full-codegen/ppc/
full-codegen-ppc.cc 515 DCHECK(lit->IsNullOrUndefined(isolate()) || !lit->IsUndetectable());
516 if (lit->IsNullOrUndefined(isolate()) || lit->IsFalse(isolate())) {
    [all...]
  /external/v8/src/full-codegen/s390/
full-codegen-s390.cc 506 DCHECK(lit->IsNullOrUndefined(isolate()) || !lit->IsUndetectable());
507 if (lit->IsNullOrUndefined(isolate()) || lit->IsFalse(isolate())) {
    [all...]
  /external/v8/src/full-codegen/x64/
full-codegen-x64.cc 503 DCHECK(lit->IsNullOrUndefined(isolate()) || !lit->IsUndetectable());
504 if (lit->IsNullOrUndefined(isolate()) || lit->IsFalse(isolate())) {
    [all...]
  /external/v8/src/full-codegen/x87/
full-codegen-x87.cc 480 DCHECK(lit->IsNullOrUndefined(isolate()) || !lit->IsUndetectable());
481 if (lit->IsNullOrUndefined(isolate()) || lit->IsFalse(isolate())) {
    [all...]
  /external/v8/include/
v8.h     [all...]

Completed in 3921 milliseconds

1 2