HomeSort by relevance Sort by last modified time
    Searched refs:last_space (Results 1 - 4 of 4) sorted by null

  /external/eigen/scripts/
eigen_gen_credits.cpp 85 size_t last_space = line.find_last_of(' '); local
89 istringstream(line.substr(last_space+1)) >> number;
92 line.erase(last_space);
112 size_t last_space = name.find_last_of(' '); local
113 if(last_space >= name.length()-1) return name;
114 else return name.substr(last_space+1);
  /external/syslinux/gpxe/src/hci/mucurses/
slk.c 307 *next_space, *last_space; local
319 last_space = &(slks->spaces[slks->num_spaces-1]);
328 if ( next_space < last_space )
  /development/vndk/tools/header-checker/header-abi-util/src/
version_script_parser.cpp 129 std::string::size_type last_space = symbol.find_last_of(' '); local
130 symbol = symbol.substr(last_space + 1, pos);
  /bootable/recovery/
screen_ui.cpp 392 size_t last_space = sub.find_last_of(" \t\n"); local
393 if (last_space == std::string::npos) {
398 sub.resize(last_space);
399 next_start += last_space + 1;

Completed in 459 milliseconds