Searched refs:attr (Results 176 - 200 of 423) sorted by relevance

1234567891011>>

/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DAppCompatRadioButton.java40 * <li>Allows setting of the background tint using {@link R.attr#buttonTint} and
41 * {@link R.attr#buttonTintMode}.</li>
56 this(context, attrs, R.attr.radioButtonStyle);
H A DAppCompatTextView.java37 * <li>Supports {@link R.attr#textAllCaps} style attribute which works back to
41 * <li>Allows setting of the background tint using {@link R.attr#backgroundTint} and
42 * {@link R.attr#backgroundTintMode}.</li>
58 this(context, attrs, android.R.attr.textViewStyle);
H A DAbsActionBarView.java64 if (context.getTheme().resolveAttribute(R.attr.actionBarPopupTheme, tv, true)
79 R.attr.actionBarStyle, 0);
/frameworks/support/v7/preference/src/android/support/v7/preference/
H A DDropDownPreference.java47 this(context, attrs, R.attr.dropdownPreferenceStyle);
H A DEditTextPreference.java50 this(context, attrs, TypedArrayUtils.getAttr(context, R.attr.editTextPreferenceStyle,
H A DListPreference.java36 * @attr name android:entries
37 * @attr name android:entryValues
77 this(context, attrs, TypedArrayUtils.getAttr(context, R.attr.dialogPreferenceStyle,
78 android.R.attr.dialogPreferenceStyle));
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboardView.java61 * @attr ref android.R.styleable#KeyboardView_keyBackground
62 * @attr ref android.R.styleable#KeyboardView_keyPreviewLayout
63 * @attr ref android.R.styleable#KeyboardView_keyPreviewOffset
64 * @attr ref android.R.styleable#KeyboardView_labelTextSize
65 * @attr ref android.R.styleable#KeyboardView_keyTextSize
66 * @attr ref android.R.styleable#KeyboardView_keyTextColor
67 * @attr ref android.R.styleable#KeyboardView_verticalCorrection
68 * @attr ref android.R.styleable#KeyboardView_popupLayout
134 private static final int[] LONG_PRESSABLE_STATE_SET = { R.attr.state_long_pressable };
259 this(context, attrs, com.android.internal.R.attr
[all...]
/frameworks/av/include/media/
H A DIAudioPolicyService.h61 virtual status_t getOutputForAttr(const audio_attributes_t *attr,
81 virtual status_t getInputForAttr(const audio_attributes_t *attr,
/frameworks/base/core/java/android/preference/
H A DPreferenceScreen.java107 super(context, attrs, com.android.internal.R.attr.preferenceScreenStyle);
111 com.android.internal.R.attr.preferenceScreenStyle,
/frameworks/base/core/java/com/android/internal/view/menu/
H A DMenuPopupHelper.java59 this(context, menu, null, false, com.android.internal.R.attr.popupMenuStyle, 0);
64 this(context, menu, anchorView, false, com.android.internal.R.attr.popupMenuStyle, 0);
/frameworks/base/core/java/com/android/internal/widget/
H A DMessagingLinearLayout.java65 int attr = a.getIndex(i);
66 switch (attr) {
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
H A DAccessPointPreference.java37 R.attr.state_encrypted
41 private static int[] wifi_signal_attributes = { R.attr.wifi_signal };
/frameworks/base/tools/aapt2/
H A DResourceUtils_test.cpp135 EXPECT_TRUE(ResourceUtils::isAttributeReference(u"?attr/foo"));
136 EXPECT_TRUE(ResourceUtils::isAttributeReference(u"?android:attr/foo"));
143 EXPECT_FALSE(ResourceUtils::isAttributeReference(u"?android:attr/"));
144 EXPECT_FALSE(ResourceUtils::isAttributeReference(u"?:attr/"));
145 EXPECT_FALSE(ResourceUtils::isAttributeReference(u"?:attr/foo"));
148 EXPECT_FALSE(ResourceUtils::isAttributeReference(u"?attr/"));
196 std::unique_ptr<Attribute> attr = test::AttributeBuilder(false) local
202 std::unique_ptr<BinaryPrimitive> result = ResourceUtils::tryParseFlagSymbol(attr.get(), u"");
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/
H A DGlifLayout.java73 init(null, R.attr.suwLayoutTheme);
78 init(attrs, R.attr.suwLayoutTheme);
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/util/
H A DSystemBarHelper.java134 android.R.attr.statusBarColor, android.R.attr.navigationBarColor});
203 * <p>Note that you must set {@link android.R.attr#windowSoftInputMode} to {@code adjustResize}
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DValueParser.java252 TextAttribute attr = new TextAttribute(start, textLength,
255 lst.add(attr);
/frameworks/support/design/src/android/support/design/internal/
H A DNavigationMenuItemView.java52 private static final int[] CHECKED_STATE_SET = {android.R.attr.state_checked};
168 android.support.v7.appcompat.R.attr.colorControlHighlight, value, true)) {
/frameworks/support/v14/preference/src/android/support/v14/preference/
H A DMultiSelectListPreference.java46 * @attr name android:entries
47 * @attr name android:entryValues
79 android.support.v7.preference.R.attr.dialogPreferenceStyle,
80 android.R.attr.dialogPreferenceStyle));
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAppCompatDelegateImplBase.java84 private static final int[] sWindowBackgroundStyleable = {android.R.attr.windowBackground};
204 getActionBarThemedContext(), null, new int[]{ R.attr.homeAsUpIndicator });
/frameworks/support/v7/appcompat/src/android/support/v7/view/menu/
H A DMenuPopupHelper.java66 this(context, menu, null, false, R.attr.popupMenuStyle, 0);
71 this(context, menu, anchorView, false, R.attr.popupMenuStyle, 0);
/frameworks/support/v7/appcompat/tests/src/android/support/v7/testutils/
H A DTestUtils.java248 public static int getThemeAttrColor(Context context, int attr) { argument
249 final int[] attrs = { attr };
/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyInterfaceImplLegacy.cpp234 status_t AudioPolicyService::getInputForAttr(const audio_attributes_t *attr, argument
249 audio_source_t inputSource = attr->source;
566 status_t AudioPolicyService::getOutputForAttr(const audio_attributes_t *attr, argument
578 if (attr != NULL) {
579 *stream = audio_attributes_to_stream_type(attr);
/frameworks/base/core/java/android/widget/
H A DDatePickerCalendarDelegate.java62 com.android.internal.R.attr.textColor};
64 com.android.internal.R.attr.disabledAlpha};
201 if (color == null || color.hasState(R.attr.state_activated)) {
207 if (color.hasState(R.attr.state_selected)) {
226 final int[][] stateSet = new int[][] {{ R.attr.state_activated }, {}};
/frameworks/base/core/java/android/view/
H A DView.java686 * @attr ref android.R.styleable#View_alpha
687 * @attr ref android.R.styleable#View_background
688 * @attr ref android.R.styleable#View_clickable
689 * @attr ref android.R.styleable#View_contentDescription
690 * @attr ref android.R.styleable#View_drawingCacheQuality
691 * @attr ref android.R.styleable#View_duplicateParentState
692 * @attr ref android.R.styleable#View_id
693 * @attr ref android.R.styleable#View_requiresFadingEdge
694 * @attr ref android.R.styleable#View_fadeScrollbars
695 * @attr re
[all...]
/frameworks/av/media/libmedia/
H A DIAudioPolicyService.cpp173 virtual status_t getOutputForAttr(const audio_attributes_t *attr, argument
187 if (attr == NULL) {
201 if (attr == NULL) {
205 data.write(attr, sizeof(audio_attributes_t));
280 virtual status_t getInputForAttr(const audio_attributes_t *attr, argument
293 if (attr == NULL) {
294 ALOGE("getInputForAttr NULL attr - shouldn't happen");
301 data.write(attr, sizeof(audio_attributes_t));
892 audio_attributes_t attr; local
895 data.read(&attr, sizeo
961 audio_attributes_t attr; local
[all...]

Completed in 6986 milliseconds

1234567891011>>