Searched defs:strings (Results 1 - 2 of 2) sorted by relevance

/libcore/libart/src/main/java/java/lang/
H A DDexCache.java38 * A dex cache holds resolved copies of strings, fields, methods, and classes from the dexfile.
78 * References to strings (C array pointer) as they become resolved following
79 * interpreter semantics. All strings are interned.
81 private long strings; field in class:DexCache
109 * The number of elements in the native strings array.
/libcore/luni/src/test/java/libcore/java/lang/invoke/
H A DMethodHandlesTest.java1220 public VariableArityTester(String s0, String... strings) { update(s0, strings); } argument
1242 public String update(String s0, String... strings) { return lastResult = tally(s0, strings); } argument
1269 public static String tally(String s0, String... strings) { argument
1270 return s0 + ", " + Arrays.toString(strings);
1297 public static Object getAsObject(String[] strings) { argument
1298 return (Object) strings;

Completed in 131 milliseconds