Home
last modified time | relevance | path

Searched refs:stringValue (Results 1 – 6 of 6) sorted by relevance

/art/test/569-checker-pattern-replacement/src-multidex/
DBase.java28 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()
DDerived.java26 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/
DSummarizer.java80 String stringValue = inst.asString(kMaxChars); in summarize() local
81 if (stringValue != null) { in summarize()
82 formatted.appendFormat(" \"%s", stringValue); in summarize()
83 formatted.append(kMaxChars == stringValue.length() ? "..." : "\""); in summarize()
/art/test/569-checker-pattern-replacement/src/
DMain.java405 public static String constructBase(String stringValue) { in constructBase() argument
406 Base b = new Base(stringValue); in constructBase()
425 String stringValue = null; in constructBaseWithNullString() local
426 Base b = new Base(stringValue); in constructBaseWithNullString()
539 int intValue, double doubleValue, Object objectValue, String stringValue) { in constructBase() argument
540 Base b = new Base(intValue, doubleValue, objectValue, stringValue); in constructBase()
707 public static String constructDerived(String stringValue) { in constructDerived() argument
708 Derived d = new Derived(stringValue); in constructDerived()
800 int intValue, double doubleValue, Object objectValue, String stringValue) { in constructDerived() argument
801 Derived d = new Derived(intValue, doubleValue, objectValue, stringValue); in constructDerived()
/art/test/952-invoke-custom/generator/
DTestLinkerMethodMultipleArgumentTypes.java42 @Constant(doubleValue = 2.2), @Constant(stringValue = "Hello"),
/art/test/959-invoke-polymorphic-accessors/src/
DMain.java537 String stringValue = value instanceof String ? ((String) value) : "No Spock, no"; in tryAccessor() local
538 setString(methodHandle, valueHolder, stringValue, in tryAccessor()
540 setString(methodHandle, stringValue, in tryAccessor()
542 getString(methodHandle, valueHolder, stringValue, in tryAccessor()
544 getString(methodHandle, stringValue, in tryAccessor()