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

1 2 3 4 5

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
libgen.h 36 #define basename __xpg_basename macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
libgen.h 36 #define basename __xpg_basename macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
libgen.h 36 #define basename __xpg_basename macro
  /external/chromium_org/base/files/
file_enumerator.cc 15 FilePath::StringType basename = path.BaseName().value(); local
16 return basename == FILE_PATH_LITERAL(".") ||
17 (basename == FILE_PATH_LITERAL("..") &&
  /external/openssh/openbsd-compat/
basename.c 1 /* $OpenBSD: basename.c,v 1.14 2005/08/08 08:05:33 espie Exp $ */
19 /* OPENBSD ORIGINAL: lib/libc/gen/basename.c */
27 basename(const char *path) function
  /external/oprofile/libpp/
name_storage.cpp 26 string const & image_name_storage::basename(image_name_id id) const function in class:image_name_storage
43 return basename(id);
74 string const & debug_name_storage::basename(debug_name_id id) const function in class:debug_name_storage
  /bionic/libc/bionic/
libgen.cpp 39 GLOBAL_INIT_THREAD_LOCAL_BUFFER(basename); variable
42 char* basename(const char* path) { function
43 LOCAL_INIT_THREAD_LOCAL_BUFFER(char*, basename, MAXPATHLEN);
  /external/dropbear/
configure 51 # Required to use basename.
58 if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
59 as_basename=basename
10545 basename (); function
10600 basename (); function
    [all...]
compat.c 193 char *basename(const char *path) { function
  /external/skia/tests/
OSPathTest.cpp 19 * @param filename String representing the basename of a file. Must NOT
40 SkString basename = SkOSPath::SkBasename(fullName.c_str()); local
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
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
cpp_generator.cc 97 string basename = StripProto(file->name()); local
98 basename.append(".pb");
105 generator_context->Open(basename + ".h"));
113 generator_context->Open(basename + ".cc"));
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/
setup.py 30 from os.path import basename, join, exists namespace
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_generator.cc 95 string basename = StripProto(file->name()); local
96 basename.append(".pb");
103 output_directory->Open(basename + ".h"));
111 output_directory->Open(basename + ".cc"));
  /external/libmtp/examples/
pathutils.c 92 char * filename = basename(basec);
228 static char *basename(char *in) { function
  /external/v8/test/cctest/
cctest.cc 40 char *basename = strrchr(const_cast<char *>(file), '/'); local
41 if (!basename) {
42 basename = strrchr(const_cast<char *>(file), '\\');
44 if (!basename) {
45 basename = v8::internal::StrDup(file);
47 basename = v8::internal::StrDup(basename + 1);
50 char *extension = strrchr(basename, '.');
53 file_ = basename;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
file_util.py 113 dst = os.path.join(dst, os.path.basename(src))
128 if os.path.basename(dst) == os.path.basename(src):
172 from os.path import exists, isfile, isdir, basename, dirname namespace
185 dst = os.path.join(dst, basename(src))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
file_util.py 113 dst = os.path.join(dst, os.path.basename(src))
128 if os.path.basename(dst) == os.path.basename(src):
172 from os.path import exists, isfile, isdir, basename, dirname namespace
185 dst = os.path.join(dst, basename(src))
  /external/chromium/chrome/browser/resources/file_manager/js/
harness.js 145 var basename = null; variable
148 dirEntry.getFile(basename, { create: true },
155 basename = path.substr(i + 1);
157 basename = path;
  /external/iproute2/ip/
ip.c 150 char *basename; local
152 basename = strrchr(argv[0], '/');
153 if (basename == NULL)
154 basename = argv[0];
156 basename++;
263 if (strlen(basename) > 2)
264 return do_cmd(basename+2, argc, argv);
  /external/iproute2/misc/
lnstat.h 27 char basename[NAME_MAX+1]; member in struct:lnstat_file
  /external/protobuf/src/google/protobuf/compiler/java/
java_helpers.cc 125 string basename; local
128 basename = file->name();
130 basename = file->name().substr(last_slash + 1);
132 return UnderscoresToCamelCaseImpl(StripProto(basename), true);
  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_helpers.cc 128 string basename; local
131 basename = file->name();
133 basename = file->name().substr(last_slash + 1);
135 return UnderscoresToCamelCaseImpl(StripProto(basename), true);
  /external/v8/test/message/
testcfg.py 30 from os.path import join, dirname, exists, basename, isdir namespace
55 env = { 'basename': basename(self.file) }
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
os2emxpath.py 15 "basename","dirname","commonprefix","getsize","getmtime",
86 # Return the tail (basename) part of a path.
88 def basename(p): function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
os2emxpath.py 15 "basename","dirname","commonprefix","getsize","getmtime",
86 # Return the tail (basename) part of a path.
88 def basename(p): function

Completed in 346 milliseconds

1 2 3 4 5