/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/test/569-checker-pattern-replacement/src/ |
D | Main.java | 405 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/tools/ahat/src/main/com/android/ahat/ |
D | Summarizer.java | 76 String stringValue = inst.asString(kMaxChars); in summarize() local 77 if (stringValue != null) { in summarize() 78 formatted.appendFormat(" \"%s", stringValue); in summarize() 79 formatted.append(kMaxChars == stringValue.length() ? "..." : "\""); in summarize()
|
/art/test/952-invoke-custom/src/ |
D | TestVariableArityLinkerMethod.java | 80 @Constant(stringValue = "Aachen"), 81 @Constant(stringValue = "Aalborg"), 82 @Constant(stringValue = "Aalto") 102 constantArgumentsForBootstrapMethod = {@Constant(stringValue = "barium")} 160 @Constant(stringValue = "zoo"), 161 @Constant(stringValue = "zoogene"), 162 @Constant(stringValue = "zoogenic") 185 @Constant(stringValue = "zonic") 432 @Constant(stringValue = "A"), 433 @Constant(stringValue = "B"),
|
D | TestBadBootstrapArguments.java | 66 @Constant(stringValue = "very") 94 @Constant(stringValue = "very") 149 @Constant(stringValue = "2"), 177 @Constant(stringValue = "1"), 206 @Constant(stringValue = "pie")
|
D | TestDynamicBootstrapArguments.java | 61 @Constant(stringValue = "A"),
|
D | TestLinkerMethodMultipleArgumentTypes.java | 62 @Constant(stringValue = "Hello"),
|
D | TestLinkerMethodWithRange.java | 60 @Constant(stringValue = "Hello"),
|
/art/test/952-invoke-custom/util-src/annotations/ |
D | Constant.java | 46 String[] stringValue() default {}; in stringValue() method
|
/art/test/952-invoke-custom/util-src/transformer/ |
D | IndyTransformer.java | 146 } else if (constant.stringValue().length == 1) { in visitMethod() 147 return constant.stringValue()[0]; in visitMethod()
|
/art/test/959-invoke-polymorphic-accessors/src/ |
D | Main.java | 552 String stringValue = value instanceof String ? ((String) value) : "No Spock, no"; in tryAccessor() local 553 setString(methodHandle, valueHolder, stringValue, in tryAccessor() 555 setString(methodHandle, stringValue, in tryAccessor() 557 getString(methodHandle, valueHolder, stringValue, in tryAccessor() 559 getString(methodHandle, stringValue, in tryAccessor()
|
/art/test/dexdump/ |
D | invoke-custom.txt | 1005 …pMethod={ Lannotations/Constant; intValue={ 1 } Lannotations/Constant; stringValue={ "2" } Lannota… 1007 …Method={ Lannotations/Constant; intValue={ -1 } Lannotations/Constant; stringValue={ "very" } } fi… 1026 …ring; } } constantArgumentsForBootstrapMethod={ Lannotations/Constant; stringValue={ "1" } Lannota… 1028 … Lannotations/Constant; doubleValue={ 3.14159 } Lannotations/Constant; stringValue={ "pie" } } fie… 1030 …Method={ Lannotations/Constant; intValue={ -1 } Lannotations/Constant; stringValue={ "very" } } fi… 2274 …ng; J } } constantArgumentsForBootstrapMethod={ Lannotations/Constant; stringValue={ "A" } Lannota… 3871 ….1 } Lannotations/Constant; doubleValue={ 2.2 } Lannotations/Constant; stringValue={ "Hello" } Lan… 4303 …annotations/Constant; stringValue={ "Aachen" } Lannotations/Constant; stringValue={ "Aalborg" } La… 4305 …ring; } } constantArgumentsForBootstrapMethod={ Lannotations/Constant; stringValue={ "barium" } } … 4309 … Lannotations/Constant; stringValue={ "zoo" } Lannotations/Constant; stringValue={ "zoogene" } Lan… [all …]
|