Searched refs:castValue (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/apex/appsearch/framework/java/external/android/app/appsearch/ |
D | GenericDocument.java | 505 String[] castValue = (String[]) accumulator.get(i); in flattenAccumulator() local 506 System.arraycopy(castValue, 0, result, total, castValue.length); in flattenAccumulator() 507 total += castValue.length; in flattenAccumulator() 519 long[] castValue = (long[]) accumulator.get(i); in flattenAccumulator() local 520 System.arraycopy(castValue, 0, result, total, castValue.length); in flattenAccumulator() 521 total += castValue.length; in flattenAccumulator() 533 double[] castValue = (double[]) accumulator.get(i); in flattenAccumulator() local 534 System.arraycopy(castValue, 0, result, total, castValue.length); in flattenAccumulator() 535 total += castValue.length; in flattenAccumulator() 547 boolean[] castValue = (boolean[]) accumulator.get(i); in flattenAccumulator() [all …]
|