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

<<11121314151617181920>>

  /libcore/support/src/test/java/tests/support/
Support_Xml.java 38 return builder.parse(stream);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppLiveFolder.java 48 .parse("content://com.android.bluetooth.opp/live_folders/received");
BluetoothShare.java 56 public static final Uri CONTENT_URI = Uri.parse("content://com.android.bluetooth.opp/btopp");
  /packages/apps/Browser/src/com/android/browser/
UrlHandler.java 42 static final Uri RLZ_PROVIDER_URI = Uri.parse("content://" + RLZ_PROVIDER + "/");
73 Uri.parse(WebView.SCHEME_TEL +
107 Uri siteUri = Uri.parse(url);
145 .parse("market://search?q=pname:" + packagename));
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/
SimpleContentHandler.java 74 currHeader.addField(Field.parse(fieldData));
  /packages/apps/Exchange/src/com/android/exchange/adapter/
ItemOperationsParser.java 23 * Parse the result of an ItemOperations command; we use this to load attachments in EAS 14.0
77 public boolean parse() throws IOException { method in class:ItemOperationsParser
MoveItemsParser.java 24 * Parse the result of a MoveItems command.
98 public boolean parse() throws IOException { method in class:MoveItemsParser
PingParser.java 28 * Parse the result of a Ping command.
66 public boolean parse() throws IOException, StaleFolderListException, IllegalHeartbeatException { method in class:PingParser
  /packages/apps/Mms/src/com/android/mms/drm/
DrmUtils.java 33 private static final Uri DRM_TEMP_URI = Uri.parse("content://mms/drm");
  /packages/apps/Phone/src/com/android/phone/
DataUsage.java 89 Intent myIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(mHelpUri));
  /packages/apps/Tag/src/com/android/apps/tag/record/
SmartPoster.java 124 public static SmartPoster parse(NdefRecord record) { method in class:SmartPoster
129 return parse(subRecords.getRecords());
135 public static SmartPoster parse(NdefRecord[] recordsRaw) { method in class:SmartPoster
152 parse(record);
UriRecord.java 176 public static UriRecord parse(NdefRecord record) { method in class:UriRecord
186 /** Parse and absolute URI record */
189 Uri uri = Uri.parse(new String(payload, Charset.forName("UTF-8")));
193 /** Parse an well known URI record */
215 Uri uri = Uri.parse(new String(fullUri, Charset.forName("UTF-8")));
221 parse(record);
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
DurationTest.java 31 duration.parse(str);
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/util/
TypedUriMatcherImplTest.java 95 assertEquals(expectedType, mTypedUriMatcherImpl.match(Uri.parse(uri)));
  /external/bison/data/
glr.cc 29 # The passing of parse-params
34 # additional parse-param. But because the C++ skeleton needs to
35 # know the "real" original parse-param, we save them
61 # Save the parse parameters.
124 ]dnl In this section, the parse param are the original parse_params.
137 ]b4_parser_class_name[::parse ()
316 /// Parse.
318 virtual int parse ();
  /external/nist-sip/java/gov/nist/javax/sip/parser/
StringMsgParser.java 53 * Parse SIP message and parts of SIP messages such as URI's etc from memory and
91 * Constructor (given a parse exception handler).
95 * is the parse exception listener for the message parser.
114 * Parse a buffer containing a single SIP Message where the body is an array
227 * Parse a buffer containing one or more SIP Messages and return an array of
363 .parse();
376 StatusLine sl = new StatusLineParser(firstLine + "\n").parse();
404 SIPHeader sipHeader = headerParser.parse();
422 * Parse an address (nameaddr or address spec) and return and address
438 * Parse a host:port and return a parsed structure
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
Executable.cpp 105 RefPtr<EvalNode> evalNode = globalData->parser->parse<EvalNode>(lexicalGlobalObject, lexicalGlobalObject->debugger(), exec, m_source, 0, isStrictMode() ? JSParseStrict : JSParseNormal, &exception);
150 RefPtr<ProgramNode> programNode = globalData->parser->parse<ProgramNode>(lexicalGlobalObject, lexicalGlobalObject->debugger(), exec, m_source, 0, JSParseNormal, &exception);
164 RefPtr<ProgramNode> programNode = globalData->parser->parse<ProgramNode>(lexicalGlobalObject, lexicalGlobalObject->debugger(), exec, m_source, 0, isStrictMode() ? JSParseStrict : JSParseNormal, &exception);
208 if (!parse(dfg, globalData, codeBlock))
235 RefPtr<FunctionBodyNode> body = globalData->parser->parse<FunctionBodyNode>(exec->lexicalGlobalObject(), 0, 0, m_source, m_parameters.get(), isStrictMode() ? JSParseStrict : JSParseNormal, &exception);
283 RefPtr<FunctionBodyNode> body = globalData->parser->parse<FunctionBodyNode>(exec->lexicalGlobalObject(), 0, 0, m_source, m_parameters.get(), isStrictMode() ? JSParseStrict : JSParseNormal, &exception);
348 RefPtr<ProgramNode> program = exec->globalData().parser->parse<ProgramNode>(lexicalGlobalObject, debugger, exec, source, 0, JSParseNormal, exception);
  /frameworks/base/voip/java/android/net/sip/
SimpleSessionDescription.java 68 mFields.parse("v=0");
69 mFields.parse(String.format("o=- %d %d %s", sessionId,
71 mFields.parse("s=-");
72 mFields.parse("t=0 0");
73 mFields.parse("c=" + address);
101 fields.parse(line);
526 private void parse(String line) { method in class:SimpleSessionDescription.Fields
  /external/icu4c/test/intltest/
dtfmttst.cpp 246 UDate d = fmt->parse(*s, status);
253 errln((UnicodeString)"FAIL: Should parse to hour " + hour + " but got " + hr);
460 * General parse/format tests. Add test cases as needed.
512 UDate date = format->parse(str, status);
522 logln(UnicodeString(" parse(") + str + ") -> " + dateToString(date));
562 UDate date2 = formatter->parse(now, pos);
563 if (date2 == 0) then = "Parse stopped at " + pos.getIndex();
648 UDate d = fmt->parse(juneStr, status);
651 logln((UnicodeString)" -> parse -> " + s + " (month = " + month + ")");
654 d = fmt->parse(julyStr, status)
    [all...]
dtfmrgts.cpp 94 today = sdf->parse(todayS, status);
95 failure(status, "sdf->parse");
103 rt = sdf->format(sdf->parse(todayS, status), rt, pos);
104 failure(status, "sdf->parse");
260 UDate got = fmt->parse(s, status);
261 failure(status, "fmt->parse");
344 UDate myDate = formatter->parse( dateString, pos );
371 myDate = formatter->parse( dateString, pos );
400 logln(UnicodeString("") + df->parse("35/01/1971", status));
401 failure(status, "df->parse");
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/
AllIntentsActivity.java 323 intent.setData(Uri.parse("tel:800-4664411"));
329 intent.setData(Uri.parse("tel:800-4664411"));
372 final Uri legacyContentUri = Uri.parse("content://contacts/people");
404 final Uri legacyContentUri = Uri.parse("content://contacts/people");
447 final Uri legacyContentUri = Uri.parse("content://contacts/people");
463 final Uri legacyContentUri = Uri.parse("content://contacts/phones");
473 final Uri legacyContentUri = Uri.parse("content://contacts/people");
481 startActivity(new Intent(Intent.ACTION_DIAL, Uri.parse("voicemail:")));
489 startActivity(new Intent(Intent.ACTION_DIAL, Uri.parse("tel:555-123-4567")));
493 startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("tel:555-123-4567")))
    [all...]
  /external/icu4c/i18n/
datefmt.cpp 234 DateFormat::parse(const UnicodeString& text, function in class:DateFormat
241 // Parse may update TimeZone used by the calendar.
245 parse(text, *fCalendar, pos);
268 DateFormat::parse(const UnicodeString& text, function in class:DateFormat
274 UDate result = parse(text, pos);
277 fprintf(stderr, "%s:%d - - failed to parse - err index %d\n"
292 result.setDate(parse(source, pos));
  /frameworks/opt/mailcommon/java/com/android/mailcommon/
WebViewContextMenu.java 210 Uri.parse(WebView.SCHEME_TEL + extra)));
218 Uri.parse("smsto:" + extra)));
240 .parse(WebView.SCHEME_MAILTO + extra)));
259 Uri.parse(WebView.SCHEME_GEO + geoExtra)));
289 openLinkMenuItem.setIntent(new Intent(Intent.ACTION_VIEW, Uri.parse(extra)));
  /external/webkit/Source/WebCore/platform/
KURL.cpp 313 parse(url, 0);
319 parse(url);
325 parse(url.string());
423 parse(str, originalString);
430 parse(parseBuffer.data(), 0);
447 parse(parseBuffer.data(), 0);
453 parse(parseBuffer.data(), 0);
461 parse(parseBuffer.data(), 0);
465 parse(parseBuffer.data(), 0);
540 parse(parseBuffer.data(), 0)
1093 void KURL::parse(const String& string) function in class:WebCore::KURL
1140 void KURL::parse(const char* url, const String* originalString) function in class:WebCore::KURL
    [all...]
  /frameworks/opt/calendar/tests/src/com/android/calendarcommon/
RecurrenceProcessorTest.java 94 dtstart.parse(dtstartStr);
96 rangeStart.parse(rangeStartStr);
97 rangeEnd.parse(rangeEndStr);
157 expectedLast.parse(last);
    [all...]

Completed in 1009 milliseconds

<<11121314151617181920>>