Searched defs:suffix (Results 1 - 11 of 11) sorted by relevance

/dalvik/libcore/support/src/test/java/tests/support/
H A DSupport_GetLocal.java90 public static File createTempFile(String suffix) throws IOException { argument
91 return File.createTempFile("hyts_", suffix, null);
/dalvik/dx/src/com/android/dx/dex/code/
H A DOutputCollector.java24 * list and a suffix (generally consisting of adjunct data referred to
37 * {@code null-ok;} suffix for the output, or {@code null} if the suffix
40 private ArrayList<DalvInsn> suffix; field in class:OutputCollector
47 * suffix
53 this.suffix = new ArrayList<DalvInsn>(suffixInitialCapacity);
80 * Adds an instruction to the output suffix.
85 suffix.add(insn);
97 if (suffix == null) {
106 * Helper for {@link #getFinisher}, which appends the suffix t
[all...]
/dalvik/libcore/archive/src/main/java/org/apache/harmony/archive/util/
H A DUtil.java26 * Returns whether the given source string ends with the suffix, ignoring
31 * @param suffix
32 * the suffix to test.
33 * @return {@code true} if the source does end with the given suffix, or
36 public static boolean asciiEndsWithIgnoreCase(String source, String suffix) { argument
37 int length = suffix.length();
44 char c2 = suffix.charAt(i);
/dalvik/dx/src/com/android/dx/util/
H A DFixedSizeList.java99 * @param suffix {@code null-ok;} suffix for the end of the result
102 public String toString(String prefix, String separator, String suffix) { argument
103 return toString0(prefix, separator, suffix, false);
113 * @param suffix {@code null-ok;} suffix for the end of the result
116 public String toHuman(String prefix, String separator, String suffix) { argument
117 return toString0(prefix, separator, suffix, true);
244 * @param suffix {@code null-ok;} suffix fo
248 toString0(String prefix, String separator, String suffix, boolean human) argument
[all...]
/dalvik/libcore/support/src/test/java/tests/support/resource/
H A DSupport_Resources.java111 public static File createTempFile(String suffix) throws IOException { argument
112 return File.createTempFile("hyts_", suffix, null);
/dalvik/vm/
H A DJarFile.c36 * but with the supplied suffix. E.g.,
43 static int openAlternateSuffix(const char *fileName, const char *suffix, argument
48 size_t suffixLen = strlen(suffix);
59 * the last dot, and copy the suffix to just after it.
67 memcpy(c + 1, suffix, suffixLen + 1);
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
H A DXMLString.java298 * 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); argument
H A DXMLStringDefault.java355 * 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) argument
369 return m_str.endsWith(suffix);
/dalvik/libcore/xml/src/main/java/org/apache/xpath/objects/
H A DXString.java595 * Tests if this string ends with the specified suffix.
597 * @param suffix the suffix.
599 * argument is a suffix of the character sequence represented by
604 * @exception java.lang.NullPointerException if <code>suffix</code> is
607 public boolean endsWith(String suffix) argument
609 return str().endsWith(suffix);
/dalvik/libcore/luni/src/main/java/java/io/
H A DFile.java258 private String join(String prefix, String suffix) { argument
262 haveSlash = (suffix.length() > 0 && suffix.charAt(0) == separatorChar);
264 return haveSlash ? (prefix + suffix) : (prefix + separatorChar + suffix);
1166 * Creates an empty temporary file using the given prefix and suffix as part
1167 * of the file name. If suffix is {@code null}, {@code .tmp} is used. This
1174 * @param suffix
1175 * the suffix to the temp file name.
1180 public static File createTempFile(String prefix, String suffix) argument
1206 createTempFile(String prefix, String suffix, File directory) argument
1228 genTempFile(String prefix, String suffix, File directory) argument
[all...]
/dalvik/libcore/luni/src/main/java/java/lang/
H A DString.java808 * specified string is a suffix.
810 * @param suffix
811 * the suffix to look for.
812 * @return {@code true} if the specified string is a suffix of this string,
815 * if {@code suffix} is {@code null}.
817 public boolean endsWith(String suffix) { argument
818 return regionMatches(count - suffix.count, suffix, 0, suffix.count);

Completed in 259 milliseconds