Home
last modified time | relevance | path

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

/external/gflags/src/
Dgflags.cc1273 const char* flagfile_contents = contentdata.c_str(); in ProcessOptionsFromStringLocked() local
1277 const char* line_end = flagfile_contents; in ProcessOptionsFromStringLocked()
1279 for (; line_end; flagfile_contents = line_end + 1) { in ProcessOptionsFromStringLocked()
1280 while (*flagfile_contents && isspace(*flagfile_contents)) in ProcessOptionsFromStringLocked()
1281 ++flagfile_contents; in ProcessOptionsFromStringLocked()
1283 line_end = strchr(flagfile_contents, '\r'); in ProcessOptionsFromStringLocked()
1285 line_end = strchr(flagfile_contents, '\n'); in ProcessOptionsFromStringLocked()
1287 size_t len = line_end ? line_end - flagfile_contents in ProcessOptionsFromStringLocked()
1288 : strlen(flagfile_contents); in ProcessOptionsFromStringLocked()
1289 string line(flagfile_contents, len); in ProcessOptionsFromStringLocked()