Lines Matching refs:one
235 // sentinel maps: one for each InstanceType that may be migrated from.
910 // common case of sequential one-byte right child.
963 // Include one character beyond the end of script. The rewriter uses that
1024 // Fast check: if at least one ThinString is involved, dereference it/them
1075 bool String::SlowEquals(Isolate* isolate, Handle<String> one,
1078 const int one_length = one->length();
1082 // Fast check: if at least one ThinString is involved, dereference it/them
1084 if (one->IsThinString() || two->IsThinString()) {
1085 if (one->IsThinString()) {
1086 one = handle(ThinString::cast(*one).actual(), isolate);
1091 return String::Equals(isolate, one, two);
1096 if (one->HasHashCode() && two->HasHashCode()) {
1099 if (one->hash() != two->hash()) {
1102 if (one->Get(i) != two->Get(i)) {
1111 if (one->hash() != two->hash()) return false;
1116 if (one->Get(0) != two->Get(0)) return false;
1118 one = String::Flatten(isolate, one);
1122 String::FlatContent flat1 = one->GetFlatContent(no_gc);
1852 // Get the next leaf if there is one.