/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
ICUResourceBundleReader.java | 150 final String baseName; 153 ReaderCacheKey(String baseName, String localeID) { 154 this.baseName = (baseName == null) ? "" : baseName; 167 return this.baseName.equals(info.baseName) 173 return baseName.hashCode() ^ localeID.hashCode(); 183 String fullName = ICUResourceBundleReader.getFullName(key.baseName, key.localeID); 186 if (key.baseName != null && key.baseName.startsWith(ICUData.ICU_BASE_NAME)) [all...] |
/external/ltp/tools/pounder21/ |
pounder | 68 BASENAME=`basename "$i"` 72 FULL_PATH=`pwd`/"$BASENAME" 79 ALREADY_EXCLUDED=`grep -w "$BASENAME" $POUNDER_TESTS/excluded/testlist | cut -d " " -f1` 82 echo "$BASENAME has already been excluded from the test scheduler. Make sure the test names in the test scheduler are unique." 86 echo "$BASENAME" "$FULL_PATH" >> "$POUNDER_TESTS"/excluded/testlist 87 mv "$i" "$POUNDER_TESTS"/excluded/"$BASENAME"
|
/system/core/base/ |
file.cpp | 267 std::string Basename(const std::string& path) { 268 // Copy path because basename may modify the string passed in. 272 // Use lock because basename() may write to a process global and return a 274 // callers to basename in the process also grab this same lock, but its 275 // better than nothing. Bionic's basename returns a thread-local buffer. 283 char* name = basename(&result[0]); 285 // In case basename returned a pointer to a process global, copy that string
|
/external/libvncserver/test/ |
tjunittest.c | 239 unsigned long *dstSize, int w, int h, int pf, char *basename, 260 snprintf(tempStr, 1024, "%s_enc_%s_%s_%s_Q%d.jpg", basename, 273 unsigned long jpegSize, int w, int h, int pf, char *basename, int subsamp, 314 unsigned long jpegSize, int w, int h, int pf, char *basename, int subsamp, 324 _decompTest(handle, jpegBuf, jpegSize, w, h, pf, basename, subsamp, 328 _decompTest(handle, jpegBuf, jpegSize, w, h, pf, basename, subsamp, flags, 337 char *basename) 359 compTest(chandle, &dstBuf, &size, w, h, pf, basename, subsamp, 100, 361 decompTest(dhandle, dstBuf, size, w, h, pf, basename, subsamp, 365 basename, subsamp, flags) [all...] |
/device/google/dragon/crash_collector/ |
crash_collector.cc | 215 const std::string basename = local 217 const std::string coredump = basename + ".core"; 218 const std::string proc_files_dir = basename + ".proc"; 227 const std::string minidump = basename + ".dmp"; 235 const std::string metadata = basename + ".meta";
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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
185 dst = os.path.join(dst, basename(src))
|
/external/antlr/antlr-3.4/runtime/Python/ |
setup.py | 106 testID = os.path.basename(testPath)[:-3] 125 (os.path.basename(testPath), buf.getvalue()) 233 and not os.path.basename(testPath)[:-3].startswith(self.testcase)): 240 testID = os.path.basename(testPath)[:-3] 257 (os.path.basename(testPath), buf.getvalue()))
|
/external/iproute2/misc/ |
lnstat_util.c | 184 strcpy(lf->basename, file); 187 strcat(lf->path, lf->basename); 240 strncpy(lf->basename, "rt_cache", sizeof(lf->basename)); 318 if (file && strcmp(file, lf->basename))
|
/external/webrtc/webrtc/base/ |
pathutils.cc | 29 // EXT_DELIM separates a file basename from extension 183 std::string Pathname::basename() const { function in class:rtc::Pathname 187 bool Pathname::SetBasename(const std::string& basename) { 188 if(basename.find_first_of(FOLDER_DELIMS) != std::string::npos) { 191 basename_.assign(basename);
|
/prebuilts/gdb/darwin-x86/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 185 dst = os.path.join(dst, basename(src))
|
/prebuilts/gdb/linux-x86/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 185 dst = os.path.join(dst, basename(src))
|
/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 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 185 dst = os.path.join(dst, basename(src))
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Object/Parser/ |
InfDefineObject.py | 186 self.BaseName = None
212 # @param BaseName: BaseName
214 def SetBaseName(self, BaseName, Comments):
218 if self.BaseName != None:
222 if not (BaseName == '' or BaseName == None):
223 if IsValidWord(BaseName) and not BaseName.startswith("_"):
224 self.BaseName = InfDefMember() [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_posixpath.py | 5 from posixpath import realpath, abspath, dirname, basename
70 self.assertEqual(posixpath.basename("/foo/bar"), "bar")
71 self.assertEqual(posixpath.basename("/"), "")
72 self.assertEqual(posixpath.basename("foo"), "foo")
73 self.assertEqual(posixpath.basename("////foo"), "foo")
74 self.assertEqual(posixpath.basename("//foo//bar"), "bar")
238 self.assertEqual(realpath(basename(ABSTFN)), ABSTFN)
283 self.assertEqual(realpath(basename(ABSTFN) + "/link-y/.."),
303 base = basename(ABSTFN)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/ |
setuptools_build_ext.py | 61 dest_filename = os.path.join(package_dir,os.path.basename(filename))
220 % os.path.basename(ext._file_name),
279 basename, ext = os.path.splitext(filename)
283 basename = basename[3:]
286 objects, basename, output_dir, debug, target_lang
|
/device/linaro/bootloader/edk2/OvmfPkg/Include/Protocol/ |
XenBus.h | 78 @param Node The basename of the file to read.
102 @param Node The basename of the file to read.
126 @param Node The basename of the path to read.
150 @param Node The basename of the node to remove.
308 @param Node The basename of the path to watch.
331 @param Node The basename of the path to watch.
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/ |
X509Util.java | 325 String baseName, 334 while ((alias = prov.getProperty("Alg.Alias." + baseName + "." + algorithm)) != null) 339 String className = prov.getProperty(baseName + "." + algorithm); 379 String baseName, 393 Implementation imp = getImplementation(baseName, Strings.toUpperCase(algorithm), prov[i]); 401 imp = getImplementation(baseName, algorithm, prov[i]);
|
/external/deqp/modules/gles31/functional/ |
es31fSSBOLayoutTests.cpp | [all...] |
/external/libmojo/base/android/java/src/org/chromium/base/ |
PerfTraceEvent.java | 326 * @param baseName The base name to use when generating the name. 330 public static String makeSafeTraceName(String baseName, String suffix) { 333 if (baseName.length() + suffixLength > MAX_NAME_LENGTH) { 334 baseName = baseName.substring(0, MAX_NAME_LENGTH - suffixLength); 336 return baseName + suffix;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
setuptools_build_ext.py | 61 dest_filename = os.path.join(package_dir,os.path.basename(filename)) 220 % os.path.basename(ext._file_name), 279 basename, ext = os.path.splitext(filename) 283 basename = basename[3:] 286 objects, basename, output_dir, debug, target_lang
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
setuptools_build_ext.py | 61 dest_filename = os.path.join(package_dir,os.path.basename(filename)) 220 % os.path.basename(ext._file_name), 279 basename, ext = os.path.splitext(filename) 283 basename = basename[3:] 286 objects, basename, output_dir, debug, target_lang
|
/external/libxml2/ |
Makefile.am | 238 name=`basename $$i`; \ 257 name=`basename $$i`; \ 276 name=`basename $$i`; \ 290 name=`basename $$i`; \ 307 name=`basename $$i`; \ 325 name=`basename $$i`; \ 346 name=`basename $$i`; \ 367 name=`basename $$i`; \ 388 name=`basename $$i`; \ 409 name=`basename $$i`; [all...] |
/external/opencv/cxcore/src/ |
cxswitcher.cpp | 340 const char* basename; member in struct:CvPluginInfo 563 plugins[i].basename = 0; 564 plugins[CV_PLUGIN_NONE].basename = 0; 566 plugins[CV_PLUGIN_OPTCV].basename = "ippopencv"; 567 plugins[CV_PLUGIN_IPPCV].basename = "ippcv"; 568 plugins[CV_PLUGIN_IPPI].basename = "ippi"; 569 plugins[CV_PLUGIN_IPPS].basename = "ipps"; 570 plugins[CV_PLUGIN_IPPVM].basename = "ippvm"; 571 plugins[CV_PLUGIN_IPPCC].basename = "ippcc"; 572 plugins[CV_PLUGIN_MKL].basename = "mkl_" [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/ |
FfsInfStatement.py | 140 self.FinalTargetSuffixMap['.depex'] = [os.path.join(self.EfiOutputPath, self.BaseName) + '.depex']
187 # Set Ffs BaseName, MdouleGuid, ModuleType, Version, OutputPath
189 self.BaseName = Inf.BaseName
204 self.BaseName = Inf.BaseName
310 GenFdsGlobalVariable.VerboseLogger("BaseName : %s" % self.BaseName)
321 self.ModuleGuid + self.BaseName)
352 Basename = os.path.basename(EfiFile) [all...] |