Home
last modified time | relevance | path

Searched refs:stringValue (Results 1 – 13 of 13) 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/main/com/android/ahat/
DSummarizer.java76 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/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/src/
DTestVariableArityLinkerMethod.java80 @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"),
DTestBadBootstrapArguments.java66 @Constant(stringValue = "very")
94 @Constant(stringValue = "very")
149 @Constant(stringValue = "2"),
177 @Constant(stringValue = "1"),
206 @Constant(stringValue = "pie")
DTestDynamicBootstrapArguments.java61 @Constant(stringValue = "A"),
DTestLinkerMethodMultipleArgumentTypes.java62 @Constant(stringValue = "Hello"),
DTestLinkerMethodWithRange.java60 @Constant(stringValue = "Hello"),
/art/test/952-invoke-custom/util-src/annotations/
DConstant.java46 String[] stringValue() default {}; in stringValue() method
/art/test/952-invoke-custom/util-src/transformer/
DIndyTransformer.java146 } else if (constant.stringValue().length == 1) { in visitMethod()
147 return constant.stringValue()[0]; in visitMethod()
/art/test/959-invoke-polymorphic-accessors/src/
DMain.java552 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/
Dinvoke-custom.txt1005 …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 …]