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

/frameworks/base/core/java/android/content/res/
H A DResources.java111 /** Lock object used to protect access to {@link #mTmpValue}. */
115 private TypedValue mTmpValue = new TypedValue(); field in class:Resources
1199 if (mTmpValue != null) {
1200 tmpValue = mTmpValue;
1201 mTmpValue = null;
1218 if (mTmpValue == null) {
1219 mTmpValue = value;
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java175 final TypedValue mTmpValue = new TypedValue(); field in class:ViewRootImpl
1329 res.getValue(com.android.internal.R.dimen.config_prefDialogWidth, mTmpValue, true);
1331 if (mTmpValue.type == TypedValue.TYPE_DIMENSION) {
1332 baseSize = (int)mTmpValue.getDimension(packageMetrics);

Completed in 167 milliseconds