OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StringPieceType
(Results
1 - 4
of
4
) sorted by null
/external/libchrome/base/files/
file_path.h
156
typedef BasicStringPiece<StringType>
StringPieceType
;
179
explicit FilePath(
StringPieceType
path);
289
StringPieceType
suffix) const WARN_UNUSED_RESULT;
295
FilePath AddExtension(
StringPieceType
extension) const WARN_UNUSED_RESULT;
301
FilePath ReplaceExtension(
StringPieceType
extension) const WARN_UNUSED_RESULT;
305
bool MatchesExtension(
StringPieceType
extension) const;
313
FilePath Append(
StringPieceType
component) const WARN_UNUSED_RESULT;
406
static int CompareIgnoreCase(
StringPieceType
string1,
407
StringPieceType
string2);
408
static bool CompareEqualIgnoreCase(
StringPieceType
string1
[
all
...]
file_path.cc
33
using
StringPieceType
= FilePath::
StringPieceType
;
47
StringPieceType
::size_type FindDriveLetter(
StringPieceType
path) {
61
bool EqualDriveLetterCaseInsensitive(
StringPieceType
a,
StringPieceType
b) {
68
StringPieceType
a_letter(a.substr(0, a_letter_pos + 1));
69
StringPieceType
b_letter(b.substr(0, b_letter_pos + 1));
73
StringPieceType
a_rest(a.substr(a_letter_pos + 1));
74
StringPieceType
b_rest(b.substr(b_letter_pos + 1))
[
all
...]
/external/libchrome/mojo/public/cpp/base/
file_path_mojom_traits.cc
13
base::FilePath::
StringPieceType
path_view;
/external/libchrome/base/strings/
string_piece.h
458
#define HASH_STRING_PIECE(
StringPieceType
, string_piece) \
460
for (
StringPieceType
::const_iterator i = string_piece.begin(); \
Completed in 340 milliseconds