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/chromium_org/third_party/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_org/storage/common/fileapi/
file_system_util.cc
41
base::FilePath::StringType::size_type
last_separator
=
local
43
if (
last_separator
!= base::FilePath::StringType::npos &&
44
last_separator
< path.size() - 1)
45
path.erase(0,
last_separator
+ 1);
61
StringType::size_type
last_separator
=
local
63
if (
last_separator
== StringType::npos) {
67
if (
last_separator
== 0) {
72
path.resize(
last_separator
);
/external/chromium_org/base/files/
file_path.cc
132
const StringType::size_type
last_separator
=
local
137
(
last_separator
!= StringType::npos &&
138
penultimate_dot <
last_separator
)) {
318
StringType::size_type
last_separator
=
local
321
if (
last_separator
== StringType::npos) {
324
} else if (
last_separator
== letter + 1) {
327
} else if (
last_separator
== letter + 2 &&
332
} else if (
last_separator
!= 0) {
334
new_path.path_.resize(
last_separator
);
356
StringType::size_type
last_separator
local
[
all
...]
Completed in 347 milliseconds