/frameworks/base/core/java/android/util/ |
H A D | AttributeSet.java | 30 * (with {@link #getAttributeResourceValue(int, int)}) and do the resource 114 * <p>Note that this is different than {@link #getAttributeResourceValue} 165 public int getAttributeResourceValue(String namespace, String attribute, method in interface:AttributeSet 243 public int getAttributeResourceValue(int index, int defaultValue); method in interface:AttributeSet 296 * Equivalent to getAttributeResourceValue(null, "id", defaultValue); 306 * Equivalent to getAttributeResourceValue(null, "style").
|
H A D | XmlPullAttributes.java | 69 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);
|
/frameworks/base/tools/layoutlib/bridge/src/android/util/ |
H A D | BridgeXmlPullAttributes.java | 116 public int getAttributeResourceValue(String namespace, String attribute, int defaultValue) { method in class:BridgeXmlPullAttributes 197 public int getAttributeResourceValue(int index, int defaultValue) { method in class:BridgeXmlPullAttributes
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/ |
H A D | BridgeLayoutParamsMapAttributes.java | 91 public int getAttributeResourceValue(String namespace, String attribute, method in class:BridgeLayoutParamsMapAttributes 126 public int getAttributeResourceValue(int index, int defaultValue) { method in class:BridgeLayoutParamsMapAttributes
|
H A D | BridgeXmlBlockParser.java | 456 public int getAttributeResourceValue(int index, int defaultValue) { method in class:BridgeXmlBlockParser 457 return mAttrib.getAttributeResourceValue(index, defaultValue); 461 public int getAttributeResourceValue(String namespace, String attribute, int defaultValue) { method in class:BridgeXmlBlockParser 462 return mAttrib.getAttributeResourceValue(namespace, attribute, defaultValue);
|
/frameworks/base/core/java/android/content/res/ |
H A D | XmlBlock.java | 330 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);
|