HomeSort by relevance Sort by last modified time
    Searched defs:getAttributeValue (Results 1 - 25 of 335) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/util/
AttributeSet.java 84 public String getAttributeValue(int index);
96 public String getAttributeValue(String namespace, String name);
279 * Equivalent to getAttributeValue(null, "id").
287 * Equivalent to getAttributeValue(null, "class").
XmlPullAttributes.java 41 public String getAttributeValue(int index) {
42 return mParser.getAttributeValue(index);
45 public String getAttributeValue(String namespace, String name) {
46 return mParser.getAttributeValue(namespace, name);
60 getAttributeValue(namespace, attribute), options, defaultValue);
66 getAttributeValue(namespace, attribute), defaultValue);
72 getAttributeValue(namespace, attribute), defaultValue);
78 getAttributeValue(namespace, attribute), defaultValue);
84 getAttributeValue(namespace, attribute), defaultValue);
89 String s = getAttributeValue(namespace, attribute)
    [all...]
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMapFolderListing.java 51 mFolders.add(xpp.getAttributeValue(null, "name"));
BluetoothMapMessagesListing.java 57 attrs.put(xpp.getAttributeName(i), xpp.getAttributeValue(i));
BluetoothMapEventReport.java 199 attrs.put(xpp.getAttributeName(i), xpp.getAttributeValue(i));
  /packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/
FolderListing.java 52 mFolders.add(xpp.getAttributeValue(null, "name"));
MessagesListing.java 57 attrs.put(xpp.getAttributeName(i), xpp.getAttributeValue(i));
EventReport.java 98 attrs.put(xpp.getAttributeName(i), xpp.getAttributeValue(i));
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeLayoutParamsMapAttributes.java 41 public String getAttributeValue(String namespace, String name) {
64 public String getAttributeValue(int index) {
  /packages/apps/Messaging/src/android/support/v7/mms/
MmsXmlResourceParser.java 121 .append(mInputParser.getAttributeValue(i));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
ContextPullParser.java 114 map.put(attribute, getAttributeValue(i));
145 public String getAttributeValue(String namespace, String localName) {
150 String value = super.getAttributeValue(namespace, localName);
WidgetPullParser.java 97 public String getAttributeValue(int index) {
106 public String getAttributeValue(String ns, String name) {
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/kdom/
Element.java 92 public String getAttributeValue(int index) {
96 public String getAttributeValue(String namespace, String name) {
100 return getAttributeValue(i);
200 parser.getAttributeValue(i));
318 getAttributeValue(i));
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/util/
TestAttributeSet.java 60 public String getAttributeValue(String namespace, String attribute) {
86 public String getAttributeValue(int index) {
  /external/swiftshader/third_party/LLVM/lib/DebugInfo/
DWARFDebugInfoEntry.cpp 342 DWARFDebugInfoEntryMinimal::getAttributeValue(const DWARFCompileUnit *cu,
382 if (getAttributeValue(cu, attr, form_value)) {
396 if (getAttributeValue(cu, attr, form_value))
407 if (getAttributeValue(cu, attr, form_value))
418 if (getAttributeValue(cu, attr, form_value))
  /packages/apps/Dialer/java/com/android/voicemail/impl/utils/
XmlUtils.java 108 array.add(parser.getAttributeValue(null, "value"));
136 final String valueName = parser.getAttributeValue(null, "name");
204 return Integer.parseInt(parser.getAttributeValue(null, "value"));
206 return Long.valueOf(parser.getAttributeValue(null, "value"));
208 return Float.valueOf(parser.getAttributeValue(null, "value"));
210 return Double.valueOf(parser.getAttributeValue(null, "value"));
212 return Boolean.valueOf(parser.getAttributeValue(null, "value"));
  /tools/tradefederation/core/src/com/android/tradefed/util/
EmmaXmlReportParser.java 74 String coverageType = getAttributeValue((Element) n, "type");
75 String value = getAttributeValue((Element) n, "value");
106 static public String getAttributeValue(Element element, String attrName) {
  /cts/tests/signature/src/android/signature/cts/
CurrentApi.java 77 String fieldName = parser.getAttributeValue(null, ATTRIBUTE_NAME);
78 String fieldType = parser.getAttributeValue(null, ATTRIBUTE_TYPE);
80 String value = parser.getAttributeValue(null, ATTRIBUTE_VALUE);
92 String methodName = parser.getAttributeValue(null, ATTRIBUTE_NAME);
93 String returnType = parser.getAttributeValue(null, ATTRIBUTE_RETURN);
123 String className = parser.getAttributeValue(null, ATTRIBUTE_NAME);
134 currentClass.setExtendsClass(parser.getAttributeValue(null, ATTRIBUTE_EXTENDS));
190 parser.getAttributeValue(i));
SignatureTest.java 186 currentPackage = parser.getAttributeValue(null, ATTRIBUTE_NAME);
194 currentClass.addImplInterface(parser.getAttributeValue(null, ATTRIBUTE_NAME));
204 currentMethod.addParam(parser.getAttributeValue(null, ATTRIBUTE_TYPE));
206 currentMethod.addException(parser.getAttributeValue(null, ATTRIBUTE_TYPE));
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
Configurator.java 268 params.put(xrp.getAttributeName(i), xrp.getAttributeValue(i));
  /libcore/ojluni/src/main/java/sun/security/pkcs/
PKCS9Attributes.java 297 public Object getAttributeValue(ObjectIdentifier oid)
311 public Object getAttributeValue(String name) throws IOException {
318 return getAttributeValue(oid);
  /libcore/xml/src/main/java/org/xmlpull/v1/
XmlPullParser.java 796 * @see #getAttributeValue
    [all...]
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/task/nonrequiredapps/
SystemAppsSnapshot.java 141 result.add(parser.getAttributeValue(null, ATTR_VALUE));
  /packages/apps/Messaging/src/com/android/messaging/sms/
ApnsXmlProcessor.java 212 .append(mInputParser.getAttributeValue(i));
238 apnValues.put(key, mInputParser.getAttributeValue(i));
281 mInputParser.getAttributeValue(null, "mcc"),
282 mInputParser.getAttributeValue(null, "mnc"));
310 final String key = mInputParser.getAttributeValue(null, "name");
  /packages/apps/TV/src/com/android/tv/parental/
ContentRatingsParser.java 123 mXmlVersionCode = parser.getAttributeValue(i);
186 builder.setName(parser.getAttributeValue(i));
189 for (String country : parser.getAttributeValue(i).split("\\s*,\\s*")) {
247 builder.setName(parser.getAttributeValue(i));
263 contentAgeHint = Integer.parseInt(parser.getAttributeValue(i));
309 builder.setName(parser.getAttributeValue(i));
379 builder.addRatingName(parser.getAttributeValue(i));
406 builder.addSubRatingName(parser.getAttributeValue(i));
434 return parser.getAttributeValue(index);

Completed in 284 milliseconds

1 2 3 4 5 6 7 8 91011>>