HomeSort by relevance Sort by last modified time
    Searched refs:parse (Results 51 - 75 of 1306) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/util/
NameParser.java 39 public StringMatcher parse(String regularExpression) method in class:NameParser
57 parse(regularExpression.substring(index + 1)));
71 parse(regularExpression.substring(index + 1)));
93 StringMatcher matcher = parser.parse(args[0]);
  /external/webkit/Source/WebCore/inspector/front-end/
ScriptFormatterWorker.js 40 var ast = parse.parse(source);
71 return parse;
75 importScripts("UglifyJS/parse-js.js");
76 var parse = exports; variable
  /external/webkit/Source/WebCore/svg/
SVGLengthList.h 34 void parse(const String& value, SVGLengthMode);
SVGNumberList.h 34 void parse(const String&);
  /frameworks/base/tools/aapt/
ResourceFilter.h 20 status_t parse(const char* arg);
  /packages/apps/Contacts/src/com/android/contacts/util/
StructuredPostalUtils.java 31 return Uri.parse("geo:0,0?q=" + Uri.encode(postalAddress));
  /packages/apps/Email/src/com/android/email/
EmailAddressValidator.java 29 return Address.parse(text.toString()).length > 0;
  /packages/apps/Email/tests/src/com/android/email/activity/
IntentUtilitiesTests.java 70 i = new Intent(Intent.ACTION_VIEW, Uri.parse(
78 Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse(uri.replace("ID", "ACCOUNT_ID")));
81 i = new Intent(Intent.ACTION_VIEW, Uri.parse(uri.replace("ID", "MAILBOX_ID")));
84 i = new Intent(Intent.ACTION_VIEW, Uri.parse(uri.replace("ID", "MESSAGE_ID")));
96 i = new Intent(Intent.ACTION_VIEW, Uri.parse("content://s/"));
100 i = new Intent(Intent.ACTION_VIEW, Uri.parse("content://s/?ACCOUNT_UUID="));
104 i = new Intent(Intent.ACTION_VIEW, Uri.parse("content://s/?ACCOUNT_UUID=xyz"));
  /frameworks/base/core/tests/coretests/src/android/net/
UriTest.java 45 parcelAndUnparcel(Uri.parse("foo:bob%20lee"));
76 Uri u = Uri.parse("bob:lee").buildUpon().scheme("robert").build();
89 Uri.parse("foo:bob%20lee").getSchemeSpecificPart());
91 Uri.parse("foo:bob%20lee").getEncodedSchemeSpecificPart());
93 Uri.parse("foo:/bob%20lee").getEncodedPath());
94 assertNull(Uri.parse("foo:bob%20lee").getPath());
96 Uri.parse("foo:?bob%20lee").getEncodedQuery());
97 assertNull(Uri.parse("foo:bar#?bob%20lee").getQuery());
99 Uri.parse("foo:#bob%20lee").getEncodedFragment());
104 assertTrue(Uri.parse("bob").isHierarchical())
    [all...]
  /libcore/luni/src/test/java/tests/api/javax/xml/parsers/
DocumentBuilderTest.java 89 * @see javax.xml.parsers.DocumentBuilder#parse(org.xml.sax.InputSource)
92 public Document parse(InputSource is) throws SAXException, IOException { method in class:DocumentBuilderTest.MockDocumentBuilder
226 Document d = db.parse(f);
231 * javax.xml.parsers.DocumentBuilder#parse(java.io.File)
232 * Case 1: Try to parse correct xml document.
233 * Case 2: Try to call parse() with null argument.
234 * Case 3: Try to parse a non-existent file.
235 * Case 4: Try to parse incorrect xml file.
242 Document d = db.parse(f);
257 // case 2: Try to call parse with null argumen
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/pm/
VerifierDeviceIdentityTest.java 175 VerifierDeviceIdentity id2 = VerifierDeviceIdentity.parse(TEST_1_ENCODED);
184 VerifierDeviceIdentity id2 = VerifierDeviceIdentity.parse(TEST_MAXVALUE_ENCODED);
191 VerifierDeviceIdentity.parse("AAAA-AAAA-AAAA-");
200 VerifierDeviceIdentity.parse("----------------");
209 VerifierDeviceIdentity.parse("AAAA-AAAA-AAAA-AA");
218 VerifierDeviceIdentity.parse(TEST_OVERFLOW_ENCODED);
228 VerifierDeviceIdentity id2 = VerifierDeviceIdentity.parse(TEST_1_ENCODED_LOWERCASE);
230 assertEquals("Lowercase should parse to be the same as uppercase", id1, id2);
237 VerifierDeviceIdentity id1 = VerifierDeviceIdentity.parse(TEST_SUBSTITUTION_CORRECTED);
239 VerifierDeviceIdentity id2 = VerifierDeviceIdentity.parse(TEST_SUBSTITUTION_UNCORRECTED)
    [all...]
  /bionic/libc/regex/
regcomp.c 52 * parse structure, passed up and down to avoid global variables and
55 struct parse { struct
69 static void p_ere(struct parse *, int);
70 static void p_ere_exp(struct parse *);
71 static void p_str(struct parse *);
72 static void p_bre(struct parse *, int, int);
73 static int p_simp_re(struct parse *, int);
74 static int p_count(struct parse *);
75 static void p_bracket(struct parse *);
76 static void p_b_term(struct parse *, cset *)
    [all...]
  /external/llvm/lib/Support/
regcomp.c 53 * parse structure, passed up and down to avoid global variables and
56 struct parse { struct
70 static void p_ere(struct parse *, int);
71 static void p_ere_exp(struct parse *);
72 static void p_str(struct parse *);
73 static void p_bre(struct parse *, int, int);
74 static int p_simp_re(struct parse *, int);
75 static int p_count(struct parse *);
76 static void p_bracket(struct parse *);
77 static void p_b_term(struct parse *, cset *)
    [all...]
  /ndk/sources/host-tools/ndk-stack/regex/
regcomp.c 52 * parse structure, passed up and down to avoid global variables and
55 struct parse { struct
69 static void p_ere(struct parse *, int);
70 static void p_ere_exp(struct parse *);
71 static void p_str(struct parse *);
72 static void p_bre(struct parse *, int, int);
73 static int p_simp_re(struct parse *, int);
74 static int p_count(struct parse *);
75 static void p_bracket(struct parse *);
76 static void p_b_term(struct parse *, cset *)
    [all...]
  /frameworks/base/core/java/android/util/
Xml.java 52 public static void parse(String xml, ContentHandler contentHandler) method in class:Xml
57 reader.parse(new InputSource(new StringReader(xml)));
67 public static void parse(Reader in, ContentHandler contentHandler) method in class:Xml
71 reader.parse(new InputSource(in));
78 public static void parse(InputStream in, Encoding encoding, method in class:Xml
84 reader.parse(source);
  /external/v8/test/mjsunit/
json.js 91 // Parse
92 assertEquals({}, JSON.parse("{}"));
93 assertEquals({42:37}, JSON.parse('{"42":37}'));
94 assertEquals(null, JSON.parse("null"));
95 assertEquals(true, JSON.parse("true"));
96 assertEquals(false, JSON.parse("false"));
97 assertEquals("foo", JSON.parse('"foo"'));
98 assertEquals("f\no", JSON.parse('"f\\no"'));
100 JSON.parse('"\\b\\f\\n\\r\\t\\"\\u2028\\/\\\\"'));
101 assertEquals([1.1], JSON.parse("[1.1]"))
    [all...]
  /external/wpa_supplicant_8/src/ap/
wpa_auth_ft.c 51 struct wpa_ft_ies *parse);
506 struct ieee802_11_elems parse; local
527 if (ieee802_11_parse_elems((u8 *) ies, ies_len, &parse, 1) ==
529 wpa_printf(MSG_DEBUG, "FT: Failed to parse request IEs");
536 if (parse.wmm_tspec) {
540 if (parse.wmm_tspec_len + 2 < (int) sizeof(*tspec)) {
542 "(%d)", (int) parse.wmm_tspec_len);
555 os_memcpy(tspec, parse.wmm_tspec - 2, sizeof(*tspec));
619 struct wpa_ft_ies parse; local
709 if (wpa_ft_parse_ies(req_ies, req_ies_len, &parse) == 0 && parse.ric)
922 struct wpa_ft_ies parse; local
1102 struct wpa_ft_ies parse; local
    [all...]
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/result/
TestSummaryXmlTest.java 52 result.parse(getStringAsReader(TEST_DATA));
65 result.parse(getStringAsReader(MISSING_DATA));
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
LazyDERSequence.java 20 private void parse() method in class:LazyDERSequence
36 parse(); method
  /external/nist-sip/java/gov/nist/javax/sip/parser/
AddressParametersParser.java 50 protected void parse(AddressParametersHeader addressParametersHeader) method in class:AddressParametersParser
52 dbg_enter("AddressParametersParser.parse");
67 } else super.parse(addressParametersHeader);
72 dbg_leave("AddressParametersParser.parse");
ContentDispositionParser.java 46 * @param contentDisposition the header to parse
54 * @param lexer the lexer to use to parse the header
61 * parse the ContentDispositionHeader String header
65 public SIPHeader parse() throws ParseException { method in class:ContentDispositionParser
68 dbg_enter("ContentDispositionParser.parse");
82 super.parse(cd);
92 dbg_leave("ContentDispositionParser.parse");
ContentTypeParser.java 56 public SIPHeader parse() throws ParseException { method in class:ContentTypeParser
60 dbg_enter("ContentTypeParser.parse");
77 super.parse(contentType);
81 dbg_leave("ContentTypeParser.parse");
ErrorInfoParser.java 46 * @param errorInfo the header to parse
54 * @param lexer the lexer to use to parse the header
61 * parse the ErrorInfo String header
65 public SIPHeader parse() throws ParseException { method in class:ErrorInfoParser
68 dbg_enter("ErrorInfoParser.parse");
87 super.parse(errorInfo);
99 dbg_leave("ErrorInfoParser.parse");
EventParser.java 46 * @param event the header to parse
54 * @param lexer the lexer to use to parse the header
61 * parse the String message
65 public SIPHeader parse() throws ParseException { method in class:EventParser
68 dbg_enter("EventParser.parse");
80 super.parse(event);
91 dbg_leave("EventParser.parse");
PriorityParser.java 48 * @param priority the header to parse
56 * @param lexer the lexer to use to parse the header
63 * parse the String header
67 public SIPHeader parse() throws ParseException { method in class:PriorityParser
70 dbg_enter("PriorityParser.parse");
93 dbg_leave("PriorityParser.parse");
106 Priority prio= (Priority) parser.parse();

Completed in 2885 milliseconds

1 23 4 5 6 7 8 91011>>