/packages/services/Telephony/src/com/android/phone/common/mail/ |
Address.java | 201 // This code mimics the parse() method below. 217 * Parse a comma-delimited list of addresses in RFC822 format and return an 223 public static Address[] parse(String addressList) { method in class:Address 438 * Returns exactly the same result as Address.toHeader(Address.parse(addressList)). 442 return Address.toHeader(Address.parse(addressList)); 477 // IF we're CSV, just parse 480 return Address.parse(addressList);
|
/external/wpa_supplicant_8/src/eap_peer/ |
eap.c | 240 * parse the packet header. 248 /* parse rxReq, rxSuccess, rxFailure, reqId, reqMethod */ 1535 struct erp_tlvs parse; local 1587 struct erp_tlvs parse; local [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/ |
SoundPlayerObject.java | 123 Uri.parse("android.resource://com.android.cts.verifier/" + resId));
|
/cts/hostsidetests/appsecurity/test-apps/PrivilegedUpdateApp/src/com/android/cts/privilegedupdate/ |
PrivilegedUpdateTest.java | 145 intent.setData(Uri.parse(data));
|
/cts/hostsidetests/ui/src/android/ui/cts/ |
TaskSwitchingTest.java | 117 mReport = ReportLog.parse(testMetrics.get(RESULT_KEY));
|
/cts/tests/JobScheduler/src/android/jobscheduler/ |
DummyJobContentProvider.java | 41 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY);
|
/cts/tests/tests/content/src/android/content/cts/ |
DummyProvider.java | 49 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY);
|
/cts/tests/tests/database/src/android/database/cts/ |
ContentObserverTest.java | 28 private static final Uri CONTENT_URI = Uri.parse("content://uri");
|
/cts/tests/tests/telecom/src/android/telecom/cts/ |
CallScreeningServiceTest.java | 51 .setAddress(Uri.parse("tel:555-TEST"))
|
/cts/tools/utils/ |
VogarUtils.java | 70 ExpectationStore result = ExpectationStore.parse(getExpectationFiles(dir), ModeId.DEVICE);
|
/developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/recommendation/ |
RecommendationBuilder.java | 115 Uri.parse(BACKGROUND_URI_PREFIX + Integer.toString(mId)).toString());
|
/developers/build/prebuilts/gradle/BasicMediaDecoder/Application/src/main/java/com/example/android/basicmediadecoder/ |
MainActivity.java | 100 Uri videoUri = Uri.parse("android.resource://"
|
/developers/samples/android/media/BasicMediaDecoder/Application/src/main/java/com/example/android/basicmediadecoder/ |
MainActivity.java | 100 Uri videoUri = Uri.parse("android.resource://"
|
/development/samples/ApiDemos/src/com/example/android/apis/preference/ |
PreferencesFromCode.java | 121 .setData(Uri.parse("http://www.android.com")));
|
/development/samples/MySampleRss/src/com/example/codelab/rssexample/ |
RssContentProvider.java | 56 public static final Uri CONTENT_URI = Uri.parse( "content://my_rss_item/rssitem"); 119 // Our UriMatcher will parse the URI to decide whether the
|
/development/samples/SearchableDictionary/src/com/example/android/searchabledict/ |
DictionaryProvider.java | 35 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/dictionary");
|
/development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/ |
WeatherDataProvider.java | 53 Uri.parse("content://com.example.android.weatherlistwidget.provider");
|
/development/samples/Wiktionary/src/com/example/android/wiktionary/ |
WordWidget.java | 99 Log.e("WordWidget", "Couldn't parse API response", e); 116 Intent defineIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(definePage));
|
/development/samples/WiktionarySimple/src/com/example/android/simplewiktionary/ |
WordWidget.java | 89 Log.e("WordWidget", "Couldn't parse API response", e); 92 // Use a regular expression to parse out the word and its definition 107 Intent defineIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(definePage));
|
/development/samples/browseable/BasicMediaDecoder/src/com.example.android.basicmediadecoder/ |
MainActivity.java | 100 Uri videoUri = Uri.parse("android.resource://"
|
/development/samples/training/network-usage/src/com/example/android/networkusage/ |
StackOverflowXmlParser.java | 37 public List<Entry> parse(InputStream in) throws XmlPullParserException, IOException { method in class:StackOverflowXmlParser
|
/device/sample/apps/LeanbackCustomizer/src/com/google/android/leanbacklauncher/partnercustomizer/ |
PartnerReceiver.java | 140 intent.setData(Uri.parse("market://details?id=" + pkgName));
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/ |
CompositeFormat.java | 61 * @param source the string to parse 74 * @param source the string to parse 103 * @param source the string to parse 104 * @param value the special value to parse. 131 * Parses <code>source</code> for a number. This method can parse normal, 135 * @param source the string to parse 136 * @param format the number format used to parse normal, numeric values. 143 Number number = format.parse(source, pos); 164 * Parse <code>source</code> for an expected fixed string. 165 * @param source the string to parse [all...] |
/external/apache-http/android/src/android/net/http/ |
LegacyHttpDateTime.java | 85 public static long parse(String timeString) method in class:LegacyHttpDateTime
|
/external/apache-http/src/org/apache/http/client/protocol/ |
ResponseProcessCookies.java | 125 List<Cookie> cookies = cookieSpec.parse(header, cookieOrigin);
|