Searched refs:getAttributeResourceValue (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/java/android/util/
H A DXmlPullAttributes.java69 public int getAttributeResourceValue(String namespace, String attribute, method in class:XmlPullAttributes
107 public int getAttributeResourceValue(int index, int defaultValue) { method in class:XmlPullAttributes
139 return getAttributeResourceValue(null, "id", defaultValue);
143 return getAttributeResourceValue(null, "style", 0);
H A DAttributeSet.java30 * (with {@link #getAttributeResourceValue(int, int)}) and do the resource
71 * <p>Note that this is different than {@link #getAttributeResourceValue}
119 public int getAttributeResourceValue(String namespace, String attribute, method in interface:AttributeSet
196 public int getAttributeResourceValue(int index, method in interface:AttributeSet
253 * Equivalent to getAttributeResourceValue(null, "id", defaultValue);
263 * Equivalent to getAttributeResourceValue(null, "style").
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridgeXmlPullAttributes.java81 * @see android.util.XmlPullAttributes#getAttributeResourceValue(int, int)
84 public int getAttributeResourceValue(int index, int defaultValue) { method in class:BridgeXmlPullAttributes
92 * @see android.util.XmlPullAttributes#getAttributeResourceValue(java.lang.String, java.lang.String, int)
95 public int getAttributeResourceValue(String namespace, String attribute, int defaultValue) { method in class:BridgeXmlPullAttributes
H A DBridgeXmlBlockParser.java347 public int getAttributeResourceValue(int index, int defaultValue) { method in class:BridgeXmlBlockParser
348 return mAttrib.getAttributeResourceValue(index, defaultValue);
351 public int getAttributeResourceValue(String namespace, String attribute, int defaultValue) { method in class:BridgeXmlBlockParser
352 return mAttrib.getAttributeResourceValue(namespace, attribute, defaultValue);
/frameworks/base/core/java/android/content/res/
H A DXmlBlock.java330 public int getAttributeResourceValue(String namespace, String attribute, method in class:XmlBlock.Parser
334 return getAttributeResourceValue(idx, defaultValue);
385 public int getAttributeResourceValue(int idx, int defaultValue) { method in class:XmlBlock.Parser
436 return getAttributeResourceValue(null, "id", defaultValue);
H A DColorStateList.java207 colorRes = attrs.getAttributeResourceValue(i, 0);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DStateListDrawable.java149 drawableRes = attrs.getAttributeResourceValue(i, 0);
/frameworks/base/core/java/android/view/
H A DLayoutInflater.java646 final int layout = attrs.getAttributeResourceValue(null, "layout", 0);

Completed in 27 milliseconds