Searched defs:basename (Results 1 - 25 of 132) sorted by relevance

123456

/external/curl/src/
H A Dtool_bname.h30 #define basename(x) tool_basename((x)) macro
/external/syslinux/gpxe/src/core/
H A Dbasename.c35 * @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/skia/tools/skpbench/
H A D_os_path.py12 def basename(pathname): function
13 return pathname.basename(pathname)
H A D_adb_path.py19 def basename(pathname): function
/external/skqp/tools/skpbench/
H A D_os_path.py12 def basename(pathname): function
13 return pathname.basename(pathname)
H A D_adb_path.py19 def basename(pathname): function
/external/libchrome/base/files/
H A Dfile_enumerator.cc15 FilePath::StringType basename = path.BaseName().value(); local
16 return basename == FILE_PATH_LITERAL(".") ||
17 (basename == FILE_PATH_LITERAL("..") &&
/external/ImageMagick/coders/
H A Dcip.c211 basename[MagickPathExtent];
213 GetPathComponent(image->filename,BasePath,basename);
215 basename);
206 basename[MagickPathExtent]; local
H A Dhtml.c216 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
H A Duil.c169 basename[MagickPathExtent],
298 GetPathComponent(image->filename,BasePath,basename);
300 "value\n %s_ct : color_table(\n",basename);
344 GetPathComponent(image->filename,BasePath,basename);
346 " %s_icon : icon(color_table = %s_ct,\n",basename,basename);
164 basename[MagickPathExtent], local
/external/skia/tests/
H A DOSPathTest.cpp19 * @param filename String representing the basename of a file. Must NOT
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));
60 // Now take the basename of filename, which should be the same as filename.
61 basename = SkOSPath::Basename(filename.c_str());
62 REPORTER_ASSERT(reporter, basename.equals(filename));
/external/skqp/tests/
H A DOSPathTest.cpp19 * @param filename String representing the basename of a file. Must NOT
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));
60 // Now take the basename of filename, which should be the same as filename.
61 basename = SkOSPath::Basename(filename.c_str());
62 REPORTER_ASSERT(reporter, basename.equals(filename));
/external/swiftshader/third_party/subzero/pydir/
H A Dbuild-pnacl-ir.py30 basename = os.path.splitext(cname)[0] variable
31 llname = os.path.join(tempdir, basename + '.ll')
32 pnaclname = basename + '.pnacl.ll'
/external/tensorflow/tensorflow/compiler/xla/service/gpu/llvm_gpu_backend/
H A Ddump_ir_pass.cc88 const string basename = ReplaceFilenameExtension( local
94 new DumpIrPass(tensorflow::io::JoinPath(output_dir_, basename)));
/external/flatbuffers/src/
H A Didl_gen_fbs.cpp78 auto basename = flatbuffers::StripPath( local
80 schema += "include \"" + basename + ".fbs\";\n";
/external/icu/icu4c/source/tools/genrb/
H A Drbutil.c45 get_basename(char *basename, argument
53 uprv_strcpy(basename, lastSlash);
55 uprv_strcpy(basename, filename);
59 lastDot = uprv_strrchr(basename, '.');
/external/ltp/utils/ffsb-6.0-rc2/
H A Dfilelist.h49 char *basename; member in struct:benchfiles
118 /* Uses SUBDIRNAME_BASE/FILENAME_BASE + bf->basename to validate a
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_generator.cc110 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/python/cpython2/Lib/distutils/
H A Dfile_util.py114 dst = os.path.join(dst, os.path.basename(src))
129 if os.path.basename(dst) == os.path.basename(src):
180 from os.path import exists, isfile, isdir, basename, dirname namespace
193 dst = os.path.join(dst, basename(src))
/external/python/cpython3/Lib/distutils/
H A Dfile_util.py109 dst = os.path.join(dst, os.path.basename(src))
124 if os.path.basename(dst) == os.path.basename(src):
177 from os.path import exists, isfile, isdir, basename, dirname namespace
190 dst = os.path.join(dst, basename(src))
/external/skia/samplecode/
H A DSamplePdfFileViewer.cpp64 const char* basename = strrchr(fFilename.c_str(), SkPATH_SEPARATOR); local
65 name.append(basename ? basename+1: fFilename.c_str());
/external/skia/tools/viewer/
H A DBisectSlide.cpp52 const char* basename = strrchr(fFilePath.c_str(), SkOSPath::SEPARATOR); local
53 fName.printf("BISECT_%s", basename ? basename + 1 : fFilePath.c_str());
/external/skqp/samplecode/
H A DSamplePdfFileViewer.cpp64 const char* basename = strrchr(fFilename.c_str(), SkPATH_SEPARATOR); local
65 name.append(basename ? basename+1: fFilename.c_str());
/external/iproute2/misc/
H A Dlnstat.h28 char basename[NAME_MAX+1]; member in struct:lnstat_file
/external/libmtp/examples/
H A Dpathutils.c92 char * filename = basename(basec);
228 static char *basename(char *in) { function

Completed in 3602 milliseconds

123456