HomeSort by relevance Sort by last modified time
    Searched refs:parse (Results 301 - 325 of 1001) sorted by null

<<11121314151617181920>>

  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
RecurrenceProcessorTest.java 94 dtstart.parse(dtstartStr);
96 rangeStart.parse(rangeStartStr);
97 rangeEnd.parse(rangeEndStr);
153 expectedLast.parse(last);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
AndroidManifestParser.java 631 * This method is useful to parse a specific {@link IFile} in a Java project.
645 public static AndroidManifestParser parse( method in class:AndroidManifestParser
658 parser.parse(new InputSource(manifestFile.getContents()), manifestHandler);
701 * @param manifestFile the manifest file to parse.
705 private static AndroidManifestParser parse(File manifestFile) method in class:AndroidManifestParser
718 parser.parse(new InputSource(new FileReader(manifestFile)), manifestHandler);
766 public static AndroidManifestParser parse( method in class:AndroidManifestParser
    [all...]
  /frameworks/base/core/java/android/provider/
MediaStore.java 379 Uri uri = Uri.parse(
643 return Uri.parse(CONTENT_AUTHORITY_SLASH + volumeName +
    [all...]
Calendar.java 68 Uri.parse("content://" + AUTHORITY);
247 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/calendars");
355 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/attendees");
605 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY +
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
ContentProviderTest.java 77 Uri uri = Uri.parse(ContentResolver.SCHEME_ANDROID_RESOURCE +
147 Uri uri = Uri.parse("content://browser/bookmarks");
249 Uri uri = Uri.parse("content://test");
276 Uri uri = Uri.parse("content://test");
280 uri = Uri.parse("content://test");
290 uri = Uri.parse("content://test");
ContentResolverTest.java 51 private static final Uri TABLE1_URI = Uri.parse("content://" + AUTHORITY + "/testtable1/");
52 private static final Uri TABLE2_URI = Uri.parse("content://" + AUTHORITY + "/testtable2/");
125 Uri invalidUri = Uri.parse("abc");
201 final Uri uri = Uri.parse(ContentResolver.SCHEME_ANDROID_RESOURCE +
208 final Uri invalidUri = Uri.parse("abc");
230 Uri uri = Uri.parse(ContentResolver.SCHEME_FILE + "://" +
241 uri = Uri.parse(ContentResolver.SCHEME_ANDROID_RESOURCE +
257 Uri invalidUri = Uri.parse("abc");
279 Uri uri = Uri.parse(ContentResolver.SCHEME_ANDROID_RESOURCE +
293 Uri invalidUri = Uri.parse("abc")
    [all...]
SearchRecentSuggestionsProviderTest.java 36 private final static Uri TEST_URI = Uri.parse(AUTHORITY_HEAD + "/suggestions");
104 final Uri contentUri = Uri.parse(uriStr);
  /external/icu4c/i18n/
reldtfmt.cpp 87 // Initialize the parent fCalendar, so that parse() works correctly.
180 void RelativeDateFormat::parse( const UnicodeString& text, function in class:RelativeDateFormat
184 // Can the fDateFormat parse it?
187 fDateFormat->parse(text,cal,aPos);
190 pos=aPos; // copy the sub parse
217 // parse failed
221 RelativeDateFormat::parse( const UnicodeString& text, function in class:RelativeDateFormat
223 // redefined here because the other parse() function hides this function's
225 return DateFormat::parse(text, pos);
229 RelativeDateFormat::parse(const UnicodeString& text, UErrorCode& status) cons function in class:RelativeDateFormat
    [all...]
  /external/icu4c/test/intltest/
dtifmtts.cpp 216 //===== test format and parse ==================
259 dataerrln("ERROR: parse should set U_INVALID_FORMAT_ERROR - exitting");
    [all...]
incaltst.cpp 412 // Test simple parse/format with adopt
433 UDate otherDate = fmt->parse(expected, status);
437 errln("Parse incorrect of " + escape(expected) + " - wanted " + aDate + " but got " + otherDate + ", " + escape(str3));
499 // Test simple parse/format with adopt
518 UDate otherDate = fmt->parse(expected, status);
522 fmt->parse(expected, *cal2, pp);
524 errln("Parse incorrect of " + expected + " - wanted " + aDate + " but got " + " = " + otherDate + ", " + str3 + " = " + CalendarTest::calToStr(*cal2) );
532 // Test parse with incomplete information
563 UDate otherDate = fmt->parse(expected, status);
567 fmt->parse(expected, *cal2, pp)
    [all...]
  /frameworks/base/sax/tests/saxtests/src/android/sax/
SafeSaxTest.java 103 Xml.parse(xml, root.getContentHandler());
120 Xml.parse(xml, root.getContentHandler());
138 Xml.parse(xml, root.getContentHandler());
175 Xml.parse(inputStream, Xml.Encoding.UTF_8, new YouTubeContentHandler(videoAdapter));
183 Xml.parse(inputStream, Xml.Encoding.UTF_8, newContentHandler(videoAdapter));
191 Xml.parse(inputStream, Xml.Encoding.UTF_8, contentHandler);
  /cts/tests/tests/net/src/android/net/cts/
Uri_BuilderTest.java 134 Uri uri = Uri.parse("http://google.com/p1?query#fragment");
144 uri = Uri.parse("mailto:nobody");
  /dalvik/dx/src/com/android/dx/cf/direct/
MemberListParser.java 35 /** {@code non-null;} the class file to parse from */
51 /** {@code null-ok;} parse observer, if any */
57 * @param cf {@code non-null;} the class file to parse from
95 * Sets the parse observer for this instance.
104 * Runs {@link #parse} if it has not yet been run successfully.
108 parse(); method
172 private void parse() { method in class:MemberListParser
  /dalvik/dx/src/com/android/dx/command/annotool/
Main.java 75 void parse (String[] argArray) throws InvalidArgumentException { method in class:Main.Arguments
151 args.parse(argArray);
  /dalvik/libcore/xml/src/test/java/tests/xml/
NormalizeTest.java 343 parse(xml);
348 parse(xml);
356 parse(xml);
361 parse(xml);
394 parse(xml);
413 parse(xml);
587 private void parse(String xml) throws Exception { method in class:NormalizeTest
589 .parse(new InputSource(new StringReader(xml)));
SimpleBuilderTest.java 70 method = "parse",
74 Document document = builder.parse(getClass().getResourceAsStream(
127 method = "!todo parse",
132 Document document = builder.parse(getClass().getResourceAsStream(
  /external/apache-http/src/org/apache/http/impl/cookie/
BrowserCompatSpec.java 103 public List<Cookie> parse(final Header header, final CookieOrigin origin) method in class:BrowserCompatSpec
150 return parse(elems, origin);
NetscapeDraftSpec.java 119 public List<Cookie> parse(final Header header, final CookieOrigin origin) method in class:NetscapeDraftSpec
144 return parse(new HeaderElement[] { parser.parseHeader(buffer, cursor) }, origin);
  /external/e2fsprogs/lib/ss/
ct_c.sed 20 # A number sent to the output represents a parse error --- it will be
25 # an awk script to parse.
80 # First, parse out the subroutine name
84 # Next, parse out the help message, being careful to handle a quoted string
127 # Here we parse the list of options.
138 ERROR: parse error in options list
  /external/icu4c/i18n/unicode/
numfmt.h 53 * NumberFormat helps you to format and parse numbers for any locale.
96 * You can use a NumberFormat to parse also.
101 * nf->parse(myString, result, success);
134 * You can also use forms of the parse and format methods with
137 * <li>(a) progressively parse through pieces of a string.
245 * Parse a string to produce an object. This methods handles
255 * parse), while trailing whitespace is left as is.
260 * @param result Formattable to be set to the parse result.
261 * If parse fails, return contents are undefined.
388 * @param result Formattable to be set to the parse result
    [all...]
  /external/iptables/extensions/
libipt_MARK.c 215 .parse = &parse_v0,
232 .parse = &parse_v1,
  /external/iptables/include/
iptables.h 70 int (*parse)(int c, char **argv, int invert, unsigned int *flags, member in struct:iptables_match
123 int (*parse)(int c, char **argv, int invert, unsigned int *flags, member in struct:iptables_target
  /external/v8/test/mjsunit/
date.js 37 var date0 = Date.parse("Dec 25 1995 1:30");
38 var date1 = Date.parse("Dec 25, 1995 1:30");
39 var date2 = Date.parse("Dec 25 1995, 1:30");
40 var date3 = Date.parse("Dec 25, 1995, 1:30");
  /external/webkit/SunSpider/
sunspider-compare-results 45 --parse-only Compare the parse-only benchmark results
52 'parse-only' => \$parseOnly,
57 $suite = "parse-only" if ($parseOnly);
  /frameworks/base/core/java/android/preference/
RingtonePreference.java 188 return !TextUtils.isEmpty(uriString) ? Uri.parse(uriString) : null;
213 onSaveRingtone(Uri.parse(defaultValue));

Completed in 375 milliseconds

<<11121314151617181920>>