Searched refs:stringValue (Results 1 – 4 of 4) sorted by relevance
/art/test/569-checker-pattern-replacement/src-multidex/ |
D | Base.java | 28 Base(String stringValue) { in Base() argument 29 objectField = stringValue; // Unnecessary IPUT. in Base() 30 stringField = stringValue; in Base() 45 Base(int intValue, double doubleValue, Object objectValue, String stringValue) { in Base() argument 50 stringField = stringValue; in Base()
|
D | Derived.java | 26 public Derived(String stringValue) { in Derived() argument 27 super(stringValue); in Derived() 41 Derived(int intValue, double doubleValue, Object objectValue, String stringValue) { in Derived() argument 42 super(intValue, doubleValue, objectValue, stringValue); in Derived()
|
/art/tools/ahat/src/ |
D | Value.java | 60 String stringValue = InstanceUtils.asString(inst, kMaxChars); in renderInstance() local 61 if (stringValue != null) { in renderInstance() 62 formatted.appendFormat(" \"%s", stringValue); in renderInstance() 63 formatted.append(kMaxChars == stringValue.length() ? "..." : "\""); in renderInstance()
|
/art/test/569-checker-pattern-replacement/src/ |
D | Main.java | 401 public static String constructBase(String stringValue) { in constructBase() argument 402 Base b = new Base(stringValue); in constructBase() 420 String stringValue = null; in constructBaseWithNullString() local 421 Base b = new Base(stringValue); in constructBaseWithNullString() 531 int intValue, double doubleValue, Object objectValue, String stringValue) { in constructBase() argument 532 Base b = new Base(intValue, doubleValue, objectValue, stringValue); in constructBase() 692 public static String constructDerived(String stringValue) { in constructDerived() argument 693 Derived d = new Derived(stringValue); in constructDerived() 782 int intValue, double doubleValue, Object objectValue, String stringValue) { in constructDerived() argument 783 Derived d = new Derived(intValue, doubleValue, objectValue, stringValue); in constructDerived()
|