| /frameworks/base/core/java/android/nfc/ |
| NfcAdapter.java | 79 * so that MIME, URI scheme and URI host are always lower-case. 858 * Uri you provide must have either scheme 'file' or scheme 'content'. 930 String scheme = uri.getScheme(); local [all...] |
| /frameworks/base/core/java/android/widget/ |
| SuggestionsAdapter.java | 592 String scheme = uri.getScheme(); local 593 if (ContentResolver.SCHEME_ANDROID_RESOURCE.equals(scheme)) {
|
| /frameworks/base/core/java/com/android/internal/app/ |
| ResolverComparator.java | 171 String scheme = intent.getScheme(); local 172 mHttp = "http".equals(scheme) || "https".equals(scheme);
|
| /frameworks/base/drm/java/android/drm/ |
| DrmManagerClient.java | 841 String scheme = uri.getScheme(); local 842 if (null == scheme || scheme.equals("") || 843 scheme.equals(ContentResolver.SCHEME_FILE)) { 846 } else if (scheme.equals("http")) { 849 } else if (scheme.equals(ContentResolver.SCHEME_CONTENT)) { [all...] |
| /frameworks/base/services/core/java/com/android/server/ |
| IntentResolver.java | 63 mSchemeToFilter, " Scheme: "); 206 mSchemeToFilter, " Scheme: "); 388 final String scheme = intent.getScheme(); local 391 buildResolveList(intent, categories, debug, defaultOnly, resolvedType, scheme, 401 String scheme = intent.getScheme(); local 409 TAG, "Resolving type=" + resolvedType + " scheme=" + scheme 456 // the filters that match its scheme (we will further refine matches 458 if (scheme != null) { 459 schemeCut = mSchemeToFilter.get(scheme); [all...] |
| /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/ |
| SuggestionsAdapter.java | 550 String scheme = uri.getScheme(); local 551 if (ContentResolver.SCHEME_ANDROID_RESOURCE.equals(scheme)) { 747 .scheme(ContentResolver.SCHEME_CONTENT)
|
| /packages/apps/Gallery2/src/com/android/gallery3d/app/ |
| MoviePlayer.java | 324 String scheme = mUri.getScheme(); local 325 if ("http".equalsIgnoreCase(scheme) || "rtsp".equalsIgnoreCase(scheme)) {
|
| /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/ |
| SaveImage.java | 602 String scheme = srcUri.getScheme(); local 603 if (scheme == null) { 604 Log.e(LOGTAG, "scheme is null."); 611 if (scheme.equals(ContentResolver.SCHEME_CONTENT)) { 624 } else if (scheme.equals(ContentResolver.SCHEME_FILE)) { 743 String scheme = sourceUri.getScheme(); local 744 if (scheme != null && scheme.equals(ContentResolver.SCHEME_FILE)) {
|
| /packages/apps/PackageInstaller/src/com/android/packageinstaller/ |
| PackageInstallerActivity.java | 569 final String scheme = packageUri.getScheme(); local 571 switch (scheme) { 608 throw new IllegalArgumentException("Unexpected URI scheme " + packageUri); [all...] |
| /prebuilts/go/darwin-x86/src/net/http/ |
| clientserver_test.go | 60 func (t *clientServerTest) scheme() string { func [all...] |
| transport.go | 96 altProto atomic.Value // of nil or map[string]RoundTripper, key is URI scheme 102 // The proxy type is determined by the URL scheme. "http" 103 // and "socks5" are supported. If the scheme is empty, 266 // "host[:port]", in which case the "http" scheme is assumed. 277 if req.URL.Scheme == "https" { 294 (proxyURL.Scheme != "http" && 295 proxyURL.Scheme != "https" && 296 proxyURL.Scheme != "socks5") { 363 scheme := req.URL.Scheme 1357 func (cm *connectMethod) scheme() string { func [all...] |
| /prebuilts/go/linux-x86/src/net/http/ |
| clientserver_test.go | 60 func (t *clientServerTest) scheme() string { func [all...] |
| transport.go | 96 altProto atomic.Value // of nil or map[string]RoundTripper, key is URI scheme 102 // The proxy type is determined by the URL scheme. "http" 103 // and "socks5" are supported. If the scheme is empty, 266 // "host[:port]", in which case the "http" scheme is assumed. 277 if req.URL.Scheme == "https" { 294 (proxyURL.Scheme != "http" && 295 proxyURL.Scheme != "https" && 296 proxyURL.Scheme != "socks5") { 363 scheme := req.URL.Scheme 1357 func (cm *connectMethod) scheme() string { func [all...] |
| /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/ |
| org.eclipse.equinox.simpleconfigurator_1.0.400.v20130327-2119.jar | |
| /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpclient/4.2.6/ |
| httpclient-4.2.6.jar | |
| /cts/common/device-side/util/src/com/android/compatibility/common/util/ |
| MediaUtils.java | 469 String scheme = uri.getScheme(); local 472 if (scheme == null) { // file 474 } else if (scheme.equalsIgnoreCase("file")) { [all...] |
| /external/libcups/cups/ |
| dest.c | 606 char scheme[32], /* URI scheme */ local 683 if (httpSeparateURI(HTTP_URI_CODING_ALL, uri, scheme, sizeof(scheme), 727 if (!strcmp(scheme, "ipps") || port == 443) 1113 char scheme[32], \/* URI scheme *\/ local 1212 scheme[256], \/* Scheme from URI *\/ local 3665 char scheme[32], \/* URI scheme *\/ local [all...] |
| /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
| HttpUrlTest.java | 85 @Test public void scheme() throws Exception { method in class:HttpUrlTest [all...] |
| /external/robolectric/v1/src/main/java/android/net/ |
| Uri__FromAndroid.java | 96 <scheme>://<authority><path>?<query> 128 * Absolute URIs are hierarchical if the scheme-specific part starts with 135 * scheme-specific part of an opaque URI cannot start with a '/'. 143 * explicit scheme. 151 * explicit scheme. 160 * Gets the scheme of this URI. Example: "http" 162 * @return the scheme or null if this is a relative URI 167 * Gets the scheme-specific part of this URI, i.e. everything between the 168 * scheme separator ':' and the fragment separator '#'. If this is a 173 * @return the decoded scheme-specific-par 477 private volatile String scheme = NOT_CACHED; field in class:Uri__FromAndroid.StringUri 778 private final String scheme; field in class:Uri__FromAndroid.OpaqueUri 1084 private final String scheme; \/\/ can be null field in class:Uri__FromAndroid.HierarchicalUri 1263 private String scheme; field in class:Uri__FromAndroid.Builder 1280 public Builder scheme(String scheme) { method in class:Uri__FromAndroid.Builder [all...] |
| /external/tensorflow/tensorflow/core/platform/cloud/ |
| gcs_file_system.cc | 163 StringPiece scheme, bucketp, objectp; local 164 io::ParseURI(fname, &scheme, &bucketp, &objectp); 165 if (scheme != "gs") { [all...] |
| /external/tpm2/ |
| CryptUtil.c | 628 TPMT_SIG_SCHEME *scheme, // IN: signing scheme 637 digestSize = CryptStartHMAC2B(scheme->details.hmac.hashAlg, 646 signature->signature.hmac.hashAlg = scheme->details.hmac.hashAlg; 690 // TPM_RC_SIZE sensitive data size is larger than allowed for the scheme 704 TPMT_KEYEDHASH_SCHEME *scheme; local 712 scheme = &publicArea->parameters.keyedHashDetail.scheme; 715 if(scheme->scheme == TPM_ALG_NULL 1309 const TPMT_ECC_SCHEME *scheme = NULL; local 2413 TPMT_RSA_DECRYPT scheme; local 2532 TPMT_RSA_DECRYPT scheme; local [all...] |
| /frameworks/av/media/extractors/mkv/ |
| MatroskaExtractor.cpp | 557 // find scheme 558 AString scheme; local 573 scheme = AString(uri, 0, i); 574 scheme.append("://<suppressed>"); 575 return scheme; 577 return AString("<no-scheme URI suppressed>"); [all...] |
| /frameworks/av/media/libstagefright/ |
| Utils.cpp | 1716 AString scheme; local [all...] |
| /frameworks/base/core/java/android/content/ |
| ContentResolver.java | 601 * using the content:// scheme. 649 * using the content:// scheme. 691 * @param uri The URI, using the content:// scheme, for the content to 728 * @param uri The URI, using the content:// scheme, for the content to 999 String scheme = uri.getScheme(); local 1278 String scheme = uri.getScheme(); local [all...] |
| /frameworks/base/core/java/android/net/ |
| Uri.java | 110 <scheme>://<authority><path>?<query> 142 * Absolute URIs are hierarchical if the scheme-specific part starts with 149 * scheme-specific part of an opaque URI cannot start with a '/'. 157 * explicit scheme. 165 * explicit scheme. 174 * Gets the scheme of this URI. Example: "http" 176 * @return the scheme or null if this is a relative URI 182 * Gets the scheme-specific part of this URI, i.e. everything between 183 * the scheme separator ':' and the fragment separator '#'. If this is a 188 * @return the decoded scheme-specific-par 382 String scheme = getScheme(); local 551 private volatile String scheme = NOT_CACHED; field in class:Uri.StringUri 860 private final String scheme; field in class:Uri.OpaqueUri 1166 private final String scheme; \/\/ can be null field in class:Uri.HierarchicalUri 1347 private String scheme; field in class:Uri.Builder 1364 public Builder scheme(String scheme) { method in class:Uri.Builder 1777 String scheme = getScheme(); local [all...] |