HomeSort by relevance Sort by last modified time
    Searched full:outvalue (Results 26 - 50 of 137) sorted by null

12 3 4 5 6

  /developers/build/prebuilts/gradle/SwipeRefreshMultipleViews/Application/src/main/java/com/example/android/common/view/
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/
SlidingTabStrip.java 67 TypedValue outValue = new TypedValue();
68 context.getTheme().resolveAttribute(R.attr.colorForeground, outValue, true);
69 final int themeForegroundColor = outValue.data;
  /development/samples/browseable/BasicTransition/src/com.example.android.common/view/
SlidingTabStrip.java 67 TypedValue outValue = new TypedValue();
68 context.getTheme().resolveAttribute(R.attr.colorForeground, outValue, true);
69 final int themeForegroundColor = outValue.data;
  /development/samples/browseable/SlidingTabsBasic/src/com.example.android.common/view/
SlidingTabStrip.java 67 TypedValue outValue = new TypedValue();
68 context.getTheme().resolveAttribute(R.attr.colorForeground, outValue, true);
69 final int themeForegroundColor = outValue.data;
  /development/samples/browseable/SlidingTabsColors/src/com.example.android.common/view/
SlidingTabStrip.java 67 TypedValue outValue = new TypedValue();
68 context.getTheme().resolveAttribute(R.attr.colorForeground, outValue, true);
69 final int themeForegroundColor = outValue.data;
  /development/samples/browseable/SwipeRefreshLayoutBasic/src/com.example.android.common/view/
SlidingTabStrip.java 67 TypedValue outValue = new TypedValue();
68 context.getTheme().resolveAttribute(R.attr.colorForeground, outValue, true);
69 final int themeForegroundColor = outValue.data;
  /development/samples/browseable/SwipeRefreshListFragment/src/com.example.android.common/view/
SlidingTabStrip.java 67 TypedValue outValue = new TypedValue();
68 context.getTheme().resolveAttribute(R.attr.colorForeground, outValue, true);
69 final int themeForegroundColor = outValue.data;
  /development/samples/browseable/SwipeRefreshMultipleViews/src/com.example.android.common/view/
SlidingTabStrip.java 67 TypedValue outValue = new TypedValue();
68 context.getTheme().resolveAttribute(R.attr.colorForeground, outValue, true);
69 final int themeForegroundColor = outValue.data;
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
AppCompatDialog.java 160 TypedValue outValue = new TypedValue();
161 context.getTheme().resolveAttribute(R.attr.dialogTheme, outValue, true);
162 themeId = outValue.resourceId;
ToolbarActionBar.java 532 final TypedValue outValue = new TypedValue();
537 widgetTheme.resolveAttribute(R.attr.actionBarPopupTheme, outValue, true);
538 if (outValue.resourceId != 0) {
539 widgetTheme.applyStyle(outValue.resourceId, true);
543 widgetTheme.resolveAttribute(R.attr.panelMenuListTheme, outValue, true);
544 if (outValue.resourceId != 0) {
545 widgetTheme.applyStyle(outValue.resourceId, true);
AppCompatDelegateImplV7.java 383 TypedValue outValue = new TypedValue();
384 mContext.getTheme().resolveAttribute(R.attr.actionBarTheme, outValue, true);
387 if (outValue.resourceId != 0) {
388 themedContext = new ContextThemeWrapper(mContext, outValue.resourceId);
737 final TypedValue outValue = new TypedValue();
739 baseTheme.resolveAttribute(R.attr.actionBarTheme, outValue, true);
742 if (outValue.resourceId != 0) {
745 actionBarTheme.applyStyle(outValue.resourceId, true);
762 R.attr.actionBarSize, outValue, true);
763 final int height = TypedValue.complexToDimensionPixelSize(outValue.data
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
PlaybackControlsRowPresenter.java 302 TypedValue outValue = new TypedValue();
303 if (context.getTheme().resolveAttribute(R.attr.defaultBrandColor, outValue, true)) {
304 return context.getResources().getColor(outValue.resourceId);
310 TypedValue outValue = new TypedValue();
312 .resolveAttribute(R.attr.playbackProgressPrimaryColor, outValue, true)) {
313 return context.getResources().getColor(outValue.resourceId);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
OpenMapRealMatrix.java 209 final double outValue =
211 if (outValue == 0.0) {
214 out.entries.put(outKey, outValue);
  /frameworks/base/core/java/android/app/
DatePickerDialog.java 141 final TypedValue outValue = new TypedValue();
142 context.getTheme().resolveAttribute(R.attr.datePickerDialogTheme, outValue, true);
143 return outValue.resourceId;
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothDevicePreference.java 81 TypedValue outValue = new TypedValue();
82 context.getTheme().resolveAttribute(android.R.attr.disabledAlpha, outValue, true);
83 sDimAlpha = (int) (outValue.getFloat() * 255);
  /packages/apps/TV/src/com/android/tv/menu/
MenuRowView.java 106 TypedValue outValue = new TypedValue();
107 res.getValue(R.dimen.menu_row_title_alpha_deselected, outValue, true);
108 mTitleViewAlphaDeselected = outValue.getFloat();
  /frameworks/base/libs/androidfw/
ResourceTypes.cpp     [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowResources.java 233 public boolean resolveAttribute (int resid, TypedValue outValue, boolean resolveRefs) {
236 outValue.setTo(foundValue);
  /frameworks/base/test-runner/src/android/test/mock/
MockResources.java 177 public void getValue(int id, TypedValue outValue, boolean resolveRefs)
183 public void getValue(String name, TypedValue outValue, boolean resolveRefs)
  /frameworks/base/tools/aapt/
AaptXml.h 114 * Returns the resource for the specified attribute in the outValue parameter.
118 const android::ResXMLTree& tree, uint32_t attrRes, android::Res_value* outValue,
  /frameworks/base/tools/aapt2/
ResourceUtils.h 78 * Returns true if the value is a boolean, putting the result in `outValue`.
80 bool tryParseBool(const StringPiece16& str, bool* outValue);
  /frameworks/base/tools/layoutlib/bridge/src/android/content/res/
Resources_Theme_Delegate.java 93 int resid, TypedValue outValue,
97 outValue, resolveRefs);
  /frameworks/native/libs/input/
VirtualKeyMap.cpp 157 bool VirtualKeyMap::Parser::parseNextIntField(int32_t* outValue) {
164 *outValue = strtol(token.string(), &end, 0);
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
TintTypedArray.java 177 public boolean getValue(int index, TypedValue outValue) {
178 return mWrapped.getValue(index, outValue);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/
PinDialogFragment.java 434 TypedValue outValue = new TypedValue();
436 R.float_type.pin_alpha_for_focused_number, outValue, true);
437 sAlphaForFocusedNumber = outValue.getFloat();
439 R.float_type.pin_alpha_for_adjacent_number, outValue, true);
440 sAlphaForAdjacentNumber = outValue.getFloat();

Completed in 1024 milliseconds

12 3 4 5 6