Searched refs:sizeStr (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | NavigationBarInflaterView.java | 295 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/ |
D | BackupHelpers.cpp | 632 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/ |
D | ApplicationsState.java | 991 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/ |
D | WindowManagerService.java | 8829 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/ |
D | MediaCodecInfo.java | 1644 String sizeStr = temp[3]; in getMeasuredFrameRates() local 1645 Size size = Utils.parseSize(sizeStr, null); in getMeasuredFrameRates()
|