Home
last modified time | relevance | path

Searched refs:comma_pos (Results 1 – 4 of 4) sorted by relevance

/third_party/node/src/
Ddebug_utils.cc72 std::string::size_type comma_pos = debug_categories.find(','); in Parse() local
73 std::string wanted = ToLower(debug_categories.substr(0, comma_pos)); in Parse()
85 if (comma_pos == std::string::npos) break; in Parse()
87 debug_categories = debug_categories.substr(comma_pos + 1); in Parse()
/third_party/gn/src/base/files/
Dfile_util_win.cc95 size_t comma_pos = mode->find(L','); in AppendModeCharacter() local
96 mode->insert(comma_pos == std::u16string::npos ? mode->length() : comma_pos, in AppendModeCharacter()
Dfile_util_posix.cc152 size_t comma_pos = result.find(','); in AppendModeCharacter() local
153 result.insert(comma_pos == std::string::npos ? result.length() : comma_pos, 1, in AppendModeCharacter()
/third_party/node/deps/v8/src/parsing/
Dparser.cc2558 int comma_pos = binop->position(); in AddArrowFunctionFormalParameters() local
2559 AddArrowFunctionFormalParameters(parameters, left, comma_pos); in AddArrowFunctionFormalParameters()