Searched defs:xml (Results 1 - 5 of 5) sorted by relevance

/packages/apps/Email/provider_src/com/android/email/activity/setup/
H A DAccountSettingsUtils.java145 return findOAuthProvider(context, id, R.xml.oauth);
151 final XmlResourceParser xml = context.getResources().getXml(R.xml.oauth);
154 while ((xmlEventType = xml.next()) != XmlResourceParser.END_DOCUMENT) {
156 && "provider".equals(xml.getName())) {
159 provider.id = getXmlAttribute(context, xml, "id");
160 provider.label = getXmlAttribute(context, xml, "label");
161 provider.authEndpoint = getXmlAttribute(context, xml, "auth_endpoint");
162 provider.tokenEndpoint = getXmlAttribute(context, xml, "token_endpoint");
163 provider.refreshEndpoint = getXmlAttribute(context, xml,
378 getXmlAttribute(Context context, XmlResourceParser xml, String name) argument
[all...]
/packages/apps/Dialer/java/com/android/voicemail/impl/protocol/
H A DVvm3Subscriber.java95 + "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
356 private String extractText(String xml, String tag) throws ProvisioningException { argument
358 Matcher matcher = pattern.matcher(xml);
362 throw new ProvisioningException("Tag " + tag + " not found in xml response");
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
H A DPhoneAccountRegistrarTest.java63 private static final String FILE_NAME = "phone-account-registrar-test-1223.xml";
629 PhoneAccountRegistrar.XmlSerialization<T> xml,
639 xml.writeToXml(input, serializer, context);
651 result = xml.readFromXml(parser, MAX_VERSION, context);
626 roundTripXml( Object self, T input, PhoneAccountRegistrar.XmlSerialization<T> xml, Context context) argument
/packages/apps/Settings/tests/robotests/src/com/android/settings/search2/
H A DDatabaseIndexingManagerTest.java256 SearchIndexableResource resource = getFakeResource(R.xml.display_settings);
264 SearchIndexableResource resource = getFakeResource(R.xml.display_settings);
279 SearchIndexableResource resource = getFakeResource(R.xml.application_settings);
333 // SearchIndexableResource resource = getFakeResource(R.xml.network_and_internet);
356 SearchIndexableResource resource = getFakeResource(R.xml.swipe_to_notification_settings);
413 SearchIndexableResource resource = getFakeResource(R.xml.application_settings);
467 SearchIndexableResource resource = getFakeResource(R.xml.application_settings);
521 SearchIndexableResource resource = getFakeResource(R.xml.connected_devices);
536 SearchIndexableResource resource = getFakeResource(R.xml.swipe_to_notification_settings);
547 SearchIndexableResource resource = getFakeResource(R.xml
1006 getFakeResource(int xml) argument
[all...]
/packages/apps/Settings/src/com/android/settings/
H A DUtils.java1092 public static List<String> getNonIndexable(int xml, Context context) { argument
1100 PreferenceScreen screen = manager.inflateFromResource(context, xml, null);

Completed in 297 milliseconds