Home
last modified time | relevance | path

Searched refs:quote_index (Results 1 - 1 of 1) sorted by relevance

/third_party/node/deps/v8/src/runtime/
H A Druntime-strings.cc426 int quote_index = String::IndexOf(isolate, string, quotes, 0); in RUNTIME_FUNCTION() local
429 if (quote_index == -1) return *string; in RUNTIME_FUNCTION()
432 std::vector<int> indices = {quote_index}; in RUNTIME_FUNCTION()
433 while (quote_index + 1 < string_length) { in RUNTIME_FUNCTION()
434 quote_index = String::IndexOf(isolate, string, quotes, quote_index + 1); in RUNTIME_FUNCTION()
435 if (quote_index == -1) break; in RUNTIME_FUNCTION()
436 indices.emplace_back(quote_index); in RUNTIME_FUNCTION()

Completed in 2 milliseconds