/aosp_15_r20/libcore/ojluni/src/main/java/java/net/ |
H A D | URI.java | 20 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 47 // Android-changed: Reformat @see links. 49 * Represents a Uniform Resource Identifier (URI) reference. 52 * class represents a URI reference as defined by 54 * Resource Identifiers (URI): Generic Syntax</i></a>, amended by <a 59 * This class provides constructors for creating URI instances from 62 * and relativizing URI instances. Instances of this class are immutable. 65 * <h3> URI syntax and components </h3> 67 * At the highest level a URI reference (hereinafter simply "URI") in string 71 * [<i>scheme</i><b>{@code :}</b>]<i>scheme-specific-part</i>[<b>{@code #}</b><i>fragment</i>] [all …]
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/net/ |
D | URI.java | 20 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 47 // Android-changed: Reformat @see links. 49 * Represents a Uniform Resource Identifier (URI) reference. 52 * class represents a URI reference as defined by 54 * Resource Identifiers (URI): Generic Syntax</i></a>, amended by <a 59 * This class provides constructors for creating URI instances from 62 * and relativizing URI instances. Instances of this class are immutable. 65 * <h3> URI syntax and components </h3> 67 * At the highest level a URI reference (hereinafter simply "URI") in string 71 * [<i>scheme</i><b>{@code :}</b>]<i>scheme-specific-part</i>[<b>{@code #}</b><i>fragment</i>] [all …]
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/6/libcore/ojluni/src/main/java/java/net/ |
D | URI.java | 20 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 47 // Android-changed: Reformat @see links. 49 * Represents a Uniform Resource Identifier (URI) reference. 52 * class represents a URI reference as defined by 54 * Resource Identifiers (URI): Generic Syntax</i></a>, amended by <a 59 * This class provides constructors for creating URI instances from 62 * and relativizing URI instances. Instances of this class are immutable. 65 * <h3> URI syntax and components </h3> 67 * At the highest level a URI reference (hereinafter simply "URI") in string 71 * [<i>scheme</i><b>{@code :}</b>]<i>scheme-specific-part</i>[<b>{@code #}</b><i>fragment</i>] [all …]
|
/aosp_15_r20/frameworks/base/core/java/android/net/ |
H A D | Uri.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 47 * Immutable URI reference. A URI reference includes a URI and a fragment, the 48 * component of the URI following a '#'. Builds and parses URI references 54 * forgiving--in the face of invalid input, it will return garbage 57 public abstract class Uri implements Parcelable, Comparable<Uri> { class 64 URI string (StringUri) and another if the user passes in the 86 those final fields that are at least as up-to-date as the final fields 89 In that same vein, all non-transient fields within Uri 96 "4.3. Parsing a URI Reference 98 A URI reference is typically parsed according to the four main [all …]
|
/aosp_15_r20/libcore/ojluni/src/main/java/sun/nio/fs/ |
H A D | UnixUriUtils.java | 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 30 import java.net.URI; 35 * Unix specific Path <--> URI conversion 42 * Converts URI to Path 44 static Path fromUri(UnixFileSystem fs, URI uri) { in fromUri() argument 45 if (!uri.isAbsolute()) in fromUri() 46 throw new IllegalArgumentException("URI is not absolute"); in fromUri() 47 if (uri.isOpaque()) in fromUri() 48 throw new IllegalArgumentException("URI is not hierarchical"); in fromUri() 49 String scheme = uri.getScheme(); in fromUri() [all …]
|
/aosp_15_r20/external/python/cpython3/Lib/urllib/ |
D | parse.py | 5 RFC 3986 (STD66): "Uniform Resource Identifiers" by T. Berners-Lee, R. Fielding 11 RFC 2396: "Uniform Resource Identifiers (URI)": Generic Syntax by T. 12 Berners-Lee, R. Fielding, and L. Masinter, August 1998. 19 RFC 1738: "Uniform Resource Locators (URL)" by T. Berners-Lee, L. Masinter, M. 69 # compatibility. (They are undocumented, but have a public-looking name.) 85 '+-.') 103 # presented, we may relax this by using latin-1 117 return tuple(x.decode(encoding, errors) if x else '' for x in args) 120 # Invokes decode if necessary to create str args 123 # - noop for str inputs [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/urllib/ |
D | parse.py | 5 RFC 3986 (STD66): "Uniform Resource Identifiers" by T. Berners-Lee, R. Fielding 11 RFC 2396: "Uniform Resource Identifiers (URI)": Generic Syntax by T. 12 Berners-Lee, R. Fielding, and L. Masinter, August 1998. 19 RFC 1738: "Uniform Resource Locators (URL)" by T. Berners-Lee, L. Masinter, M. 69 # compatibility. (They are undocumented, but have a public-looking name.) 85 '+-.') 103 # presented, we may relax this by using latin-1 117 return tuple(x.decode(encoding, errors) if x else '' for x in args) 120 # Invokes decode if necessary to create str args 123 # - noop for str inputs [all …]
|
D | request.py | 5 below). It opens the URL and returns the results as file-like 13 non-error returns. The HTTPRedirectHandler automatically deals with 17 urlopen(url, data=None) -- Basic usage is the same as original 19 get a file-like object back. One difference is that you can also pass 24 build_opener -- Function that creates a new OpenerDirector instance. 30 install_opener -- Installs a new opener as the default opener. 34 OpenerDirector -- Sets up the User Agent as the Python-urllib client and manages 37 Request -- An object that encapsulates the state of a request. The 39 headers, e.g. a User-Agent. 41 BaseHandler -- [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/urllib/ |
D | parse.py | 5 RFC 3986 (STD66): "Uniform Resource Identifiers" by T. Berners-Lee, R. Fielding 11 RFC 2396: "Uniform Resource Identifiers (URI)": Generic Syntax by T. 12 Berners-Lee, R. Fielding, and L. Masinter, August 1998. 19 RFC 1738: "Uniform Resource Locators (URL)" by T. Berners-Lee, L. Masinter, M. 69 # compatibility. (They are undocumented, but have a public-looking name.) 85 '+-.') 103 # presented, we may relax this by using latin-1 117 return tuple(x.decode(encoding, errors) if x else '' for x in args) 120 # Invokes decode if necessary to create str args 123 # - noop for str inputs [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/urllib/ |
D | parse.py | 5 RFC 3986 (STD66): "Uniform Resource Identifiers" by T. Berners-Lee, R. Fielding 11 RFC 2396: "Uniform Resource Identifiers (URI)": Generic Syntax by T. 12 Berners-Lee, R. Fielding, and L. Masinter, August 1998. 19 RFC 1738: "Uniform Resource Locators (URL)" by T. Berners-Lee, L. Masinter, M. 69 # compatibility. (They are undocumented, but have a public-looking name.) 85 '+-.') 103 # presented, we may relax this by using latin-1 117 return tuple(x.decode(encoding, errors) if x else '' for x in args) 120 # Invokes decode if necessary to create str args 123 # - noop for str inputs [all …]
|
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/urllib/ |
H A D | parse.py | 5 RFC 3986 (STD66): "Uniform Resource Identifiers" by T. Berners-Lee, R. Fielding 11 RFC 2396: "Uniform Resource Identifiers (URI)": Generic Syntax by T. 12 Berners-Lee, R. Fielding, and L. Masinter, August 1998. 19 RFC 1738: "Uniform Resource Locators (URL)" by T. Berners-Lee, L. Masinter, M. 69 # compatibility. (They are undocumented, but have a public-looking name.) 85 '+-.') 103 # presented, we may relax this by using latin-1 117 return tuple(x.decode(encoding, errors) if x else '' for x in args) 120 # Invokes decode if necessary to create str args 123 # - noop for str inputs [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/urllib/ |
D | parse.py | 5 RFC 3986 (STD66): "Uniform Resource Identifiers" by T. Berners-Lee, R. Fielding 11 RFC 2396: "Uniform Resource Identifiers (URI)": Generic Syntax by T. 12 Berners-Lee, R. Fielding, and L. Masinter, August 1998. 19 RFC 1738: "Uniform Resource Locators (URL)" by T. Berners-Lee, L. Masinter, M. 69 # compatibility. (They are undocumented, but have a public-looking name.) 85 '+-.') 103 # presented, we may relax this by using latin-1 117 return tuple(x.decode(encoding, errors) if x else '' for x in args) 120 # Invokes decode if necessary to create str args 123 # - noop for str inputs [all …]
|
/aosp_15_r20/external/aws-sdk-java-v2/services/groundstation/src/main/resources/codegen-resources/ |
H A D | service-2.json | 4 "apiVersion":"2019-05-23", 7 "protocol":"rest-json", 12 "uid":"groundstation-2019-05-23" 249 "requestUri":"/minute-usage", 560 "pattern":"^[\\w-]+$" 640 "documentation":"<p>Name of an antenna demod decode output node used in a contact.</p>" 643 …"documentation":"<p>Details about an antenna demod decode <code>Config</code> used in a contact.</… 666 "documentation":"<p>Information about the decode <code>Config</code>.</p>" 677 …out how AWS Ground Station should configure an antenna for downlink demod decode during a contact.<… 740 …"documentation":"<p>Name string associated with AgentEndpoint. Used as a human-readable identifier… [all …]
|
/aosp_15_r20/external/python/cpython3/Doc/library/ |
D | urllib.request.rst | 1 :mod:`urllib.request` --- Extensible library for opening URLs 13 -------------- 16 opening URLs (mostly HTTP) in a complex world --- basic and digest 22 is recommended for a higher-level HTTP client interface. 24 .. include:: ../includes/wasm-notavail.rst 66 attribute --- the reason phrase returned by server --- instead of 91 .. audit-event:: urllib.Request fullurl,data,headers,method urllib.request.urlopen 158 the path component of a URL. This does not produce a complete URL. The return 164 Convert the path component *path* from a percent-encoded URL to the local syntax for a 166 :func:`~urllib.parse.unquote` to decode *path*. [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/site-packages/pip/_vendor/urllib3/util/ |
D | url.py | 16 # 'rfc3986' module: https://github.com/python-hyper/rfc3986 17 PERCENT_RE = re.compile(r"%[a-fA-F0-9]{2}") 18 SCHEME_RE = re.compile(r"^(?:[a-zA-Z][a-zA-Z0-9+-]*:|/)") 20 r"^(?:([a-zA-Z][a-zA-Z0-9+.-]*):)?" 28 IPV4_PAT = r"(?:[0-9]{1,3}\.){3}[0-9]{1,3}" 29 HEX_PAT = "[0-9A-Fa-f]{1,4}" 53 UNRESERVED_PAT = r"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789._\-~" 55 ZONE_ID_PAT = "(?:%25|%)(?:[" + UNRESERVED_PAT + "]|%[a-fA-F0-9]{2})+" 57 REG_NAME_PAT = r"(?:[^\[\]%:/?#]|%[a-fA-F0-9]{2})*" 63 BRACELESS_IPV6_ADDRZ_RE = re.compile("^" + IPV6_ADDRZ_PAT[2:-2] + "$") [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/site-packages/pip/_vendor/urllib3/util/ |
D | url.py | 16 # 'rfc3986' module: https://github.com/python-hyper/rfc3986 17 PERCENT_RE = re.compile(r"%[a-fA-F0-9]{2}") 18 SCHEME_RE = re.compile(r"^(?:[a-zA-Z][a-zA-Z0-9+-]*:|/)") 20 r"^(?:([a-zA-Z][a-zA-Z0-9+.-]*):)?" 28 IPV4_PAT = r"(?:[0-9]{1,3}\.){3}[0-9]{1,3}" 29 HEX_PAT = "[0-9A-Fa-f]{1,4}" 53 UNRESERVED_PAT = r"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789._\-~" 55 ZONE_ID_PAT = "(?:%25|%)(?:[" + UNRESERVED_PAT + "]|%[a-fA-F0-9]{2})+" 57 REG_NAME_PAT = r"(?:[^\[\]%:/?#]|%[a-fA-F0-9]{2})*" 63 BRACELESS_IPV6_ADDRZ_RE = re.compile("^" + IPV6_ADDRZ_PAT[2:-2] + "$") [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/site-packages/pip/_vendor/urllib3/util/ |
D | url.py | 16 # 'rfc3986' module: https://github.com/python-hyper/rfc3986 17 PERCENT_RE = re.compile(r"%[a-fA-F0-9]{2}") 18 SCHEME_RE = re.compile(r"^(?:[a-zA-Z][a-zA-Z0-9+-]*:|/)") 20 r"^(?:([a-zA-Z][a-zA-Z0-9+.-]*):)?" 28 IPV4_PAT = r"(?:[0-9]{1,3}\.){3}[0-9]{1,3}" 29 HEX_PAT = "[0-9A-Fa-f]{1,4}" 53 UNRESERVED_PAT = r"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789._\-~" 55 ZONE_ID_PAT = "(?:%25|%)(?:[" + UNRESERVED_PAT + "]|%[a-fA-F0-9]{2})+" 57 REG_NAME_PAT = r"(?:[^\[\]%:/?#]|%[a-fA-F0-9]{2})*" 63 BRACELESS_IPV6_ADDRZ_RE = re.compile("^" + IPV6_ADDRZ_PAT[2:-2] + "$") [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/site-packages/pip/_vendor/urllib3/util/ |
D | url.py | 16 # 'rfc3986' module: https://github.com/python-hyper/rfc3986 17 PERCENT_RE = re.compile(r"%[a-fA-F0-9]{2}") 18 SCHEME_RE = re.compile(r"^(?:[a-zA-Z][a-zA-Z0-9+-]*:|/)") 20 r"^(?:([a-zA-Z][a-zA-Z0-9+.-]*):)?" 28 IPV4_PAT = r"(?:[0-9]{1,3}\.){3}[0-9]{1,3}" 29 HEX_PAT = "[0-9A-Fa-f]{1,4}" 53 UNRESERVED_PAT = r"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789._\-~" 55 ZONE_ID_PAT = "(?:%25|%)(?:[" + UNRESERVED_PAT + "]|%[a-fA-F0-9]{2})+" 57 REG_NAME_PAT = r"(?:[^\[\]%:/?#]|%[a-fA-F0-9]{2})*" 63 BRACELESS_IPV6_ADDRZ_RE = re.compile("^" + IPV6_ADDRZ_PAT[2:-2] + "$") [all …]
|
/aosp_15_r20/frameworks/base/media/java/android/media/tv/ |
H A D | TvInputInfo.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 40 import android.net.Uri; 102 * TV input type: the TV input service represents a component port. 135 private Uri mIconUri; 167 * @param iconUri The {@link android.net.Uri} to load the icon image. See 176 HdmiDeviceInfo hdmiDeviceInfo, String parentId, String label, Uri iconUri) in createTvInputInfo() 222 * @param iconUri The {@link android.net.Uri} to load the icon image. See 231 TvInputHardwareInfo hardwareInfo, String label, Uri iconUri) in createTvInputInfo() 329 * Returns the component of the service that implements this TV input. 399 * Returns domain-specific extras associated with this TV input. [all …]
|
/aosp_15_r20/packages/apps/Dialer/java/com/android/dialer/phonelookup/database/ |
D | PhoneLookupHistoryContentProvider.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 29 import android.net.Uri; 45 * <p>Operations may run against the entire table using the URI: 51 * <p>Or against an individual row keyed by normalized number where the number is the last component 52 * in the URI path, for example: 92 @NonNull Uri uri, in query() 100 @UriType int uriType = uriType(uri); in query() 107 Uri.decode(uri.getQueryParameter(PhoneLookupHistory.NUMBER_QUERY_PARAM)))); in query() 120 throw new IllegalArgumentException("Unknown uri: " + uri); in query() 126 public String getType(@NonNull Uri uri) { in getType() argument [all …]
|
/aosp_15_r20/external/leakcanary2/leakcanary-android-core/src/main/java/leakcanary/internal/ |
H A D | LeakCanaryFileProvider.kt | 8 * http://www.apache.org/licenses/LICENSE-2.0 26 import android.net.Uri 58 * @param context A [Context] for the current component. in onCreate() 72 throw SecurityException("Provider must grant uri permissions") in onCreate() 79 * Use a content URI returned by 90 * @param uri A content URI returned by [.getUriForFile]. 94 * URI is returned. 105 uri: Uri, in query() 113 val file = mStrategy.getFileForUri(uri) in query() 137 * Returns the MIME type of a content URI returned by [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/site-packages/pip/_vendor/distlib/ |
D | util.py | 2 # Copyright (C) 2012-2021 The Python Software Foundation. 46 IDENTIFIER = re.compile(r'^([\w\.-]+)\s*') 47 VERSION_IDENTIFIER = re.compile(r'^([\w\.*+-]+)\s*') 53 STRING_CHUNK = re.compile(r'([\s\w\.{}()*+#:;,/?!~`@$%^&=|<>\[\]-]+)') 60 The dictionary will contain keys "op", "lhs" and "rhs" for non-terminals in 158 extras = mark_expr = versions = uri = None 181 # it's a URI 185 raise SyntaxError('invalid URI: %s' % remaining) 186 uri = m.groups()[0] 187 t = urlparse(uri) [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/site-packages/pip/_vendor/distlib/ |
D | util.py | 2 # Copyright (C) 2012-2021 The Python Software Foundation. 46 IDENTIFIER = re.compile(r'^([\w\.-]+)\s*') 47 VERSION_IDENTIFIER = re.compile(r'^([\w\.*+-]+)\s*') 53 STRING_CHUNK = re.compile(r'([\s\w\.{}()*+#:;,/?!~`@$%^&=|<>\[\]-]+)') 60 The dictionary will contain keys "op", "lhs" and "rhs" for non-terminals in 158 extras = mark_expr = versions = uri = None 181 # it's a URI 185 raise SyntaxError('invalid URI: %s' % remaining) 186 uri = m.groups()[0] 187 t = urlparse(uri) [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/site-packages/pip/_vendor/distlib/ |
D | util.py | 2 # Copyright (C) 2012-2021 The Python Software Foundation. 46 IDENTIFIER = re.compile(r'^([\w\.-]+)\s*') 47 VERSION_IDENTIFIER = re.compile(r'^([\w\.*+-]+)\s*') 53 STRING_CHUNK = re.compile(r'([\s\w\.{}()*+#:;,/?!~`@$%^&=|<>\[\]-]+)') 60 The dictionary will contain keys "op", "lhs" and "rhs" for non-terminals in 158 extras = mark_expr = versions = uri = None 181 # it's a URI 185 raise SyntaxError('invalid URI: %s' % remaining) 186 uri = m.groups()[0] 187 t = urlparse(uri) [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/site-packages/pip/_vendor/distlib/ |
D | util.py | 2 # Copyright (C) 2012-2021 The Python Software Foundation. 46 IDENTIFIER = re.compile(r'^([\w\.-]+)\s*') 47 VERSION_IDENTIFIER = re.compile(r'^([\w\.*+-]+)\s*') 53 STRING_CHUNK = re.compile(r'([\s\w\.{}()*+#:;,/?!~`@$%^&=|<>\[\]-]+)') 60 The dictionary will contain keys "op", "lhs" and "rhs" for non-terminals in 158 extras = mark_expr = versions = uri = None 181 # it's a URI 185 raise SyntaxError('invalid URI: %s' % remaining) 186 uri = m.groups()[0] 187 t = urlparse(uri) [all …]
|