HomeSort by relevance Sort by last modified time
    Searched refs:if_notobject (Results 1 - 3 of 3) sorted by null

  /external/v8/src/builtins/
builtins-iterator-gen.cc 53 Label get_next(this), if_notobject(this, Label::kDeferred);
54 GotoIf(TaggedIsSmi(iterator), &if_notobject); local
55 Branch(IsJSReceiver(iterator), &get_next, &if_notobject); local
57 BIND(&if_notobject);
83 Label if_notobject(this, Label::kDeferred), return_result(this);
84 GotoIf(TaggedIsSmi(result), &if_notobject); local
105 GotoIfNot(IsJSReceiverMap(result_map), &if_notobject); local
114 BIND(&if_notobject);
builtins-collections-gen.cc 592 Label if_notobject(this, Label::kDeferred);
593 GotoIfNotJSReceiver(maybe_array, &if_notobject);
609 BIND(&if_notobject);
    [all...]
  /external/v8/src/interpreter/
interpreter-generator.cc 2222 Branch(TaggedIsSmi(accumulator), &if_notobject, &if_notsmi); local
2225 Branch(IsJSReceiver(accumulator), &if_object, &if_notobject); local
2242 Branch(TaggedIsSmi(accumulator), &if_notobject, &if_notsmi); local
2245 Branch(IsJSReceiver(accumulator), &if_object, &if_notobject); local
    [all...]

Completed in 326 milliseconds