Home
last modified time | relevance | path

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

/external/bcc/src/cc/frontends/clang/
Dtp_frontend_action.cc174 auto first_space_pos = type_name.find_first_of("\t "); in _is_tracepoint_struct_type() local
175 if (first_space_pos == string::npos) in _is_tracepoint_struct_type()
177 auto first_tok = type_name.substr(0, first_space_pos); in _is_tracepoint_struct_type()
181 auto non_space_pos = type_name.find_first_not_of("\t ", first_space_pos); in _is_tracepoint_struct_type()
/external/llvm-project/lldb/source/Interpreter/
DCommandInterpreter.cpp1387 const size_t first_space_pos = in ExtractCommand() local
1389 if (first_space_pos == std::string::npos) { in ExtractCommand()
1393 command.assign(command_string, 0, first_space_pos); in ExtractCommand()
1395 k_white_space, first_space_pos)); in ExtractCommand()