Searched refs:outValue (Results 51 - 61 of 61) sorted by relevance

123

/frameworks/base/core/java/com/android/internal/policy/
H A DDecorView.java1562 final TypedValue outValue = new TypedValue();
1564 baseTheme.resolveAttribute(R.attr.actionBarTheme, outValue, true);
1567 if (outValue.resourceId != 0) {
1570 actionBarTheme.applyStyle(outValue.resourceId, true);
1587 R.attr.actionBarSize, outValue, true);
1588 final int height = TypedValue.complexToDimensionPixelSize(outValue.data,
H A DPhoneWindow.java1294 final TypedValue outValue = new TypedValue();
1296 baseTheme.resolveAttribute(R.attr.actionBarTheme, outValue, true);
1299 if (outValue.resourceId != 0) {
1302 widgetTheme.applyStyle(outValue.resourceId, true);
1304 R.attr.actionBarWidgetTheme, outValue, true);
1307 R.attr.actionBarWidgetTheme, outValue, true);
1310 if (outValue.resourceId != 0) {
1315 widgetTheme.applyStyle(outValue.resourceId, true);
/frameworks/base/core/java/android/widget/
H A DRadialTimePickerView.java309 final TypedValue outValue = new TypedValue();
310 context.getTheme().resolveAttribute(android.R.attr.disabledAlpha, outValue, true);
311 mDisabledAlpha = outValue.getFloat();
/frameworks/native/libs/gui/
H A DBufferQueueProducer.cpp1000 int BufferQueueProducer::query(int what, int *outValue) { argument
1004 if (outValue == NULL) {
1005 BQ_LOGE("query: outValue was NULL");
1052 *outValue = value;
/frameworks/support/v4/java/android/support/v4/widget/
H A DNestedScrollView.java928 TypedValue outValue = new TypedValue();
931 android.R.attr.listPreferredItemHeight, outValue, true)) {
935 mVerticalScrollFactor = outValue.getDimension(
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeContext.java327 public boolean resolveThemeAttribute(int resId, TypedValue outValue, boolean resolveRefs) { argument
353 outValue.resourceId = getDynamicIdByStyle((StyleResourceValue) value);
370 outValue.resourceId = a;
/frameworks/native/services/inputflinger/
H A DEventHub.cpp391 status_t EventHub::getAbsoluteAxisValue(int32_t deviceId, int32_t axis, int32_t* outValue) const {
392 *outValue = 0;
406 *outValue = info.value;
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWC2On1Adapter.cpp650 Attribute attribute, int32_t* outValue)
659 *outValue = mConfigs[configId]->getAttribute(attribute);
661 to_string(attribute).c_str(), *outValue);
649 getAttribute(hwc2_config_t configId, Attribute attribute, int32_t* outValue) argument
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp611 int32_t* outValue) const {
616 *outValue = device->absoluteAxisValue.valueAt(index);
620 *outValue = 0;
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java2754 TypedValue outValue = new TypedValue();
2756 android.R.attr.listPreferredItemHeight, outValue, true)) {
2757 mScrollFactor = outValue.getDimension(
/frameworks/base/core/java/android/view/
H A DView.java21275 TypedValue outValue = new TypedValue();
21277 com.android.internal.R.attr.listPreferredItemHeight, outValue, true)) {
21281 mVerticalScrollFactor = outValue.getDimension(

Completed in 510 milliseconds

123