Searched refs:parse (Results 1 - 25 of 123) sorted by relevance

12345

/frameworks/base/core/tests/coretests/src/android/content/
H A DObserverNodeTest.java38 Uri.parse("content://c/a/"),
39 Uri.parse("content://c/"),
40 Uri.parse("content://x/"),
41 Uri.parse("content://c/b/"),
42 Uri.parse("content://c/a/a1/1/"),
43 Uri.parse("content://c/a/a1/2/"),
44 Uri.parse("content://c/b/1/"),
45 Uri.parse("content://c/b/2/"),
68 Uri.parse("content://c/"),
69 Uri.parse("conten
[all...]
H A DMemoryFileProviderTest.java38 Uri uri = Uri.parse("content://android.content.MemoryFileProvider/data/1/blob");
56 Uri uri = Uri.parse("content://android.content.MemoryFileProvider/huge");
72 Uri uri = Uri.parse("content://android.content.MemoryFileProvider/file");
/frameworks/base/core/java/android/pim/vcard/
H A DVCardParser.java39 * @param is The source to parse.
43 public void parse(InputStream is, VCardInterpreter interepreter) method in interface:VCardParser
48 * Cancel parsing vCard. Useful when you want to stop the parse in the other threads.
H A DVCardParser_V30.java79 public void parse(InputStream is, VCardInterpreter interepreter) method in class:VCardParser_V30
81 mVCardParserImpl.parse(is, interepreter);
H A DVCardParser_V40.java69 public void parse(InputStream is, VCardInterpreter interepreter) method in class:VCardParser_V40
71 mVCardParserImpl.parse(is, interepreter);
H A DVCardParser_V21.java101 public void parse(InputStream is, VCardInterpreter interepreter) method in class:VCardParser_V21
103 mVCardParserImpl.parse(is, interepreter);
/frameworks/base/core/tests/coretests/src/android/net/
H A DUriTest.java42 parcelAndUnparcel(Uri.parse("foo:bob%20lee"));
73 Uri u = Uri.parse("bob:lee").buildUpon().scheme("robert").build();
86 Uri.parse("foo:bob%20lee").getSchemeSpecificPart());
88 Uri.parse("foo:bob%20lee").getEncodedSchemeSpecificPart());
90 Uri.parse("foo:/bob%20lee").getEncodedPath());
91 assertNull(Uri.parse("foo:bob%20lee").getPath());
93 Uri.parse("foo:?bob%20lee").getEncodedQuery());
94 assertNull(Uri.parse("foo:bar#?bob%20lee").getQuery());
96 Uri.parse("foo:#bob%20lee").getEncodedFragment());
101 assertTrue(Uri.parse("bo
[all...]
/frameworks/base/core/java/android/util/
H A DXml.java53 public static void parse(String xml, ContentHandler contentHandler) method in class:Xml
58 reader.parse(new InputSource(new StringReader(xml)));
69 public static void parse(Reader in, ContentHandler contentHandler) method in class:Xml
73 reader.parse(new InputSource(in));
80 public static void parse(InputStream in, Encoding encoding, method in class:Xml
87 reader.parse(source);
/frameworks/base/core/java/android/provider/
H A DTelephony.java193 Uri.parse("content://sms");
320 Uri.parse("content://sms/inbox");
354 Uri.parse("content://sms/sent");
386 Uri.parse("content://sms/draft");
434 Uri.parse("content://sms/outbox");
469 Uri.parse("content://sms/conversations");
1199 private static final Uri THREAD_ID_CONTENT_URI = Uri.parse(
1279 public static final Uri CONTENT_URI = Uri.parse("content://mms");
1385 CONTENT_URI = Uri.parse("content://mms/inbox");
1401 CONTENT_URI = Uri.parse("conten
[all...]
H A DUserDictionary.java41 Uri.parse("content://" + AUTHORITY);
51 Uri.parse("content://" + AUTHORITY + "/words");
H A DSocialContract.java36 public static final Uri AUTHORITY_URI = Uri.parse("content://" + AUTHORITY);
H A DCallLog.java39 Uri.parse("content://" + AUTHORITY);
49 Uri.parse("content://call_log/calls");
55 Uri.parse("content://call_log/calls/filter");
H A DDownloads.java63 Uri.parse("content://downloads/my_downloads");
637 Uri.parse("content://downloads/my_downloads");
644 Uri.parse("content://downloads/all_downloads");
H A DContacts.java60 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY);
154 Uri.parse("content://contacts/settings");
355 Uri.parse("content://contacts/people");
364 Uri.parse("content://contacts/people/filter");
373 Uri.parse("content://contacts/deleted_people");
389 Uri.parse("content://contacts/people/with_email_or_im_filter");
806 Uri.parse("content://contacts/groups");
815 Uri.parse("content://contacts/deleted_groups");
996 Uri.parse("content://contacts/phones");
1004 Uri.parse("conten
[all...]
/frameworks/base/core/java/android/content/
H A DDefaultDataHandler.java90 Xml.parse(in, Xml.Encoding.UTF_8, this);
96 Xml.parse(in, this);
104 uri = Uri.parse(uriStr);
176 Uri u = Uri.parse(atts.getValue(URI_STR));
/frameworks/base/include/pim/
H A DEventRecurrence.h31 status_t parse(const String16&);
/frameworks/base/media/libstagefright/include/
H A DESDS.h57 status_t parse();
H A DM3UParser.h61 status_t parse(const void *data, size_t size);
/frameworks/base/voip/jni/rtp/
H A Dutil.cpp25 int parse(JNIEnv *env, jstring jAddress, int port, sockaddr_storage *ss) function
H A DRtpStream.cpp32 extern int parse(JNIEnv *env, jstring jAddress, int port, sockaddr_storage *ss);
43 if (parse(env, jAddress, 0, &ss) < 0) {
/frameworks/base/core/java/android/net/
H A DProxy.java100 Uri u = Uri.parse(host);
116 Uri u = Uri.parse(host);
H A DMailTo.java64 public static MailTo parse(String url) throws ParseException { method in class:MailTo
73 Uri email = Uri.parse(noScheme);
167 * the parse() method.
/frameworks/base/core/java/android/text/style/
H A DURLSpan.java58 Uri uri = Uri.parse(getURL());
/frameworks/base/core/java/android/webkit/
H A DContentLoader.java65 Uri uri = Uri.parse(mUrl);
/frameworks/base/media/libstagefright/rtsp/
H A DASessionDescription.h76 bool parse(const void *data, size_t size);

Completed in 332 milliseconds

12345