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

/art/test/569-checker-pattern-replacement/src-multidex/
H A DDerived.java26 public Derived(String stringValue) { argument
27 super(stringValue);
41 Derived(int intValue, double doubleValue, Object objectValue, String stringValue) { argument
42 super(intValue, doubleValue, objectValue, stringValue);
H A DBase.java28 Base(String stringValue) { argument
29 objectField = stringValue; // Unnecessary IPUT.
30 stringField = stringValue;
45 Base(int intValue, double doubleValue, Object objectValue, String stringValue) { argument
50 stringField = stringValue;
/art/test/569-checker-pattern-replacement/src/
H A DMain.java401 public static String constructBase(String stringValue) { argument
402 Base b = new Base(stringValue);
420 String stringValue = null;
421 Base b = new Base(stringValue);
531 int intValue, double doubleValue, Object objectValue, String stringValue) {
532 Base b = new Base(intValue, doubleValue, objectValue, stringValue);
692 public static String constructDerived(String stringValue) { argument
693 Derived d = new Derived(stringValue);
782 int intValue, double doubleValue, Object objectValue, String stringValue) {
783 Derived d = new Derived(intValue, doubleValue, objectValue, stringValue);
530 constructBase( int intValue, double doubleValue, Object objectValue, String stringValue) argument
781 constructDerived( int intValue, double doubleValue, Object objectValue, String stringValue) argument
[all...]

Completed in 97 milliseconds