HomeSort by relevance Sort by last modified time
    Searched defs:basename (Results 1 - 25 of 245) sorted by null

1 2 3 4 5 6 7 8 910

  /bionic/libc/include/
libgen.h 38 * Including <string.h> will get you the GNU basename, unless <libgen.h> is
44 char* __posix_basename(const char* __path) __RENAME(basename); variable
46 #define basename __posix_basename macro
52 /* These non-standard functions are not needed on Android; basename and dirname use thread-local storage. */
  /external/curl/src/
tool_bname.h 30 #define basename(x) tool_basename((x)) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
libgen.h 36 #define basename __xpg_basename macro
  /external/skia/tools/skpbench/
_os_path.py 12 def basename(pathname): function
13 return pathname.basename(pathname)
_adb_path.py 19 def basename(pathname): function
  /external/skqp/tools/skpbench/
_os_path.py 12 def basename(pathname): function
13 return pathname.basename(pathname)
_adb_path.py 19 def basename(pathname): function
  /external/syslinux/gpxe/src/core/
basename.c 35 * @ret basename Base name
37 char * basename ( char *path ) { function
38 char *basename; local
40 basename = strrchr ( path, '/' );
41 return ( basename ? ( basename + 1 ) : path );
  /external/libchrome/base/files/
file_enumerator.cc 15 FilePath::StringType basename = path.BaseName().value(); local
16 return basename == FILE_PATH_LITERAL(".") ||
17 (basename == FILE_PATH_LITERAL("..") &&
  /prebuilts/go/darwin-x86/src/os/
path_unix.go 19 // basename removes trailing slashes and the leading directory name from path name
20 func basename(name string) string { func
path_windows.go 18 // basename removes trailing slashes and the leading
20 func basename(name string) string { func
  /prebuilts/go/linux-x86/src/os/
path_unix.go 19 // basename removes trailing slashes and the leading directory name from path name
20 func basename(name string) string { func
path_windows.go 18 // basename removes trailing slashes and the leading
20 func basename(name string) string { func
  /toolchain/binutils/binutils-2.27/libiberty/
basename.c 1 /* Return the basename of a pathname.
6 @deftypefn Supplemental char* basename (const char *@var{name})
43 basename (const char *name) function
lrealpath.c 140 char* basename; local
141 DWORD len = GetFullPathName (filename, MAX_PATH, buf, &basename);
  /external/skia/tests/
OSPathTest.cpp 13 * Test SkOSPath::Join, SkOSPath::Basename, and SkOSPath::Dirname.
15 * and tests using SkOSPath::Basename on the result.
19 * @param filename String representing the basename of a file. Must NOT
27 // Tests for SkOSPath::Join and SkOSPath::Basename
40 SkString basename = SkOSPath::Basename(fullName.c_str()); local
43 // basename should be the same as filename
44 REPORTER_ASSERT(reporter, basename.equals(filename));
57 // basename will not contain a path separator
58 REPORTER_ASSERT(reporter, !basename.contains(SkOSPath::SEPARATOR))
    [all...]
  /external/skqp/tests/
OSPathTest.cpp 13 * Test SkOSPath::Join, SkOSPath::Basename, and SkOSPath::Dirname.
15 * and tests using SkOSPath::Basename on the result.
19 * @param filename String representing the basename of a file. Must NOT
27 // Tests for SkOSPath::Join and SkOSPath::Basename
40 SkString basename = SkOSPath::Basename(fullName.c_str()); local
43 // basename should be the same as filename
44 REPORTER_ASSERT(reporter, basename.equals(filename));
57 // basename will not contain a path separator
58 REPORTER_ASSERT(reporter, !basename.contains(SkOSPath::SEPARATOR))
    [all...]
  /external/swiftshader/third_party/subzero/pydir/
build-pnacl-ir.py 30 basename = os.path.splitext(cname)[0] variable
31 llname = os.path.join(tempdir, basename + '.ll')
32 pnaclname = basename + '.pnacl.ll'
  /bionic/libc/bionic/
libgen.cpp 160 char* basename(const char* path) { function
  /bionic/tools/relocation_packer/src/
main.cc 36 const char* basename = temporary.c_str(); local
44 basename);
  /external/ImageMagick/coders/
cip.c 211 basename[MagickPathExtent];
213 GetPathComponent(image->filename,BasePath,basename);
215 basename);
206 basename[MagickPathExtent]; local
html.c 216 basename[MagickPathExtent],
278 GetPathComponent(filename,BasePath,basename);
279 (void) CopyMagickString(mapname,basename,MagickPathExtent);
314 GetPathComponent(filename,BasePath,basename);
316 "<title>%s</title>\n",basename);
210 basename[MagickPathExtent], local
  /external/flatbuffers/src/
idl_gen_fbs.cpp 78 auto basename = flatbuffers::StripPath( local
80 schema += "include \"" + basename + ".fbs\";\n";
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_generator.cc 110 string basename = StripProto(file->name()); local
117 generator_context->Open(basename + ".proto.h"));
121 string info_path = basename + ".proto.h.meta";
134 basename.append(".pb");
137 generator_context->Open(basename + ".h"));
141 string info_path = basename + ".h.meta";
157 generator_context->Open(basename + ".cc"));
  /external/skia/samplecode/
SamplePdfFileViewer.cpp 64 const char* basename = strrchr(fFilename.c_str(), SkPATH_SEPARATOR); local
65 name.append(basename ? basename+1: fFilename.c_str());

Completed in 985 milliseconds

1 2 3 4 5 6 7 8 910