Searched refs:attribute (Results 1 - 25 of 192) sorted by relevance

12345678

/frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
H A DExpandableListViewBindingAdapter.java23 @BindingMethod(type = ExpandableListView.class, attribute = "android:onChildClick", method = "setOnChildClickListener"),
24 @BindingMethod(type = ExpandableListView.class, attribute = "android:onGroupClick", method = "setOnGroupClickListener"),
25 @BindingMethod(type = ExpandableListView.class, attribute = "android:onGroupCollapse", method = "setOnGroupCollapseListener"),
26 @BindingMethod(type = ExpandableListView.class, attribute = "android:onGroupExpand", method = "setOnGroupExpandListener"),
H A DTabWidgetBindingAdapter.java22 @BindingMethod(type = android.widget.TabWidget.class, attribute = "android:divider", method = "setDividerDrawable"),
23 @BindingMethod(type = android.widget.TabWidget.class, attribute = "android:tabStripEnabled", method = "setStripEnabled"),
24 @BindingMethod(type = android.widget.TabWidget.class, attribute = "android:tabStripLeft", method = "setLeftStripDrawable"),
25 @BindingMethod(type = android.widget.TabWidget.class, attribute = "android:tabStripRight", method = "setRightStripDrawable"),
H A DVideoViewBindingAdapter.java24 @BindingMethod(type = VideoView.class, attribute = "android:onCompletion", method = "setOnCompletionListener"),
25 @BindingMethod(type = VideoView.class, attribute = "android:onError", method = "setOnErrorListener"),
26 @BindingMethod(type = VideoView.class, attribute = "android:onInfo", method = "setOnInfoListener"),
27 @BindingMethod(type = VideoView.class, attribute = "android:onPrepared", method = "setOnPreparedListener"),
H A DProgressBarBindingAdapter.java22 @BindingMethod(type = android.widget.ProgressBar.class, attribute = "android:indeterminateTint", method = "setIndeterminateTintList"),
23 @BindingMethod(type = android.widget.ProgressBar.class, attribute = "android:progressTint", method = "setProgressTintList"),
24 @BindingMethod(type = android.widget.ProgressBar.class, attribute = "android:secondaryProgressTint", method = "setSecondaryProgressTintList"),
H A DCheckedTextViewBindingAdapter.java22 @BindingMethod(type = android.widget.CheckedTextView.class, attribute = "android:checkMark", method = "setCheckMarkDrawable"),
23 @BindingMethod(type = android.widget.CheckedTextView.class, attribute = "android:checkMarkTint", method = "setCheckMarkTintList"),
H A DLinearLayoutBindingAdapter.java22 @BindingMethod(type = android.widget.LinearLayout.class, attribute = "android:divider", method = "setDividerDrawable"),
23 @BindingMethod(type = android.widget.LinearLayout.class, attribute = "android:measureWithLargestChild", method = "setMeasureWithLargestChildEnabled"),
H A DToolbarBindingAdapter.java23 @BindingMethod(type = Toolbar.class, attribute = "android:onMenuItemClick", method = "setOnMenuItemClickListener"),
24 @BindingMethod(type = Toolbar.class, attribute = "android:onNavigationClick", method = "setNavigationOnClickListener"),
H A DZoomControlsBindingAdapter.java23 @BindingMethod(type = ZoomControls.class, attribute = "android:onZoomIn", method = "setOnZoomInClickListener"),
24 @BindingMethod(type = ZoomControls.class, attribute = "android:onZoomOut", method = "setOnZoomOutClickListener"),
H A DAbsSeekBarBindingAdapter.java22 @BindingMethod(type = android.widget.AbsSeekBar.class, attribute = "android:thumbTint", method = "setThumbTintList"),
H A DActionMenuViewBindingAdapter.java23 @BindingMethod(type = ActionMenuView.class, attribute = "android:onMenuItemClick", method = "setOnMenuItemClickListener"),
H A DChronometerBindingAdapter.java23 @BindingMethod(type = Chronometer.class, attribute = "android:onChronometerTick", method = "setOnChronometerTickListener"),
H A DFrameLayoutBindingAdapter.java22 @BindingMethod(type = android.widget.FrameLayout.class, attribute = "android:foregroundTint", method = "setForegroundTintList"),
H A DSpinnerBindingAdapter.java22 @BindingMethod(type = android.widget.Spinner.class, attribute = "android:popupBackground", method = "setPopupBackgroundDrawable"),
H A DViewBindingAdapter.java31 @BindingMethod(type = View.class, attribute = "android:backgroundTint", method = "setBackgroundTintList"),
32 @BindingMethod(type = View.class, attribute = "android:fadeScrollbars", method = "setScrollbarFadingEnabled"),
33 @BindingMethod(type = View.class, attribute = "android:getOutline", method = "setOutlineProvider"),
34 @BindingMethod(type = View.class, attribute = "android:nextFocusForward", method = "setNextFocusForwardId"),
35 @BindingMethod(type = View.class, attribute = "android:nextFocusLeft", method = "setNextFocusLeftId"),
36 @BindingMethod(type = View.class, attribute = "android:nextFocusRight", method = "setNextFocusRightId"),
37 @BindingMethod(type = View.class, attribute = "android:nextFocusUp", method = "setNextFocusUpId"),
38 @BindingMethod(type = View.class, attribute = "android:nextFocusDown", method = "setNextFocusDownId"),
39 @BindingMethod(type = View.class, attribute = "android:requiresFadingEdge", method = "setVerticalFadingEdgeEnabled"),
40 @BindingMethod(type = View.class, attribute
[all...]
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64Emulation.cpp27 pConfig.attribute().constraint().enableWholeArchive();
28 pConfig.attribute().constraint().enableAsNeeded();
29 pConfig.attribute().constraint().setSharedSystem();
32 pConfig.attribute().predefined().unsetWholeArchive();
33 pConfig.attribute().predefined().unsetAsNeeded();
34 pConfig.attribute().predefined().setDynamic();
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonEmulation.cpp27 pConfig.attribute().constraint().enableWholeArchive();
28 pConfig.attribute().constraint().enableAsNeeded();
29 pConfig.attribute().constraint().setSharedSystem();
32 pConfig.attribute().predefined().unsetWholeArchive();
33 pConfig.attribute().predefined().unsetAsNeeded();
34 pConfig.attribute().predefined().setDynamic();
/frameworks/data-binding/compilerCommon/
H A DXMLParser.g436 prolog : XMLDeclOpen attribute* SPECIAL_CLOSE ;
41 element : '<' elmName=Name attribute* '>' content '<' '/' Name '>'
42 | '<' elmName=Name attribute* '/>'
47 attribute : attrName=Name '=' attrValue=STRING ; // Our STRING is AttValue in spec
/frameworks/base/core/java/android/util/
H A DXmlPullAttributes.java57 public int getAttributeListValue(String namespace, String attribute, argument
60 getAttributeValue(namespace, attribute), options, defaultValue);
63 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
66 getAttributeValue(namespace, attribute), defaultValue);
69 public int getAttributeResourceValue(String namespace, String attribute, argument
72 getAttributeValue(namespace, attribute), defaultValue);
75 public int getAttributeIntValue(String namespace, String attribute, argument
78 getAttributeValue(namespace, attribute), defaultValue);
81 public int getAttributeUnsignedIntValue(String namespace, String attribute, argument
84 getAttributeValue(namespace, attribute), defaultValu
87 getAttributeFloatValue(String namespace, String attribute, float defaultValue) argument
[all...]
H A DAttributeSet.java26 * the Resources API will convert resource references (attribute values such as
32 * application of themes and styles when retrieving attribute values.
56 * identifier associated with a particular XML attribute name.
67 * Returns the name of the specified attribute.
69 * @param index Index of the desired attribute, 0...count-1.
71 * @return A String containing the name of the attribute, or null if the
72 * attribute cannot be found.
77 * Returns the value of the specified attribute as a string representation.
79 * @param index Index of the desired attribute, 0...count-1.
81 * @return A String containing the value of the attribute, o
135 getAttributeListValue(String namespace, String attribute, String[] options, int defaultValue) argument
147 getAttributeBooleanValue(String namespace, String attribute, boolean defaultValue) argument
165 getAttributeResourceValue(String namespace, String attribute, int defaultValue) argument
177 getAttributeIntValue(String namespace, String attribute, int defaultValue) argument
191 getAttributeUnsignedIntValue(String namespace, String attribute, int defaultValue) argument
203 getAttributeFloatValue(String namespace, String attribute, float defaultValue) argument
[all...]
/frameworks/data-binding/baseLibrary/src/main/java/android/databinding/
H A DBindingMethod.java22 * Used within an {@link BindingMethods} annotation to describe a renaming of an attribute to
23 * the setter used to set that attribute. By default, an attribute attr will be associated with
30 * @return the View Class that the attribute is associated with.
35 * @return The attribute to rename. Use android: namespace for all android attributes or
38 String attribute(); method in interface:BindingMethod
41 * @return The method to call to set the attribute value.
H A DInverseBindingAdapter.java25 * &commat;InverseBindingAdapter(attribute = "android:text", event = "android:textAttrChanged")
37 * The default value for event is the attribute name suffixed with "AttrChanged". In the
41 * The event attribute is used to notify the data binding system that the value has changed.
82 * The attribute that the value is to be retrieved for.
84 String attribute(); method in interface:InverseBindingAdapter
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMEmulation.cpp26 pConfig.attribute().constraint().enableWholeArchive();
27 pConfig.attribute().constraint().enableAsNeeded();
28 pConfig.attribute().constraint().setSharedSystem();
31 pConfig.attribute().predefined().unsetWholeArchive();
32 pConfig.attribute().predefined().unsetAsNeeded();
33 pConfig.attribute().predefined().setDynamic();
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsEmulation.cpp30 pConfig.attribute().constraint().enableWholeArchive();
31 pConfig.attribute().constraint().enableAsNeeded();
32 pConfig.attribute().constraint().setSharedSystem();
35 pConfig.attribute().predefined().unsetWholeArchive();
36 pConfig.attribute().predefined().unsetAsNeeded();
37 pConfig.attribute().predefined().setDynamic();
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86Emulation.cpp35 pConfig.attribute().constraint().enableWholeArchive();
36 pConfig.attribute().constraint().enableAsNeeded();
37 pConfig.attribute().constraint().setSharedSystem();
40 pConfig.attribute().predefined().unsetWholeArchive();
41 pConfig.attribute().predefined().unsetAsNeeded();
42 pConfig.attribute().predefined().setDynamic();
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DAccessibilityNodeInfoDumper.java88 serializer.attribute("", "rotation", Integer.toString(rotation));
105 serializer.attribute("", "NAF", Boolean.toString(true));
106 serializer.attribute("", "index", Integer.toString(index));
107 serializer.attribute("", "text", safeCharSeqToString(node.getText()));
108 serializer.attribute("", "resource-id", safeCharSeqToString(node.getViewIdResourceName()));
109 serializer.attribute("", "class", safeCharSeqToString(node.getClassName()));
110 serializer.attribute("", "package", safeCharSeqToString(node.getPackageName()));
111 serializer.attribute("", "content-desc", safeCharSeqToString(node.getContentDescription()));
112 serializer.attribute("", "checkable", Boolean.toString(node.isCheckable()));
113 serializer.attribute("", "checke
[all...]

Completed in 334 milliseconds

12345678