Searched defs:s2 (Results 1 - 8 of 8) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/util/
H A DHex.java193 public static String s2(int v) { method in class:Hex
H A DTwoColumnOutput.java56 * @param s2 {@code non-null;} second string
61 String s2, int width2) {
63 int len2 = s2.length();
71 twoOut.getRight().write(s2);
60 toString(String s1, int width1, String spacer, String s2, int width2) argument
/dalvik/dx/src/com/android/dx/util/
H A DHex.java193 public static String s2(int v) { method in class:Hex
H A DTwoColumnOutput.java56 * @param s2 {@code non-null;} second string
61 String s2, int width2) {
63 int len2 = s2.length();
71 twoOut.getRight().write(s2);
60 toString(String s1, int width1, String spacer, String s2, int width2) argument
/dalvik/libdex/
H A DDexUtf.cpp28 int dexUtf8Cmp(const char* s1, const char* s2) { argument
31 if (*s2 == '\0') {
35 } else if (*s2 == '\0') {
40 int utf2 = dexGetUtf16FromUtf8(&s2);
/dalvik/vm/
H A DCommon.h90 typedef int16_t s2; typedef
108 s2 s;
H A DInit.cpp238 const char *s2; local
241 val = strtoul(s, (char **)&s2, 10);
242 if (s2 != s) {
243 /* s2 should be pointing just after the number.
249 if (*s2 != '\0') {
256 c = *s2++;
257 if (*s2 == '\0') {
/dalvik/dx/src/com/android/dx/command/dump/
H A DBaseDumper.java272 * @param s2 {@code non-null;} the second column's string
275 protected final String twoColumns(String s1, String s2) { argument
281 int len2 = s2.length();
285 iw.write(s2);
286 if ((len2 == 0) || (s2.charAt(len2 - 1) != '\n')) {
293 return TwoColumnOutput.toString(s1, w1, separator, s2, w2);

Completed in 122 milliseconds