OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:kExtensionSeparator
(Results
1 - 3
of
3
) sorted by null
/external/chromium/base/
file_path.h
155
static const CharType
kExtensionSeparator
;
file_util.cc
22
const FilePath::CharType
kExtensionSeparator
= FILE_PATH_LITERAL('.');
53
file_name.rfind(
kExtensionSeparator
);
64
value.rfind(
kExtensionSeparator
);
file_path.cc
41
const FilePath::CharType FilePath::
kExtensionSeparator
= FILE_PATH_LITERAL('.');
127
path.rfind(FilePath::
kExtensionSeparator
);
147
path.rfind(FilePath::
kExtensionSeparator
, last_dot - 1);
384
if (*(base.end() - 1) ==
kExtensionSeparator
) {
415
if (*(base.end() - 1) ==
kExtensionSeparator
) {
424
if (extension.empty() || extension == StringType(1,
kExtensionSeparator
))
428
if (extension[0] !=
kExtensionSeparator
)
429
str.append(1,
kExtensionSeparator
);
435
DCHECK(extension.empty() || extension[0] ==
kExtensionSeparator
);
[
all
...]
Completed in 717 milliseconds