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

  /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...]
  /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]];
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]];
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");
DexAnnotationImpl.java 31 private String[] stringPool;
39 String[] stringPool, FieldIdItem[] fieldIdItems) {
43 this.stringPool = stringPool;
52 stringPool, fieldIdItems);
DexParameterImpl.java 33 private final String[] stringPool;
37 Integer annotationOffset, int[] typeIds, String[] stringPool,
43 this.stringPool = stringPool;
55 buffer.readUInt(), typeIds, stringPool, fieldIdItems));
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,
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...]
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...]
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)
  /external/icu4c/i18n/
uspoof_conf.h 100 SPUStringPool *stringPool;
uspoof_conf.cpp 155 stringPool(NULL),
170 stringPool = new SPUStringPool(status);
187 delete stringPool;
292 SPUString *smapString = stringPool->addString(mapString, status);
321 stringPool->sort(status);
326 int32_t poolSize = stringPool->size();
329 SPUString *s = stringPool->getByIndex(i);
  /external/icu4c/tools/genpname/
genpname.cpp 351 char* stringPool;
355 Offset* stringPool_offsetArray; // relative to stringPool
431 stringPool = 0;
453 uprv_free(stringPool);
658 stringPool = MALLOC(char, stringPool_size);
661 char* p = stringPool;
673 U_ASSERT(p == (stringPool + stringPool_size));
736 COMPUTE_OFFSET2(stringPool,char); // 99:
891 APPEND(stringPool);
    [all...]
  /frameworks/base/tools/aapt/
XMLNode.cpp 181 Vector<StringPool::entry_style_span>* outSpans,
185 Vector<StringPool::entry_style_span> spanStack;
262 StringPool::entry_style_span span;
307 StringPool::entry_style_span span = spanStack.top();
966 StringPool strings = StringPool(false, mUTF8);
    [all...]
  /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...]

Completed in 503 milliseconds