Home
last modified time | relevance | path

Searched refs:if_notstring (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/builtins/
Dbuiltins-object.h21 void IsString(Node* object, Label* if_string, Label* if_notstring);
Dbuiltins-object.cc126 Label* if_notstring) { in IsString() argument
128 Branch(TaggedIsSmi(object), if_notstring, &if_notsmi); in IsString()
134 Branch(IsStringInstanceType(instance_type), if_string, if_notstring); in IsString()