HomeSort by relevance Sort by last modified time
    Searched refs:parse (Results 1676 - 1700 of 4368) sorted by null

<<61626364656667686970>>

  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ZoneMeta.java 609 * Parse a custom time zone identifier and return a corresponding zone.
630 * Parse a custom time zone identifier and return the normalized
678 Number n = numberFormat.parse(id, pos);
692 n = numberFormat.parse(id, pos);
705 n = numberFormat.parse(id, pos);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
SimpleDateFormat.java 649 * // Parse the previous string back into a Date.
651 * Date currentTime_2 = formatter.parse(dateString, pos);
684 * parse "1234". In other words, the leftmost field of the run is flexible,
685 * while the others keep a fixed width. If the parse fails anywhere in the run,
687 * parsed again. This is repeated until either the parse succeeds or the
688 * leftmost field is one character in length. If the parse still fails at that
689 * point, the parse of the run fails.
2171 public void parse(String text, Calendar cal, ParsePosition parsePos) method in class:SimpleDateFormat
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/util/
MultiPartInputStream.java 400 * Parse, if necessary, the multipart data and return the list of Parts.
409 parse(); method
432 parse(); method
438 * Parse, if necessary, the multipart stream.
443 protected void parse () method in class:MultiPartInputStream
454 //if its not a multipart request, don't parse it
  /external/jsilver/src/com/google/streamhtmlparser/impl/
HtmlParserImpl.java 39 * state changing operations (such as {@code parse} from multiple threads
334 * you want to parse text from a very clean slate.
382 * that will be inserted here but that it will not get to parse. Used
576 jsParser.parse(entityResolver.getEntity());
579 jsParser.parse(input);
617 * <p>Called inside CDATA blocks to parse javascript.
624 jsParser.parse(input);
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_from_tgsi.cpp 645 struct tgsi_parse_context parse; local
678 tgsi_parse_init(&parse, tokens);
679 while (!tgsi_parse_end_of_tokens(&parse)) {
680 tgsi_parse_token(&parse);
682 switch (parse.FullToken.Token.Type) {
684 scanImmediate(&parse.FullToken.FullImmediate);
687 scanDeclaration(&parse.FullToken.FullDeclaration);
690 insns[insnCount++] = parse.FullToken.FullInstruction;
691 scanInstruction(&parse.FullToken.FullInstruction);
694 scanProperty(&parse.FullToken.FullProperty)
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
CallTest.java 189 new Request.Builder().method("GET", RequestBody.create(MediaType.parse("text/plain"), "abc"));
230 .post(RequestBody.create(MediaType.parse("text/plain"), "def"))
403 .method("DELETE", RequestBody.create(MediaType.parse("text/plain"), "def"))
420 .put(RequestBody.create(MediaType.parse("text/plain"), "def"))
449 .patch(RequestBody.create(MediaType.parse("text/plain"), "def"))
707 return MediaType.parse("text/plain");
724 return MediaType.parse("text/plain");
    [all...]
  /frameworks/base/core/tests/coretests/src/android/text/format/
TimeTest.java 32 t.parse("20060432T010203");
272 t.parse("20061005T120000");
353 t.parse("12345678T901234");
363 fail("Did not parse all-day date correctly");
370 fail("Did not parse timezone-offset-less date correctly");
377 fail("Did not parse UTC date correctly");
384 fail("Did not parse UTC date correctly");
391 fail("Did not parse UTC date correctly");
398 fail("Did not parse UTC date correctly");
406 fail("Did not parse timezone-offset date correctly")
    [all...]
  /frameworks/base/tools/aapt2/compile/
Compile.cpp 50 // Original config str. We keep this because when we parse the config, we may add on
77 if (!ConfigDescription::parse(configStr, &config)) {
196 // Parse the values file from XML.
207 if (!resParser.parse(&xmlParser)) {
479 if (!flags.parse("aapt2 compile", args, &std::cerr)) {
  /libcore/ojluni/src/main/java/sun/security/x509/
X509CertInfo.java 151 parse(in);
167 parse(derVal);
623 private void parse(DerValue val) method in class:X509CertInfo
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppTransfer.java 279 Uri contentUri = Uri.parse(BluetoothShare.CONTENT_URI + "/" + share.mId);
315 Uri contentUri = Uri.parse(BluetoothShare.CONTENT_URI + "/" + info.mId);
685 Uri contentUri = Uri.parse(BluetoothShare.CONTENT_URI + "/" + share.mId);
  /packages/apps/Browser2/src/org/chromium/webview_shell/
WebViewBrowserActivity.java 110 return Uri.parse(mOrigin);
138 return Uri.parse(mOrigin);
420 && "file".equals(Uri.parse(url).getScheme())
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/
AllIntentsActivity.java 327 final Uri legacyContentUri = Uri.parse("content://contacts/people");
357 final Uri legacyContentUri = Uri.parse("content://contacts/people");
415 final Uri legacyContentUri = Uri.parse("content://contacts/people");
  /packages/apps/Email/provider_src/com/android/email/mail/store/
Pop3Store.java 456 * Parse a single-line response. This is returned from a command of the form
489 * Parse a multi-line response. This is returned from a command of the form
607 message.parse(new Pop3ResponseInputStream(in), callback);
614 * and can't parse it we need to let the user know.
778 public void parse(InputStream in) throws IOException, MessagingException { method in class:Pop3Store.Pop3Message
779 super.parse(in);
  /packages/apps/Messaging/src/com/android/messaging/util/
PhoneUtils.java 739 * Utility method to parse user input number into standard E164 number.
742 * @param country ISO country code based on which to parse the number.
748 final PhoneNumber phoneNumber = phoneNumberUtil.parse(phoneText, country);
753 LogUtil.e(TAG, "PhoneUtils.getValidE164Number(): Not able to parse phone number "
843 final PhoneNumber phoneNumber = phoneNumberUtil.parse(selfNumber, country);
850 LogUtil.e(TAG, "PhoneUtils.getSimNumberNoCountryCode(): Not able to parse phone number "
875 final PhoneNumber parsedNumber = phoneNumberUtil.parse(phoneText, systemCountry);
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/experimental/javascript/closure/
json.js 80 * @param {*} s The JSON string to parse.
83 goog.json.parse = function(s) {
100 * @param {string} s The JSON string to parse.
  /build/kati/
parser.cc 72 void Parse() {
530 void Parse(Makefile* mk) {
531 COLLECT_STATS("parse file time");
535 parser.Parse();
538 void Parse(StringPiece buf, const Loc& loc, vector<Stmt*>* out_stmts) {
539 COLLECT_STATS("parse eval time");
541 parser.Parse();
548 parser.Parse();
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
ByodHelperActivity.java 230 .setData(Uri.parse("package:" + getPackageName()))
311 toSend.setData(Uri.parse("http://com.android.cts.verifier"));
  /cts/hostsidetests/appsecurity/test-apps/DocumentClient/src/com/android/cts/documentclient/
DocumentsClientTest.java 90 readFully(Uri.parse("content://com.android.cts.documentprovider/document/doc:file1"));
324 readFully(Uri.parse("content://com.android.cts.documentprovider/document/doc:file1"));
  /cts/tests/tests/content/src/android/content/cts/
MockContentProvider.java 211 testUri = Uri.parse("content://" + mAuthority + "/testtable1");
215 testUri = Uri.parse("content://" + mAuthority + "/testtable2");
  /cts/tests/tests/provider/src/android/provider/cts/
SettingsTest.java 139 Uri uri = Uri.parse("content://settings/" + table);
183 uri = Uri.parse("content://settings/" + goodtable);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/
XmpDepthDecode.java 144 List<Section> sections = parse(is, true, skipExtendedContent);
204 * @return The parse result
206 private static List<Section> parse(InputStream is, boolean readMetaOnly, method in class:XmpDepthDecode
258 System.out.println("Could not parse file." + e);
331 * javax.xml.parsers.DocumentBuilder fails to parse it in android.
352 * @param sections The list of sections parse
366 System.out.println("XMP parse error " + e);
377 * @param sections The list of sections to parse
396 * @param sections The list of sections to parse
404 // Compute the size of the buffer to parse the extended sections
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
GeeTestResultParser.java 259 parse(line);
264 * Parse an individual output line.
268 private void parse(String line) { method in class:GeeTestResultParser
389 * Parse the test identifier (class and test name), and optional time info.
396 * be null. If the line failed to parse properly (eg: could not determine name of
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/testtype/
CtsTestTest.java 236 mMockPlan.parse((InputStream) EasyMock.anyObject());
270 mMockPlan.parse((InputStream) EasyMock.anyObject());
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LoaderThrottle.java 83 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/main");
90 = Uri.parse("content://" + AUTHORITY + "/main/");
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
LoaderThrottleSupport.java 84 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/main");
91 = Uri.parse("content://" + AUTHORITY + "/main/");

Completed in 740 milliseconds

<<61626364656667686970>>