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

12345678910

/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"),
/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/av/include/media/
H A DCounterMetric.h56 // attribute names. |attribute_names| must not be null.
65 void Increment(AttributeType attribute) { argument
66 if (values_.find(attribute) == values_.end()) {
67 values_[attribute] = 1;
69 values_[attribute] = values_[attribute] + 1;
/frameworks/av/media/libmedia/include/media/
H A DCounterMetric.h56 // attribute names. |attribute_names| must not be null.
65 void Increment(AttributeType attribute) { argument
66 if (values_.find(attribute) == values_.end()) {
67 values_[attribute] = 1;
69 values_[attribute] = values_[attribute] + 1;
/frameworks/base/core/java/android/util/
H A DXmlPullAttributes.java61 public int getAttributeListValue(String namespace, String attribute, argument
64 getAttributeValue(namespace, attribute), options, defaultValue);
67 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
70 getAttributeValue(namespace, attribute), defaultValue);
73 public int getAttributeResourceValue(String namespace, String attribute, argument
76 getAttributeValue(namespace, attribute), defaultValue);
79 public int getAttributeIntValue(String namespace, String attribute, argument
82 getAttributeValue(namespace, attribute), defaultValue);
85 public int getAttributeUnsignedIntValue(String namespace, String attribute, argument
88 getAttributeValue(namespace, attribute), defaultValu
91 getAttributeFloatValue(String namespace, String attribute, float defaultValue) argument
[all...]
H A DAttributeSet.java28 * the Resources API will convert resource references (attribute values such as
34 * application of themes and styles when retrieving attribute values.
58 * identifier associated with a particular XML attribute name.
74 * Returns the namespace of the specified attribute.
79 * @param index Index of the desired attribute, 0...count-1.
81 * @return A String containing the namespace of the attribute, or null if th
82 * attribute cannot be found.
90 * Returns the name of the specified attribute.
95 * @param index Index of the desired attribute, 0...count-1.
97 * @return A String containing the name of the attribute, o
161 getAttributeListValue(String namespace, String attribute, String[] options, int defaultValue) argument
173 getAttributeBooleanValue(String namespace, String attribute, boolean defaultValue) argument
191 getAttributeResourceValue(String namespace, String attribute, int defaultValue) argument
203 getAttributeIntValue(String namespace, String attribute, int defaultValue) argument
217 getAttributeUnsignedIntValue(String namespace, String attribute, int defaultValue) argument
229 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();

Completed in 222 milliseconds

12345678910