HomeSort by relevance Sort by last modified time
    Searched defs:stringPool (Results 1 - 16 of 16) sorted by null

  /cts/tools/dex-tools/src/dex/reader/
DexAnnotationAttributeImpl.java 28 private String[] stringPool;
35 DexAnnotation annotation, int[] typeIds, String[] stringPool,
40 this.stringPool = stringPool;
48 stringPool, fieldIdItems);
52 return stringPool[nameIdx];
DexEncodedAnnotationImpl.java 34 private final String[] stringPool;
40 int[] typeIds, String[] stringPool, FieldIdItem[] fieldIdItems) {
44 this.stringPool = stringPool;
55 typeIds, stringPool, fieldIdItems));
68 return stringPool[typeIds[typeIdx]];
DexFileImpl.java 32 private final String[] stringPool;
42 public DexFileImpl(DexBuffer buffer, String[] stringPool, int[] typeIds,
46 this.stringPool = stringPool;
64 classDefItems[i], stringPool, typeIds, protoIdItems,
74 b.append("StringPool:\n").append(Arrays.toString(stringPool));
77 b.append(stringPool[typeIds[i]] + "\n");
DexParameterImpl.java 33 private final String[] stringPool;
37 Integer annotationOffset, int[] typeIds, String[] stringPool,
43 this.stringPool = stringPool;
55 buffer.readUInt(), typeIds, stringPool, fieldIdItems));
DexAnnotationImpl.java 31 private String[] stringPool;
39 String[] stringPool, FieldIdItem[] fieldIdItems) {
43 this.stringPool = stringPool;
52 stringPool, fieldIdItems);
DexFieldImpl.java 32 private String[] stringPool;
44 FieldAnnotation fieldAnnotation, String[] stringPool,
51 this.stringPool = stringPool;
64 buffer.readUInt(), typeIds, stringPool, fieldIdItems));
70 return stringPool[fieldIdItem.name_idx];
74 return stringPool[typeIds[fieldIdItem.type_idx]];
DexEncodedValueImpl.java 33 private String[] stringPool;
44 * @param stringPool
48 int[] typeIds, String[] stringPool, FieldIdItem[] fieldIdItems) {
52 this.stringPool = stringPool;
137 stringPool, fieldIdItems);
150 stringPool, fieldIdItems));
164 String constantName = stringPool[fieldIdItem.name_idx];
165 String typeName = stringPool[typeIds[fieldIdItem.type_idx]];
189 String fieldName = stringPool[fieldIdItem.name_idx]
    [all...]
DexMethodImpl.java 41 private String[] stringPool;
57 ParameterAnnotation parameterAnnotation, String[] stringPool,
66 this.stringPool = stringPool;
91 buffer.readUInt(), typeIds, stringPool, fieldIdItems));
97 return stringPool[methodsIdItem.name_idx];
101 return stringPool[typeIds[protoIdItem.return_type_idx]];
118 stringPool[typeIds[paramTypeIdx[i]]],
119 parameterIdToIndex.get(i), typeIds, stringPool,
DexFileReader.java 60 private String[] stringPool;
61 private int[] typeIds; // values are index of stringPool
101 return new DexFileImpl(b.createCopy(), stringPool, typeIds,
157 stringPool = new String[nStrings];
164 stringPool[i] = new String(values);
203 // directly stringpool)
225 // directly stringpool)
DexClassImpl.java 45 private final String[] stringPool;
70 String[] stringPool, int[] typeIds, ProtIdItem[] protoIdItems,
74 this.stringPool = stringPool;
243 buffer.readUInt(), typeIds, stringPool, fieldIdItems));
269 idToFieldAnnotation.get(fieldIdIdx), stringPool,
301 .get(methodIdIdx), stringPool, typeIds,
317 interfaces.add(stringPool[typeIds[buffer.readUShort()]]);
327 : stringPool[typeIds[classDefItem.superclass_idx]];
335 return stringPool[typeIds[classDefItem.class_idx]]
    [all...]
  /libcore/luni/src/test/java/libcore/internal/
StringPoolTest.java 20 import libcore.internal.StringPool;
25 StringPool stringPool = new StringPool();
26 String bcd = stringPool.get(new char[] { 'a', 'b', 'c', 'd', 'e' }, 1, 3);
28 assertSame(bcd, stringPool.get(new char[] { 'a', 'b', 'c', 'd', 'e' }, 1, 3));
32 StringPool stringPool = new StringPool();
37 String aString = stringPool.get(a, 0, 2)
    [all...]
  /external/icu4c/i18n/
uspoof_conf.h 100 SPUStringPool *stringPool;
  /frameworks/base/core/java/android/util/
JsonReader.java 25 import libcore.internal.StringPool;
181 private final StringPool stringPool = new StringPool();
888 return stringPool.get(buffer, start, pos - start - 1);
986 result = stringPool.get(buffer, pos, i);
    [all...]
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlParser.java 32 import libcore.internal.StringPool;
179 public final StringPool stringPool = new StringPool();
504 return stringPool.get(buffer, start, end - start);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.repository_2.0.1.R36x_v20100823.jar 
com.ibm.icu_4.2.1.v20100412.jar 

Completed in 446 milliseconds