Searched defs:text (Results 1 - 3 of 3) sorted by relevance

/dalvik/tests/094-pattern/src/
H A DMain.java86 static String getStringAsHex(String text) { argument
87 StringBuilder sb = new StringBuilder(text.length() * 4);
89 for (int i = 0; i < text.length(); i++) {
90 sb.append(Integer.toHexString((int) text.charAt(i)));
/dalvik/dexgen/src/com/android/dexgen/util/
H A DByteArrayAnnotatedOutput.java494 String text;
500 text = "";
504 text = a.getText();
509 right.write(text);
564 /** {@code non-null;} annotation text */
565 private final String text; field in class:ByteArrayAnnotatedOutput.Annotation
573 * @param text {@code non-null;} annotation text
575 public Annotation(int start, int end, String text) { argument
578 this.text
587 Annotation(int start, String text) argument
[all...]
/dalvik/dx/src/com/android/dx/util/
H A DByteArrayAnnotatedOutput.java487 String text;
493 text = "";
497 text = a.getText();
502 right.write(text);
557 /** {@code non-null;} annotation text */
558 private final String text; field in class:ByteArrayAnnotatedOutput.Annotation
566 * @param text {@code non-null;} annotation text
568 public Annotation(int start, int end, String text) { argument
571 this.text
580 Annotation(int start, String text) argument
[all...]

Completed in 133 milliseconds