HomeSort by relevance Sort by last modified time
    Searched defs:outValue (Results 1 - 25 of 32) sorted by null

1 2

  /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 40 TypedValue outValue = new TypedValue();
42 android.R.attr.scrollbarThumbHorizontal, outValue, true);
44 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 153 TypedValue outValue = new TypedValue();
155 outValue, true);
156 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);
  /external/webkit/Source/JavaScriptCore/runtime/
JSONObject.cpp 648 JSValue outValue = jsNull();
678 outValue = array;
697 outValue = inValue;
702 JSValue filteredValue = callReviver(array, jsString(m_exec, UString::number(indexStack.last())), outValue);
742 outValue = object;
762 outValue = inValue;
769 JSValue filteredValue = callReviver(object, jsString(m_exec, prop.ustring()), outValue);
782 outValue = inValue;
804 finalHolder->put(m_exec, m_exec->globalData().propertyNames->emptyIdentifier, outValue, slot);
805 return callReviver(finalHolder, jsEmptyString(m_exec), outValue);
    [all...]
  /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/webkit/Source/WebCore/bindings/js/
SerializedScriptValue.cpp     [all...]
  /frameworks/base/core/java/com/android/internal/app/
ActionBarImpl.java 789 TypedValue outValue = new TypedValue();
792 outValue, true);
793 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...]
PhoneWindow.java     [all...]
  /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...]
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 

Completed in 814 milliseconds

1 2