Home | History | Annotate | Download | only in tests

Lines Matching full:basename

19  *  @param filename String representing the basename of a file. Must NOT
40 SkString basename = SkOSPath::SkBasename(fullName.c_str());
42 // basename should be the same as filename
43 REPORTER_ASSERT(reporter, basename.equals(filename));
45 // basename will not contain a path separator
46 REPORTER_ASSERT(reporter, !basename.contains(SkPATH_SEPARATOR));
48 // Now take the basename of filename, which should be the same as filename.
49 basename = SkOSPath::SkBasename(filename.c_str());
50 REPORTER_ASSERT(reporter, basename.equals(filename));
72 // Basename of a directory with a path separator at the end is empty.
77 // Basename of NULL is an empty string.