OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:last_separator
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Tools/Scripts/webkitpy/tool/
grammar.py
47
def join_with_separators(list_of_strings, separator=', ', only_two_separator=" and ",
last_separator
=', and '):
54
return "%s%s%s" % (separator.join(list_of_strings[:-1]),
last_separator
, list_of_strings[-1])
/external/chromium/base/
file_util.cc
65
const FilePath::StringType::size_type
last_separator
=
local
69
(
last_separator
!= std::wstring::npos && last_dot <
last_separator
)) {
file_path.cc
148
const StringType::size_type
last_separator
=
local
152
(
last_separator
== StringType::npos ||
153
penultimate_dot >
last_separator
) &&
305
StringType::size_type
last_separator
=
local
308
if (
last_separator
== StringType::npos) {
311
} else if (
last_separator
== letter + 1) {
314
} else if (
last_separator
== letter + 2 &&
319
} else if (
last_separator
!= 0) {
321
new_path.path_.resize(
last_separator
);
343
StringType::size_type
last_separator
local
[
all
...]
Completed in 151 milliseconds