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/dx/src/com/android/dx/command/dump/
H A DBaseDumper.java270 * @param s2 {@code non-null;} the second column's string
273 protected final String twoColumns(String s1, String s2) { argument
279 int len2 = s2.length();
283 iw.write(s2);
284 if ((len2 == 0) || (s2.charAt(len2 - 1) != '\n')) {
291 return TwoColumnOutput.toString(s1, w1, separator, s2, w2);
/dalvik/vm/
H A DCommon.h90 typedef int16_t s2; typedef
109 s2 s;
130 s2 _s;
131 s2 s;
H A DInit.cpp251 const char* s2; local
254 val = strtoul(s, (char* *)&s2, 10);
255 if (s2 != s) {
256 /* s2 should be pointing just after the number.
262 if (*s2 != '\0') {
269 c = *s2++;
270 if (*s2 == '\0') {

Completed in 235 milliseconds