Searched refs:strings (Results 1 - 10 of 10) sorted by relevance

/dalvik/dx/src/com/android/dx/dex/file/
H A DStringIdsSection.java38 private final TreeMap<CstUtf8, StringIdItem> strings; field in class:StringIdsSection
48 strings = new TreeMap<CstUtf8, StringIdItem>();
54 return strings.values();
70 IndexedItem result = strings.get((CstUtf8) cst);
87 int sz = strings.size();
146 StringIdItem already = strings.get(value);
152 strings.put(value, string);
180 StringIdItem s = strings.get(string);
205 for (StringIdItem s : strings.values()) {
/dalvik/tests/003-omnibus-opcodes/src/
H A DArray.java61 static void checkStrings(String[] strings) { argument
62 assert(strings[0].equals("zero"));
63 assert(strings[1].equals("one"));
64 assert(strings[2].equals("two"));
65 assert(strings[3].equals("three"));
66 assert(strings[4].equals("four"));
176 String[] strings;
187 strings = new String[count];
/dalvik/tests/021-string2/src/
H A DMain.java77 String[] strings = test.split("/");
78 Assert.assertEquals(4, strings.length);
/dalvik/vm/
H A DAllocTracker.c233 (2b) number of class name strings
234 (2b) number of method name strings
235 (2b) number of source file name strings
246 (xb) class name strings
247 (xb) method name strings
248 (xb) source file strings
250 As with other DDM traffic, strings are sent as a 4-byte length
254 can be (kMaxAllocRecordStackDepth * kNumAllocRecords) unique strings in
289 static void dumpStringTable(PointerSet* strings) argument
291 int count = dvmPointerSetGetCount(strings);
443 computeStringTableSize(PointerSet* strings) argument
480 outputStringTable(PointerSet* strings, u1* ptr) argument
[all...]
H A DMisc.c24 #include <strings.h>
H A DThread.c1359 /* pthread_setname_np fails rather than truncating long strings */
2481 char** strings; local
2485 strings = backtrace_symbols(array, size);
2490 LOGW("%s\n", strings[i]);
2492 free(strings);
/dalvik/tests/074-gc-thrash/src/
H A DMain.java167 String strings[] = new String[ARRAY_SIZE];
171 strings[idx] = makeString(idx);
/dalvik/tests/082-inline-execute/src/
H A DMain.java198 String[] strings = test.split("/");
199 Assert.assertEquals(4, strings.length);
/dalvik/vm/native/
H A Ddalvik_system_VMDebug.c61 static ArrayObject* convertStringArray(char** strings, size_t count) argument
80 LOGD("Failed allocating array of %d strings\n", count);
91 (Object *)dvmCreateStringFromCstr(strings[i]);
110 * Return a set of strings describing available VM features (this is chiefly
/dalvik/docs/
H A Dprettify.js685 * escape. It does not recognize perl's qq() style strings.
808 // Split into strings, comments, and other.
809 // We do this because strings and comments are easily recognizable and can

Completed in 2853 milliseconds