Searched refs:receiver_string (Results 1 – 2 of 2) sorted by relevance
/third_party/node/deps/v8/src/objects/ |
D | string.cc | 1223 Handle<String> receiver_string; in IndexOf() local 1224 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, receiver_string, in IndexOf() 1234 uint32_t index = ToValidIndex(*receiver_string, *position); in IndexOf() 1236 String::IndexOf(isolate, receiver_string, search_string, index)); in IndexOf() 1489 Handle<String> receiver_string; in LastIndexOf() local 1490 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, receiver_string, in LastIndexOf() 1503 start_index = receiver_string->length(); in LastIndexOf() 1507 start_index = ToValidIndex(*receiver_string, *position); in LastIndexOf() 1511 uint32_t receiver_length = receiver_string->length(); in LastIndexOf() 1521 receiver_string = String::Flatten(isolate, receiver_string); in LastIndexOf() [all …]
|
/third_party/node/deps/v8/src/compiler/ |
D | js-call-reducer.cc | 1180 TNode<String> receiver_string = CheckString(receiver); in ReduceStringPrototypeSubstring() local 1183 TNode<Number> length = StringLength(receiver_string); in ReduceStringPrototypeSubstring() 1197 return StringSubstring(receiver_string, from, to); in ReduceStringPrototypeSubstring() 1205 TNode<String> receiver_string = CheckString(receiver); in ReduceStringPrototypeStartsWith() local 1207 TNode<Number> length = StringLength(receiver_string); in ReduceStringPrototypeStartsWith() 1230 StringCharCodeAt(receiver_string, receiver_string_position); in ReduceStringPrototypeStartsWith() 1249 TNode<String> receiver_string = CheckString(receiver); in ReduceStringPrototypeStartsWith() local 1252 TNode<Number> length = StringLength(receiver_string); in ReduceStringPrototypeStartsWith() 1272 StringCharCodeAt(receiver_string, receiver_string_position); in ReduceStringPrototypeStartsWith() 1290 TNode<String> receiver_string = CheckString(receiver); in ReduceStringPrototypeSlice() local [all …]
|