/development/samples/NotePad/src/com/example/android/notepad/ |
NotePad.java | 41 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/notes");
|
/external/apache-http/src/org/apache/http/cookie/ |
CookieSpec.java | 64 * Parse the <tt>"Set-Cookie"</tt> Header into an array of Cookies. 76 List<Cookie> parse(Header header, CookieOrigin origin) throws MalformedCookieException; method in interface:CookieSpec
|
/external/svox/pico/src/com/svox/pico/ |
DownloadVoiceData.java | 32 Uri marketUri = Uri.parse(MARKET_URI);
|
/external/webkit/JavaScriptCore/parser/ |
Parser.h | 49 PassRefPtr<ParsedNode> parse(JSGlobalData* globalData, Debugger*, ExecState*, const SourceCode& source, int* errLine = 0, UString* errMsg = 0); 57 void parse(JSGlobalData*, int* errLine, UString* errMsg); 70 PassRefPtr<ParsedNode> Parser::parse(JSGlobalData* globalData, Debugger* debugger, ExecState* debuggerExecState, const SourceCode& source, int* errLine, UString* errMsg) function in class:JSC::Parser 75 parse(globalData, errLine, errMsg);
|
/packages/apps/IM/libwbxml/include/ |
expat_parser.h | 34 int parse(const char * data, int len, bool end);
|
/external/iptables/extensions/ |
libip6t_NFQUEUE.c | 49 parse(int c, char **argv, int invert, unsigned int *flags, function 104 .parse = &parse,
|
libip6t_condition.c | 28 parse(int c, char **argv, int invert, unsigned int *flags, function 94 .parse = &parse,
|
libipt_NFQUEUE.c | 49 parse(int c, char **argv, int invert, unsigned int *flags, function 104 .parse = &parse,
|
libipt_condition.c | 28 parse(int c, char **argv, int invert, unsigned int *flags, function 94 .parse = &parse,
|
libipt_helper.c | 30 parse(int c, char **argv, int invert, unsigned int *flags, function 91 .parse = &parse,
|
libipt_quota.c | 44 /* parse quota option */ 60 /* parse all options, returning true if we found any for us */ 62 parse(int c, char **argv, int invert, unsigned int *flags, function 96 .parse = &parse,
|
libip6t_2connmark.c | 58 parse(int c, char **argv, int invert, unsigned int *flags, function 141 .parse = &parse,
|
libip6t_CONNSECMARK.c | 33 static int parse(int c, char **argv, int invert, unsigned int *flags, function 113 .parse = &parse,
|
/external/webkit/WebCore/platform/cf/ |
KURLCFNet.cpp | 39 parse(0, 0); 49 parse(bytes, 0); 59 parse(buffer.data(), 0);
|
/packages/apps/Email/tests/src/com/android/email/ |
PreferencesUnitTests.java | 74 testAccountUri = Uri.parse("bogus://accounts/" + mAccount.getUuid()); 79 testAccountUri = Uri.parse("content://bogus/" + mAccount.getUuid()); 84 testAccountUri = Uri.parse("content://accounts/" + mAccount.getUuid() + "-bogus");
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
LauncherSettings.java | 100 static final Uri CONTENT_URI = Uri.parse("content://" + 108 static final Uri CONTENT_URI_NO_NOTIFICATION = Uri.parse("content://" + 121 return Uri.parse("content://" + LauncherProvider.AUTHORITY +
|
/external/wpa_supplicant_6/wpa_supplicant/src/eap_server/ |
eap_ttls.c | 166 static int eap_ttls_avp_parse(u8 *buf, size_t len, struct eap_ttls_avp *parse) 174 os_memset(parse, 0, sizeof(*parse)); 218 if (parse->eap == NULL) { 219 parse->eap = os_malloc(dlen); 220 if (parse->eap == NULL) { 226 os_memcpy(parse->eap, dpos, dlen); 227 parse->eap_len = dlen; 229 u8 *neweap = os_realloc(parse->eap, 230 parse->eap_len + dlen) 1131 struct eap_ttls_avp parse; local [all...] |
/dalvik/libcore/xml/src/test/java/tests/api/javax/xml/parsers/ |
SAXParserTest.java | 221 // parser.parse(is, dh, ParsingSupport.XML_SYSTEM_ID); 238 // parser.parse(is, hb, ParsingSupport.XML_SYSTEM_ID); 341 * @test javax.xml.parsers.SAXParser#parse(java.io.File, 347 method = "parse", 357 parser.parse(list_wf[i], dh); 364 parser.parse(list_nwf[i], dh); 373 parser.parse((File) null, dh); 380 parser.parse(list_wf[0], (DefaultHandler) null); 389 method = "parse", 398 parser.parse(list_wf[i], dh) [all...] |
DocumentBuilderTest.java | 95 * @see javax.xml.parsers.DocumentBuilder#parse(org.xml.sax.InputSource) 98 public Document parse(InputSource is) throws SAXException, IOException { method in class:DocumentBuilderTest.MockDocumentBuilder 271 method = "parse", 276 Document d = db.parse(f); 281 * @tests javax.xml.parsers.DocumentBuilder#parse(java.io.File) 282 * Case 1: Try to parse correct xml document. 283 * Case 2: Try to call parse() with null argument. 284 * Case 3: Try to parse a non-existent file. 285 * Case 4: Try to parse incorrect xml file. 290 method = "parse", [all...] |
/packages/apps/IM/src/com/android/im/provider/ |
Imps.java | 150 Uri.parse("content://imps/providers"); 153 Uri.parse("content://imps/providers/account"); 257 Uri.parse("content://imps/accounts"); 330 Uri.parse("content://imps/accountStatus"); 526 Uri.parse("content://imps/contacts"); 532 Uri.parse("content://imps/contactsWithPresence"); 538 Uri.parse("content://imps/contactsBarebone"); 544 Uri.parse("content://imps/contacts/chatting"); 550 Uri.parse("content://imps/contacts/blocked"); 556 Uri.parse("content://imps/contacts") [all...] |
/cts/tests/tests/content/src/android/content/cts/ |
AvailableIntentsTest.java | 59 Uri uri = Uri.parse(NORMAL_URL); 74 Uri uri = Uri.parse(SECURE_URL); 89 Uri uri = Uri.parse(NORMAL_URL); 105 Uri uri = Uri.parse(SECURE_URL); 136 Uri uri = Uri.parse("tel:2125551212"); 150 Uri uri = Uri.parse("tel:(212)5551212"); 164 Uri uri = Uri.parse("voicemail:");
|
IntentFilter_AuthorityEntryTest.java | 82 Uri uri = Uri.parse("testUri"); 84 uri = Uri.parse("content://contacts/deleted_people"); 86 uri = Uri.parse("test"); 89 uri = Uri.parse("http://" + mHost); 93 uri = Uri.parse("http://" + mHost + ":90"); 97 uri = Uri.parse("http://" + mHost + ":80"); 101 uri = Uri.parse("http://" + mHost + ":80");
|
/dalvik/libcore/xml/src/test/java/tests/xml/ |
SaxTest.java | 34 * Initiate and observe a SAX parse session. 39 parse(false, false, "<foo bar=\"baz\"/>", new DefaultHandler() { method 52 parse(false, false, "<a:foo a:bar=\"baz\"/>", new DefaultHandler() { method 67 parse(false, true, "<foo bar=\"baz\"/>", new DefaultHandler() { method 80 parse(false, true, "<a:foo a:bar=\"baz\" xmlns:a=\"http://quux\"/>", new DefaultHandler() { method 100 parse(true, true, "<foo bar=\"baz\"/>", new DefaultHandler() { method 113 parse(true, true, "<a:foo a:bar=\"baz\" xmlns:a=\"http://quux\"/>", new DefaultHandler() { method 131 parse(true, false, "<foo bar=\"baz\"/>", new DefaultHandler() { method 144 parse(true, false, "<a:foo a:bar=\"baz\"/>", new DefaultHandler() { method 158 private void parse(boolean prefixes, boolean namespaces, String xml method in class:SaxTest [all...] |
/packages/apps/Email/tests/src/com/android/email/mail/ |
AddressUnitTests.java | 162 * TODO: more in-depth tests for parse() 166 * Simple quick checks of empty-input edge conditions for parse() 175 result = Address.parse(null); 179 result = Address.parse(""); 183 result = Address.parse(" "); 187 result = Address.parse(" , "); 195 Address[] address1 = Address.parse("address1@dom1.com"); 200 Address[] address2 = Address.parse("<address2@dom2.com>"); 205 Address[] address3 = Address.parse("first last <address3@dom3.org>"); 210 Address[] address4 = Address.parse("\"first,last\" <address4@dom4.org>") [all...] |
/external/icu4c/i18n/ |
reldtfmt.h | 15 * \brief C++ API: Format and parse relative dates and times. 120 * Parse a date/time string beginning at the given parse position. For 126 * parse succeeds. Clients may insist on strict adherence to the format by 134 * start position if the parse failed. 138 virtual void parse( const UnicodeString& text, 143 * Parse a date/time string starting at the given parse position. For 149 * parse succeeds. Clients may insist on strict adherence to the format by 157 * start position if the parse failed [all...] |