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

  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
SendersView.java 256 final Map<Integer, Integer> priorityToLength = PRIORITY_LENGTH_MAP_CACHE.get();
258 priorityToLength.clear();
262 priorityToLength.put(info.priority, senderLength);
266 if (priorityToLength.containsKey(maxPriorityToInclude + 1)) {
267 int length = numCharsUsed + priorityToLength.get(maxPriorityToInclude + 1);
282 PRIORITY_LENGTH_MAP_CACHE.release(priorityToLength);
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
Utils.java 322 final Map<Integer, Integer> priorityToLength = sPriorityToLength;
323 priorityToLength.clear();
372 priorityToLength.put(priority, nameString.length());
416 if (priorityToLength.containsKey(maxPriorityToInclude + 1)) {
417 int length = numCharsUsed + priorityToLength.get(maxPriorityToInclude + 1);
    [all...]

Completed in 313 milliseconds