HomeSort by relevance Sort by last modified time
    Searched defs:scheme (Results 151 - 175 of 466) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/base/core/java/com/google/android/util/
AbstractMessageParser.java 342 * scheme or a domain name optionally followed by a path, query, or query.
364 // Make sure this is a known scheme.
365 String scheme = text.substring(nextChar, index); local
366 if (!getResources().getSchemes().contains(scheme)) {
    [all...]
  /frameworks/base/telephony/java/android/telephony/
PhoneNumberUtils.java 191 String scheme = uri.getScheme(); local
193 if (scheme.equals("tel") || scheme.equals("sip")) {
2785 String scheme = source.getScheme(); local
    [all...]
  /frameworks/support/media-widget/src/main/java/androidx/media/widget/impl_with_mp1/
VideoView2ImplBaseWithMp1.java 876 String scheme = uri.getScheme(); local
    [all...]
  /libcore/ojluni/src/main/java/java/net/
URI.java 70 * [<i>scheme</i><b>{@code :}</b>]<i>scheme-specific-part</i>[<b>{@code #}</b><i>fragment</i>]
76 * <p> An <i>absolute</i> URI specifies a scheme; a URI that is not absolute is
80 * <p> An <i>opaque</i> URI is an absolute URI whose scheme-specific part does
91 * scheme-specific part begins with a slash character, or a relative URI, that
92 * is, a URI that does not specify a scheme. Some examples of hierarchical
105 * [<i>scheme</i><b>{@code :}</b>][<b>{@code //}</b><i>authority</i>][<i>path</i>][<b>{@code ?}</b><i>query</i>][<b>{@code #}</b><i>fragment</i>]
110 * scheme-specific part of a hierarchical URI consists of the characters
111 * between the scheme and fragment components.
133 * <blockquote><table summary="Describes the components of a URI:scheme,scheme-specific-part,authority,user-info,host,port,path,query,fragment"
473 private transient String scheme; \/\/ null ==> relative URI field in class:URI
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/
ContactLoader.java 531 final String scheme = uri.getScheme(); local
532 if ("http".equals(scheme) || "https".equals(scheme)) {
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/contactphoto/
ContactPhotoManagerImpl.java 1231 final String scheme = uri.getScheme(); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
Utils.java 747 * <p>A normalized Uri has a lowercase scheme component.
761 * begin with and a scheme component cannot be found.
767 String scheme = uri.getScheme(); local
768 if (scheme == null) return uri; // give up
769 String lowerScheme = scheme.toLowerCase(Locale.US);
770 if (scheme.equals(lowerScheme)) return uri; // no change
772 return uri.buildUpon().scheme(lowerScheme).build();
972 final String scheme = normalizeUri(uri).getScheme(); local
    [all...]
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadProvider.java 772 String scheme = uri.getScheme(); local
    [all...]
  /packages/services/Telephony/src/com/android/phone/
PhoneUtils.java 625 // if the uri does not have a "content" scheme, then we treat
1138 String scheme = uri.getScheme(); local
    [all...]
  /packages/services/Telephony/src/com/android/services/telephony/
TelephonyConnectionService.java 283 String scheme = handle.getScheme(); local
285 if (PhoneAccount.SCHEME_VOICEMAIL.equals(scheme)) {
302 "Voicemail scheme provided but no voicemail number set."));
308 if (!PhoneAccount.SCHEME_TEL.equals(scheme)) {
309 Log.d(this, "onCreateOutgoingConnection, Handle %s is not type tel", scheme);
313 "Handle scheme is not type tel"));
    [all...]
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-netty/0.13.2/
grpc-netty-0.13.2.jar 
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpclient/4.2.1/
httpclient-4.2.1.jar 
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-netty/1.0.3/
grpc-netty-1.0.3.jar 
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-netty/1.0.1/
grpc-netty-1.0.1.jar 
  /prebuilts/devtools/tools/lib/
httpclient-4.1.1.jar 
  /prebuilts/tools/common/http-client/
httpclient-4.1.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpclient/4.1.1/
httpclient-4.1.1.jar 
  /prebuilts/tools/common/offline-m2/org/apache/httpcomponents/httpclient/4.1.1/
httpclient-4.1.1.jar 
  /external/python/cpython2/PC/bdist_wininst/
install.c 165 /* Note: If scheme.prefix is nonempty, it must end with a '\'! */
167 SCHEME old_scheme[] = {
176 SCHEME new_scheme[] = {
1655 SCHEME *scheme = GetScheme(py_major, py_minor); local
1843 SCHEME *scheme; local
    [all...]
  /external/python/cpython3/PC/bdist_wininst/
install.c 172 /* Note: If scheme.prefix is nonempty, it must end with a '\'! */
174 SCHEME old_scheme[] = {
183 SCHEME new_scheme[] = {
1699 SCHEME *scheme = GetScheme(py_major, py_minor); local
1887 SCHEME *scheme; local
    [all...]
  /frameworks/av/packages/MediaComponents/src/com/android/support/mediarouter/app/
MediaRouteControllerDialog.java 1470 String scheme = uri.getScheme().toLowerCase(); local
    [all...]
  /frameworks/av/packages/MediaComponents/src/com/android/widget/
VideoView2Impl.java 748 String scheme = uri.getScheme(); local
749 if (scheme != null && scheme.equals("file")) {
    [all...]
  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
PduPersister.java 933 String scheme = uri.getScheme(); local
    [all...]
  /frameworks/support/media-widget/src/main/java/androidx/media/widget/impl/
VideoView2ImplBase.java 935 String scheme = uri.getScheme(); local
    [all...]
  /frameworks/support/mediarouter/src/main/java/androidx/mediarouter/app/
MediaRouteControllerDialog.java 1463 String scheme = uri.getScheme().toLowerCase(); local
    [all...]

Completed in 1326 milliseconds

1 2 3 4 5 67 8 91011>>