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

/libcore/luni/src/main/java/libcore/util/
H A DZoneInfoDB.java63 * The 'ids' array contains time zone ids sorted alphabetically, for binary searching.
67 private String[] ids; field in class:ZoneInfoDB.TzData
84 ids = new String[] { "GMT" };
178 // We create one string containing all the ids, and then break that into substrings.
179 // This way, all ids share a single char[] on the heap.
181 ids = new String[entryCount];
183 ids[i] = allIds.substring(i == 0 ? 0 : idEnd[i - 1], idEnd[i]);
188 return ids.clone();
195 matches.add(ids[
[all...]

Completed in 5884 milliseconds