Home
last modified time | relevance | path

Searched refs:sizeStr (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNavigationBarInflaterView.java295 String sizeStr = buttonSpec.substring(sizeStart + 1, buttonSpec.indexOf(SIZE_MOD_END)); in extractSize() local
296 return Float.parseFloat(sizeStr); in extractSize()
/frameworks/base/libs/androidfw/
DBackupHelpers.cpp632 char sizeStr[32]; // big enough for a 64-bit unsigned value in decimal in write_tarfile() local
640 snprintf(sizeStr, sizeof(sizeStr), "%lld", (long long)s.st_size); in write_tarfile()
641 p += write_pax_header_entry(p, "size", sizeStr); in write_tarfile()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/applications/
DApplicationsState.java991 entry.sizeStr = getSizeStr(entry.size);
997 + ": " + entry.sizeStr);
1149 public String sizeStr; field in ApplicationsState.AppEntry
/frameworks/base/services/core/java/com/android/server/wm/
DWindowManagerService.java8829 String sizeStr = Settings.Global.getString(mContext.getContentResolver(), in readForcedDisplayPropertiesLocked() local
8831 if (sizeStr == null || sizeStr.length() == 0) { in readForcedDisplayPropertiesLocked()
8832 sizeStr = SystemProperties.get(SIZE_OVERRIDE, null); in readForcedDisplayPropertiesLocked()
8834 if (sizeStr != null && sizeStr.length() > 0) { in readForcedDisplayPropertiesLocked()
8835 final int pos = sizeStr.indexOf(','); in readForcedDisplayPropertiesLocked()
8836 if (pos > 0 && sizeStr.lastIndexOf(',') == pos) { in readForcedDisplayPropertiesLocked()
8839 width = Integer.parseInt(sizeStr.substring(0, pos)); in readForcedDisplayPropertiesLocked()
8840 height = Integer.parseInt(sizeStr.substring(pos+1)); in readForcedDisplayPropertiesLocked()
/frameworks/base/media/java/android/media/
DMediaCodecInfo.java1644 String sizeStr = temp[3]; in getMeasuredFrameRates() local
1645 Size size = Utils.parseSize(sizeStr, null); in getMeasuredFrameRates()