Searched defs:getAttributeValue (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/core/java/android/util/
H A DAttributeSet.java110 public String getAttributeValue(int index); method in interface:AttributeSet
122 public String getAttributeValue(String namespace, String name); method in interface:AttributeSet
305 * Equivalent to getAttributeValue(null, "id").
313 * Equivalent to getAttributeValue(null, "class").
H A DXmlPullAttributes.java45 public String getAttributeValue(int index) { method in class:XmlPullAttributes
46 return mParser.getAttributeValue(index);
49 public String getAttributeValue(String namespace, String name) { method in class:XmlPullAttributes
50 return mParser.getAttributeValue(namespace, name);
64 getAttributeValue(namespace, attribute), options, defaultValue);
70 getAttributeValue(namespace, attribute), defaultValue);
76 getAttributeValue(namespace, attribute), defaultValue);
82 getAttributeValue(namespace, attribute), defaultValue);
88 getAttributeValue(namespace, attribute), defaultValue);
93 String s = getAttributeValue(namespac
[all...]
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DNopAttributeSet.java41 public String getAttributeValue(int index) { method in class:NopAttributeSet
46 public String getAttributeValue(String namespace, String name) { method in class:NopAttributeSet
H A DBridgeLayoutParamsMapAttributes.java41 public String getAttributeValue(String namespace, String name) { method in class:BridgeLayoutParamsMapAttributes
69 public String getAttributeValue(int index) { method in class:BridgeLayoutParamsMapAttributes
H A DBridgeXmlBlockParser.java266 public String getAttributeValue(int index) { method in class:BridgeXmlBlockParser
267 return mParser.getAttributeValue(index);
286 public String getAttributeValue(String namespace, String name) { method in class:BridgeXmlBlockParser
287 return mParser.getAttributeValue(namespace, name);
/frameworks/layoutlib/remote/client/src/com/android/layoutlib/bridge/remote/client/adapters/
H A DRemoteXmlPullParserAdapter.java195 public String getAttributeValue(int index) throws RemoteException { method in class:RemoteXmlPullParserAdapter
196 return mDelegate.getAttributeValue(index);
200 public String getAttributeValue(String namespace, String name) throws RemoteException { method in class:RemoteXmlPullParserAdapter
201 return mDelegate.getAttributeValue(namespace, name);
/frameworks/layoutlib/remote/common/src/com/android/layout/remote/api/
H A DRemoteXmlPullParser.java93 String getAttributeValue(int index) throws RemoteException; method in interface:RemoteXmlPullParser
95 String getAttributeValue(String namespace, String name) throws RemoteException; method in interface:RemoteXmlPullParser
/frameworks/layoutlib/remote/server/src/com/android/layoutlib/bridge/remote/server/adapters/
H A DRemoteXmlPullParserAdapter.java302 public String getAttributeValue(int index) { method in class:RemoteXmlPullParserAdapter
304 return mDelegate.getAttributeValue(index);
311 public String getAttributeValue(String namespace, String name) { method in class:RemoteXmlPullParserAdapter
313 return mDelegate.getAttributeValue(namespace, name);
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMELFAttributeData.cpp19 const ELFAttributeValue* ARMELFAttributeData::getAttributeValue( function in class:mcld::ARMELFAttributeData
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DLayoutParserWrapper.java116 mDelegate.getAttributeName(i), mDelegate.getAttributeValue(i)));
174 public String getAttributeValue(@Nullable String namespace, String name) { method in class:LayoutParserWrapper
179 throw new IndexOutOfBoundsException("getAttributeValue() called when not at START_TAG.");
194 returnValue = mDelegate.getAttributeValue(namespace, name);
364 public String getAttributeValue(int i) { method in class:LayoutParserWrapper
/frameworks/base/core/java/android/content/res/
H A DXmlBlock.java204 public String getAttributeValue(int index) { method in class:XmlBlock.Parser
206 if (DEBUG) System.out.println("getAttributeValue of " + index + " = " + id);
227 public String getAttributeValue(String namespace, String name) { method in class:XmlBlock.Parser
235 + ", Value=" + getAttributeValue(idx));
236 return getAttributeValue(idx);
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp1322 printf("getAttributeValue 0x%zx=0x%x\n", idx, id);
1372 ssize_t ResXMLParser::getAttributeValue(size_t idx, Res_value* outValue) const function in class:android::ResXMLParser

Completed in 291 milliseconds