HomeSort by relevance Sort by last modified time
    Searched full:basename (Results 1301 - 1325 of 4293) sorted by null

<<51525354555657585960>>

  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Object/POM/
CommonObject.py 392 self.BaseName = ''
407 def SetBaseName(self, BaseName):
408 self.BaseName = BaseName
411 return self.BaseName
  /external/ImageMagick/coders/
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
xbm.c 493 basename[MagickPathExtent],
531 GetPathComponent(image->filename,BasePath,basename);
533 basename,(double) image->columns);
536 basename,(double) image->rows);
539 "static char %s_bits[] = {\n",basename);
486 basename[MagickPathExtent], local
  /external/boringssl/src/util/
doc.go 39 // Name is the basename of the header file (e.g. "ex_data.html").
628 "baseName": filepath.Base,
650 <tr><td><a href="{{. | baseName}}.html">{{. | baseName}}</a></td><td>{{. | baseName | headerDescription}}</td></tr>
  /external/deqp/executor/tools/
xeCommandLineExecutor.cpp 289 string baseName = item.getBaseName();
290 if (baseName.find("-cases.xml") == baseName.length()-10)
292 string packageName = baseName.substr(0, baseName.length()-10);
  /external/icu/icu4c/source/tools/icupkg/
icupkg.cpp 126 "\tThe prefix normally matches the package basename, and icupkg checks that,\n"
134 "\t input package, rather than its basename.\n"
144 "\t Overrides the package basename\n"
266 /* get the program basename */
522 * and if the last basename character matches the input file's type,
  /frameworks/base/services/core/java/com/android/server/locksettings/
LockSettingsStorage.java 475 private String getLockCredentialFilePathForUser(int userId, String basename) {
480 return dataSystemDirectory + basename;
482 return new File(Environment.getUserSystemDirectory(userId), basename).getAbsolutePath();
547 String baseName = String.format("%016x.%s", handle, name);
551 return new File(baseDir, baseName).getAbsolutePath();
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
ExprModel.java 218 String baseName;
221 baseName = type;
223 baseName = type.substring(dotIndex + 1);
226 String candidate = cnt == 0 ? baseName : baseName + cnt;
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/
testit_android 13 currentdir=`basename $currentpath`
22 currentdir=`basename $currentpath`
129 "Usage: $(basename $0) [options]
306 local FILE_BASENAME=$(basename "$FILE")
314 local EXECUTABLE_BASENAME=$(basename "$EXECUTABLE")
  /art/tools/common/
common.py 392 DEVICE_TMP_PATH, os.path.basename(self._host_env_path))
410 name = os.path.basename(temp_file.name)
497 self._device_env_path, os.path.basename(path)))
  /art/tools/runtime_memusage/
sanitizer_logcat_analysis.sh 285 apk_dex_files+=( $(basename "$dex_file") )
291 base_name=$(basename "$apk_file")
358 dex_name="Dex File name: $(basename "$dex_file_path") "
  /development/build/tools/
sdk_repo.mk 34 $(hide) cd $(basename $(3)) && \
57 $(hide) cd $(basename $(3))/$(4) && \
84 $(hide) cd $(basename $(3))/$(5) && \
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
cygwinccompiler.py 206 os.path.basename(output_filename))
214 "LIBRARY %s" % os.path.basename(output_filename),
281 base = os.path.basename (base)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
posixpath.py 21 "basename","dirname","commonprefix","getsize","getmtime",
108 # Return the tail (basename) part of a path, same as split(path)[1].
110 def basename(p): function
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/
BuildClassObject.py 133 # @var BaseName: To store value for BaseName
174 self.BaseName = ''
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiVfrCompile/
VfrFormPkg.cpp 374 IN INT8 *BaseName,
384 if ((BaseName == NULL) || (pFile == NULL)) {
388 fprintf (pFile, "\nunsigned char %sBin[] = {\n", BaseName);
  /external/autotest/client/bin/
base_sysinfo.py 81 logf = os.path.basename(path)
212 logfile(fname, logf=os.path.basename(fname) + '.before'))
221 logfile(fname, logf=os.path.basename(fname) + '.after'))
  /external/deqp/external/vulkancts/framework/vulkan/
vkBinaryRegistry.cpp 439 const std::string baseName = path.getBaseName();
441 if (isProgramFileName(baseName))
443 const deUint32 index = getProgramIndexFromName(baseName);
  /external/deqp/modules/gles2/accuracy/
es2aVaryingInterpolationTests.cpp 321 string baseName = string(glu::getPrecisionName((glu::Precision)precision)) + "_" + coordRanges[coordNdx].name;
323 addChild(new InterpolationCase(m_context, baseName.c_str(), "", (glu::Precision)precision, coordRanges[coordNdx].minVal, coordRanges[coordNdx].maxVal, false));
324 addChild(new InterpolationCase(m_context, (baseName + "_proj").c_str(), "", (glu::Precision)precision, coordRanges[coordNdx].minVal, coordRanges[coordNdx].maxVal, true));
  /external/deqp/modules/gles3/accuracy/
es3aVaryingInterpolationTests.cpp 327 string baseName = string(glu::getPrecisionName((glu::Precision)precision)) + "_" + coordRanges[coordNdx].name;
329 addChild(new InterpolationCase(m_context, baseName.c_str(), "", (glu::Precision)precision, coordRanges[coordNdx].minVal, coordRanges[coordNdx].maxVal, false));
330 addChild(new InterpolationCase(m_context, (baseName + "_proj").c_str(), "", (glu::Precision)precision, coordRanges[coordNdx].minVal, coordRanges[coordNdx].maxVal, true));
  /external/icu/icu4c/source/common/
umapfile.c 364 char *basename; local
376 basename=uprv_computeDirPath(path, pathBuffer);
422 uprv_strcpy(basename, LIB_PREFIX U_LIBICUDATA_NAME U_ICU_VERSION_SHORT LIB_SUFFIX);
  /external/icu/icu4c/source/test/intltest/
ucdtest.cpp 206 char *basename=strchr(path, 0); local
207 strcpy(basename, "DerivedCoreProperties.txt");
217 strcpy(basename, "DerivedNormalizationProps.txt");
  /external/libchrome/base/files/
file_path.cc 109 // of the file name. The position is relative to BaseName(), not value().
236 base = current.BaseName();
243 base = current.BaseName();
245 ret_val.push_back(current.BaseName().value());
305 // libgen's dirname and basename aren't guaranteed to be thread-safe and aren't
334 // path_ is somewhere else, trim the basename.
345 FilePath FilePath::BaseName() const {
369 FilePath base(BaseName());
378 FilePath base(BaseName());
412 if (IsEmptyOrSpecialCase(BaseName().value())
    [all...]
  /external/libgsm/
Makefile 100 BASENAME = basename
278 @-mv `$(BASENAME) $@` $@ > /dev/null 2>&1
  /external/libopus/celt/dump_modes/
dump_modes.c 310 #define BASENAME "static_modes_fixed"
312 #define BASENAME "static_modes_float"
340 file = fopen(BASENAME ".h", "w");

Completed in 621 milliseconds

<<51525354555657585960>>