Searched defs:last_space (Results 1 - 1 of 1) sorted by path

/external/eigen/scripts/
H A Deigen_gen_credits.cpp85 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);

Completed in 217 milliseconds