Home
last modified time | relevance | path

Searched refs:countString (Results 1 – 4 of 4) sorted by relevance

/aosp12/packages/apps/Dialer/java/com/android/dialer/main/impl/bottomnav/
H A DBottomNavItem.java75 String countString = String.format(Integer.toString(count)); in setNotificationCount() local
84 countString = getContext().getString(R.string.bottom_nav_count_99_plus); in setNotificationCount()
86 countString = getContext().getString(R.string.bottom_nav_count_9_plus); in setNotificationCount()
89 notificationBadge.setText(countString); in setNotificationCount()
92 if (countString.length() == 1) { in setNotificationCount()
94 } else if (countString.length() == 2) { in setNotificationCount()
/aosp12/frameworks/base/core/java/android/util/proto/
H A DProtoStream.java502 String countString = getFieldCountString(fieldCount); in getFieldIdString() local
503 if (countString == null) { in getFieldIdString()
504 countString = "fieldCount=" + fieldCount; in getFieldIdString()
506 if (countString.length() > 0) { in getFieldIdString()
507 countString += " "; in getFieldIdString()
516 return countString + typeString + " tag=" + ((int) fieldId) in getFieldIdString()
H A DProtoOutputStream.java2221 final String countString = getFieldCountString(fieldCount); in checkFieldId() local
2223 if (typeString != null && countString != null) { in checkFieldId()
2240 sb.append(countString); in checkFieldId()
/aosp12/frameworks/base/core/jni/
H A Dcom_android_internal_os_ZygoteCommandBuffer.cpp136 char* countString = line.value().first; // Newline terminated. in getCount() local
137 long nArgs = atol(countString); in getCount()