OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SkPATH_SEPARATOR
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/skia/tests/
OSPathTest.cpp
18
* end with
SkPATH_SEPARATOR
.
20
* contain
SkPATH_SEPARATOR
.
24
// If filename contains
SkPATH_SEPARATOR
, the tests will fail.
25
SkASSERT(!filename.contains(
SkPATH_SEPARATOR
));
29
// fullName should be "dir<
SkPATH_SEPARATOR
>file"
35
if (!dir.endsWith(
SkPATH_SEPARATOR
) && !dir.isEmpty()) {
49
while (strippedDir.size() > 2 && strippedDir[strippedDir.size() - 1] ==
SkPATH_SEPARATOR
) {
58
REPORTER_ASSERT(reporter, !basename.contains(
SkPATH_SEPARATOR
));
71
dir.appendUnichar(
SkPATH_SEPARATOR
);
85
dir.appendUnichar(
SkPATH_SEPARATOR
);
[
all
...]
/external/chromium_org/third_party/skia/include/core/
SkOSFile.h
31
const static char
SkPATH_SEPARATOR
= '\\';
33
const static char
SkPATH_SEPARATOR
= '/';
134
* Uses
SkPATH_SEPARATOR
, to work on all platforms.
/external/chromium_org/third_party/skia/src/utils/
SkOSFile.cpp
11
if (!result.endsWith(
SkPATH_SEPARATOR
) && !result.isEmpty()) {
12
result.appendUnichar(
SkPATH_SEPARATOR
);
22
const char* filename = strrchr(fullPath,
SkPATH_SEPARATOR
);
35
const char* end = strrchr(fullPath,
SkPATH_SEPARATOR
);
40
SkASSERT(fullPath[0] ==
SkPATH_SEPARATOR
);
/external/chromium_org/third_party/skia/samplecode/
SamplePdfFileViewer.cpp
65
const char* basename = strrchr(fFilename.c_str(),
SkPATH_SEPARATOR
);
SamplePictFile.cpp
62
const char* basename = strrchr(fFilename.c_str(),
SkPATH_SEPARATOR
);
/external/chromium_org/third_party/skia/tools/
skimage_main.cpp
721
if (directory != NULL && directory->c_str()[directory->size() - 1] !=
SkPATH_SEPARATOR
) {
722
directory->appendf("%c",
SkPATH_SEPARATOR
);
[
all
...]
/external/chromium_org/third_party/skia/gm/
gmmain.cpp
221
name.appendf("%s%c%s", configName,
SkPATH_SEPARATOR
, shortName);
[
all
...]
Completed in 519 milliseconds