/packages/apps/Contacts/src/com/android/contacts/util/ |
ThemeUtils.java | 30 final TypedValue outValue = new TypedValue(); 31 theme.resolveAttribute(attrId, outValue, true); 32 return outValue.resourceId;
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
ScrollBarView.java | 43 TypedValue outValue = new TypedValue(); 45 android.R.attr.scrollbarThumbHorizontal, outValue, true); 47 context, outValue.resourceId);
|
/frameworks/base/core/java/android/app/ |
Presentation.java | 298 TypedValue outValue = new TypedValue(); 300 com.android.internal.R.attr.presentationTheme, outValue, true); 301 theme = outValue.resourceId;
|
AlertDialog.java | 142 TypedValue outValue = new TypedValue(); 144 outValue, true); 145 return outValue.resourceId; [all...] |
SearchDialog.java | 113 TypedValue outValue = new TypedValue(); 115 outValue, true); 116 return outValue.resourceId;
|
Dialog.java | 155 TypedValue outValue = new TypedValue(); 157 outValue, true); 158 theme = outValue.resourceId; [all...] |
/packages/apps/Settings/src/com/android/settings/quicklaunch/ |
ShortcutPreference.java | 59 TypedValue outValue = new TypedValue(); 60 context.getTheme().resolveAttribute(android.R.attr.disabledAlpha, outValue, true); 61 sDimAlpha = (int) (outValue.getFloat() * 255);
|
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
BluetoothDevicePreference.java | 61 TypedValue outValue = new TypedValue(); 62 context.getTheme().resolveAttribute(android.R.attr.disabledAlpha, outValue, true); 63 sDimAlpha = (int) (outValue.getFloat() * 255);
|
/developers/build/prebuilts/gradle/SlidingTabsBasic/SlidingTabsBasicSample/src/main/java/com/example/android/common/view/ |
SlidingTabLayout.java | 180 TypedValue outValue = new TypedValue(); 182 outValue, true); 183 textView.setBackgroundResource(outValue.resourceId);
|
SlidingTabStrip.java | 67 TypedValue outValue = new TypedValue(); 68 context.getTheme().resolveAttribute(R.attr.colorForeground, outValue, true); 69 final int themeForegroundColor = outValue.data;
|
/developers/build/prebuilts/gradle/SlidingTabsColors/SlidingTabsColorsSample/src/main/java/com/example/android/common/view/ |
SlidingTabLayout.java | 180 TypedValue outValue = new TypedValue(); 182 outValue, true); 183 textView.setBackgroundResource(outValue.resourceId);
|
SlidingTabStrip.java | 67 TypedValue outValue = new TypedValue(); 68 context.getTheme().resolveAttribute(R.attr.colorForeground, outValue, true); 69 final int themeForegroundColor = outValue.data;
|
/developers/samples/android/common/src/java/com/example/android/common/view/ |
SlidingTabLayout.java | 180 TypedValue outValue = new TypedValue(); 182 outValue, true); 183 textView.setBackgroundResource(outValue.resourceId);
|
SlidingTabStrip.java | 67 TypedValue outValue = new TypedValue(); 68 context.getTheme().resolveAttribute(R.attr.colorForeground, outValue, true); 69 final int themeForegroundColor = outValue.data;
|
/packages/apps/Browser/src/com/android/browser/ |
BreadCrumbView.java | 173 TypedValue outValue = new TypedValue(); 175 android.R.attr.selectableItemBackground, outValue, true); 176 int resid = outValue.resourceId;
|
/external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/ |
tinyxml.h | [all...] |
/external/sfntly/cpp/src/test/tinyxml/ |
tinyxml.h | [all...] |
/frameworks/base/core/java/com/android/internal/app/ |
ActionBarImpl.java | 802 TypedValue outValue = new TypedValue(); 805 outValue, true); 806 final int targetThemeRes = outValue.resourceId; [all...] |
AlertController.java | 176 TypedValue outValue = new TypedValue(); 178 outValue, true); 179 return outValue.data != 0; [all...] |
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/ |
MultiWaveView.java | 229 TypedValue outValue = new TypedValue(); 230 if (a.getValue(R.styleable.MultiWaveView_chevronDrawables, outValue)) { 231 ArrayList<TargetDrawable> chevrons = loadDrawableArray(outValue.resourceId); 241 if (a.getValue(R.styleable.MultiWaveView_targetDrawables, outValue)) { 242 internalSetTargetResources(outValue.resourceId); 249 if (a.getValue(R.styleable.MultiWaveView_targetDescriptions, outValue)) { 250 final int resourceId = outValue.resourceId; 258 if (a.getValue(R.styleable.MultiWaveView_directionDescriptions, outValue)) { 259 final int resourceId = outValue.resourceId; [all...] |
GlowPadView.java | 240 TypedValue outValue = new TypedValue(); 243 if (a.getValue(R.styleable.GlowPadView_targetDrawables, outValue)) { 244 internalSetTargetResources(outValue.resourceId); 251 if (a.getValue(R.styleable.GlowPadView_targetDescriptions, outValue)) { 252 final int resourceId = outValue.resourceId; 260 if (a.getValue(R.styleable.GlowPadView_directionDescriptions, outValue)) { 261 final int resourceId = outValue.resourceId; [all...] |
/frameworks/base/policy/src/com/android/internal/policy/impl/ |
GlobalActions.java | [all...] |
/frameworks/support/v7/appcompat/src/android/support/v7/app/ |
ActionBarImplBase.java | 503 TypedValue outValue = new TypedValue(); 505 currentTheme.resolveAttribute(R.attr.actionBarWidgetTheme, outValue, true); 506 final int targetThemeRes = outValue.resourceId;
|
/packages/apps/DeskClock/src/com/android/deskclock/widget/multiwaveview/ |
GlowPadView.java | 234 TypedValue outValue = new TypedValue(); 237 if (a.getValue(R.styleable.GlowPadView_targetDrawables, outValue)) { 238 internalSetTargetResources(outValue.resourceId); 245 if (a.getValue(R.styleable.GlowPadView_targetDescriptions, outValue)) { 246 final int resourceId = outValue.resourceId; 254 if (a.getValue(R.styleable.GlowPadView_directionDescriptions, outValue)) { 255 final int resourceId = outValue.resourceId; [all...] |
/frameworks/base/core/java/android/widget/ |
SearchView.java | [all...] |