OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:last_bar
(Results
1 - 1
of
1
) sorted by null
/external/eigen/scripts/
eigen_gen_credits.cpp
142
size_t
last_bar
= line.find_last_of('|');
local
143
if(
last_bar
== string::npos) continue;
144
if(
last_bar
< line.length())
145
misc = line.substr(
last_bar
+1);
146
line.erase(
last_bar
);
148
last_bar
= line.find_last_of('|');
149
if(
last_bar
== string::npos) continue;
150
if(
last_bar
< line.length())
151
url = line.substr(
last_bar
+1);
152
line.erase(
last_bar
);
[
all
...]
Completed in 115 milliseconds