OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:space_loc
(Results
1 - 2
of
2
) sorted by null
/prebuilts/ndk/r13/sources/third_party/shaderc/libshaderc_util/src/
message.cc
87
const size_t
space_loc
= message.find_first_of(' ');
local
88
if (
space_loc
== string_piece::npos) return false;
89
const string_piece number = message.substr(0,
space_loc
);
90
const string_piece rest = message.substr(
space_loc
+ 1);
compiler.cc
60
const size_t
space_loc
= directive.find_first_of(' ');
local
61
if (
space_loc
== string_piece::npos) return std::make_pair(line, "");
63
directive = directive.substr(
space_loc
);
Completed in 496 milliseconds