HomeSort by relevance Sort by last modified time
    Searched refs:suffix (Results 101 - 125 of 345) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/apache-harmony/support/src/test/java/tests/support/resource/
Support_Resources.java 100 public static File createTempFile(String suffix) throws IOException {
101 return File.createTempFile("hyts_", suffix, null);
  /external/apache-xml/src/main/java/org/apache/xml/utils/
XMLStringDefault.java 355 * Tests if this string ends with the specified suffix.
357 * @param suffix the suffix.
359 * argument is a suffix of the character sequence represented by
364 * @exception java.lang.NullPointerException if <code>suffix</code> is
367 public boolean endsWith(String suffix)
369 return m_str.endsWith(suffix);
XMLString.java 298 * Tests if this string ends with the specified suffix.
300 * @param suffix the suffix.
302 * argument is a suffix of the character sequence represented by
307 * @exception java.lang.NullPointerException if <code>suffix</code> is
310 public abstract boolean endsWith(String suffix);
  /external/chromium/base/
file_path.h 231 // Inserts |suffix| after the file name portion of |path| but before the
234 // path == "C:\pics\jojo.jpg" suffix == " (1)", returns "C:\pics\jojo (1).jpg"
235 // path == "jojo.jpg" suffix == " (1)", returns "jojo (1).jpg"
236 // path == "C:\pics\jojo" suffix == " (1)", returns "C:\pics\jojo (1)"
237 // path == "C:\pics.old\jojo" suffix == " (1)", returns "C:\pics.old\jojo (1)"
238 FilePath InsertBeforeExtension(const StringType& suffix) const;
239 FilePath InsertBeforeExtensionASCII(const base::StringPiece& suffix) const;
  /external/chromium/chrome/browser/chromeos/
language_preferences.cc 210 #define IDS_MOZC(suffix) \
211 IDS_OPTIONS_SETTINGS_LANGUAGES_MOZC_##suffix
  /external/opencv/cxcore/src/
cxswitcher.cpp 591 const char** suffix = i == CV_PLUGIN_OPTCV ? opencv_sfx : local
593 if( suffix == mkl_sfx_ia32 )
596 suffix++;
598 suffix++;
601 for( ; *suffix != 0; suffix++ )
604 plugins[i].basename, *suffix );
617 plugins[i].basename, *suffix );
  /external/webkit/Tools/Scripts/webkitpy/common/net/
credentials_unittest.py 145 with _TemporaryDirectory(suffix="not_a_git_repo") as temp_dir_path:
168 with _TemporaryDirectory(suffix="not_a_git_repo") as temp_dir_path:
  /frameworks/ex/common/tools/
make-iana-tld-pattern.py 111 def makePattern(prefix, suffix, buckets, isWebUrl=False):
126 output += suffix
  /libcore/support/src/test/java/tests/support/resource/
Support_Resources.java 113 public static File createTempFile(String suffix) throws IOException {
114 return File.createTempFile("hyts_", suffix, null);
  /build/core/
multi_prebuilt.mk 43 # name will be the filename with the suffix removed.
69 $(eval LOCAL_MODULE_SUFFIX := $(suffix $(LOCAL_SRC_FILES))) \
  /external/libffi/src/
closures.c 209 static const char suffix[] = "/ffiXXXXXX"; local
211 char *tempname = __builtin_alloca (lendir + sizeof (suffix));
217 memcpy (tempname + lendir, suffix, sizeof (suffix));
  /external/llvm/utils/lit/lit/
ProgressBar.py 239 suffix = ''
248 suffix = ' ETA: %02d:%02d:%02d'%(h,m,s)
249 barWidth = self.width - len(prefix) - len(suffix) - 2
257 (self.bar % (prefix, '='*n, '-'*(barWidth-n), suffix)) +
  /external/webkit/Source/WebCore/page/
FrameTree.cpp 164 // Suffix buffer has more than enough space for:
170 char suffix[40]; local
171 snprintf(suffix, sizeof(suffix), "/<!--frame%u-->-->", childCount());
173 name += suffix;
  /external/webkit/Tools/WebKitTestRunner/qt/
TestControllerQt.cpp 101 #error Library path suffix should be specified for this platform
  /dalvik/vm/
JarFile.cpp 38 * but with the supplied suffix. E.g.,
45 static int openAlternateSuffix(const char *fileName, const char *suffix,
50 size_t suffixLen = strlen(suffix);
61 * the last dot, and copy the suffix to just after it.
69 memcpy(c + 1, suffix, suffixLen + 1);
  /external/elfutils/src/
nm.c 116 const char *suffix);
120 const char *suffix);
418 const char *suffix)
423 size_t suffix_len = suffix != NULL ? strlen (suffix) : 0;
436 if (suffix != NULL)
437 cp = stpcpy (cp, suffix);
1207 const char *suffix)
1210 size_t suffix_len = suffix == NULL ? 0 : strlen (suffix);
    [all...]
  /external/icu4c/tools/icupkg/
icupkg.cpp 459 char suffix[6]="?.dat"; local
462 suffix[0]=pkg->getInType();
465 if((s-outFilenameBuffer)>5 && 0==memcmp(s-5, suffix, 5)) {
  /external/llvm/lib/Support/
Path.cpp 216 Path::appendSuffix(StringRef suffix) {
217 if (!suffix.empty()) {
219 path.append(suffix);
  /external/skia/include/core/
SkString.h 26 bool SkStrEndsWith(const char string[], const char suffix[]);
88 bool endsWith(const char suffix[]) const {
89 return SkStrEndsWith(fRec->data(), suffix);
  /libcore/luni/src/test/java/libcore/java/io/
OldInputStreamReaderTest.java 247 final byte[] suffix = {
260 System.arraycopy(suffix, 0, bytes, prefixLength, suffix.length);
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
OutputFinisher.java 582 DalvInsn suffix; local
587 suffix = null;
591 suffix = insn.hrSuffix();
612 if (suffix != null) {
613 result.add(suffix);
  /dalvik/dx/src/com/android/dx/dex/code/
OutputFinisher.java 601 DalvInsn suffix; local
606 suffix = null;
613 suffix = insn.expandedSuffix(compatRegs);
628 if (suffix != null) {
629 result.add(suffix);
  /external/apache-xml/src/main/java/org/apache/xalan/res/
XSLTErrorResources.java 1460 String suffix = getResourceSuffix(locale); local
1501 String suffix = "_" + locale.getLanguage(); local
    [all...]
  /external/qemu/android/utils/
ini.c 486 char suffix = '\0'; local
490 suffix = 'g';
494 suffix = 'm';
498 suffix = 'k';
501 snprintf(temp, sizeof temp, "%" PRId64 "%c", size/divisor, suffix);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssist.java 490 // Should we do suffix completion on dimension units etc?
676 final String suffix; local
681 suffix = "=\"\""; //$NON-NLS-1$
682 cursorPosition = keyword.length() + suffix.length() - 1;
683 displayString = keyword + endTag; // don't include suffix;
685 suffix = endTag;
699 keyword + suffix, // String replacementString
1237 String suffix = value.substring(suffixBegin); local
    [all...]

Completed in 1103 milliseconds

1 2 3 45 6 7 8 91011>>