HomeSort by relevance Sort by last modified time
    Searched refs:scheme (Results 51 - 75 of 529) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium/net/url_request/
url_request_about_job.cc 23 const std::string& scheme) {
  /external/nist-sip/java/gov/nist/javax/sip/address/
TelURLImpl.java 52 this.scheme = "tel";
81 /** Returns the value of the "scheme" of this URI, for example "sip", "sips"
84 * @return the scheme paramter of the URI
87 return this.scheme;
100 /** This method determines if this is a URI with a scheme of "sip" or "sips".
102 * @return true if the scheme is "sip" or "sips", false otherwise.
158 return this.scheme + ":" + telephoneNumber.encode();
166 buffer.append(this.scheme).append(':');
GenericURI.java 58 * The URI Scheme.
60 protected String scheme; field in class:GenericURI
75 scheme = uriString.substring(0, i);
100 /** Returns the value of the "scheme" of
103 * @return the scheme paramter of the URI
106 return scheme;
109 /** This method determines if this is a URI with a scheme of
112 * @return true if the scheme is "sip" or "sips", false otherwise.
  /external/webkit/Source/JavaScriptCore/wtf/url/api/
ParsedURL.h 42 String scheme() const;
  /external/webkit/Source/JavaScriptCore/wtf/url/src/
URLSegments.h 43 Scheme,
59 // contain an entry for the four-character scheme, and it doesn't know about
80 // Scheme: 0 0
93 URLComponent scheme; member in class:WTF::URLSegments
URLSegments.cpp 51 if (type == Scheme)
52 return scheme.begin();
55 if (scheme.isValid())
56 current = scheme.end() + 1; // Advance over the ':' at the end of the scheme.
URLParser.h 94 static bool extractScheme(const CHAR* spec, int specLength, URLComponent& scheme)
106 scheme = URLComponent::fromRange(begin, i);
110 return false; // No colon found: no scheme
114 // scheme) for standard URLs.
117 // |afterScheme| is the character immediately following the scheme (after
146 // The main parsing function for standard URLs. Standard URLs have a scheme,
157 if (extractScheme(spec, specLength, parsed.scheme))
158 afterScheme = parsed.scheme.end() + 1; // Skip past the colon.
160 // Say there's no scheme when there is a colon. We could also say
161 // that everything is the scheme. Both would produce an invali
    [all...]
  /external/webkit/Source/WebKit/mac/Misc/
WebUserContentURLPattern.mm 69 - (NSString *)scheme
71 return _private->pattern.scheme();
  /external/chromium/net/http/
http_auth_cache.cc 71 HttpAuth::Scheme scheme) {
77 it->scheme() == scheme)
113 HttpAuth::Scheme scheme,
122 HttpAuthCache::Entry* entry = Lookup(origin, realm, scheme);
134 entry->scheme_ = scheme;
138 DCHECK_EQ(scheme, entry->scheme_);
201 HttpAuth::Scheme scheme
    [all...]
http_auth_handler_factory.cc 74 const std::string& scheme) {
76 supported_schemes.begin(), supported_schemes.end(), scheme);
91 const std::string& scheme,
93 HttpAuthHandlerFactory* factory = GetSchemeFactory(scheme);
99 const std::string& scheme,
101 std::string lower_scheme = StringToLowerASCII(scheme);
113 const std::string& scheme) const {
114 std::string lower_scheme = StringToLowerASCII(scheme);
117 return NULL; // |scheme| is not registered.
175 std::string scheme = challenge->scheme() local
    [all...]
http_auth_handler_factory.h 58 // If |*challenge| specifies an unsupported authentication scheme, |*handler|
68 // scheme, and indicates the number of handlers generated for a particular
128 // to other factories based on the auth scheme.
135 // Sets an URL security manager into the factory associated with |scheme|.
136 void SetURLSecurityManager(const std::string& scheme,
140 // authentication scheme such as Basic, Digest, or Negotiate.
145 // for |scheme|. If a factory object used to exist for |scheme|, it will be
147 void RegisterSchemeFactory(const std::string& scheme,
150 // Retrieve the factory for the specified |scheme|. If no factory exist
    [all...]
  /external/chromium/net/socket_stream/
socket_stream_job.cc 16 const std::string& scheme, ProtocolFactory* factory) {
18 scheme, factory);
28 if (url.scheme() == "ws" &&
  /libcore/luni/src/main/java/java/net/
Authenticator.java 41 private String scheme; field in class:Authenticator
97 * Returns the scheme of the connection that requests authorization, for
100 * @return scheme of the connection.
103 return this.scheme;
121 * scheme of the connection that requests authentication.
135 thisAuthenticator.scheme = rScheme;
171 * scheme of the connection that requests authentication.
186 thisAuthenticator.scheme = rScheme;
221 * scheme of the connection that requests authentication.
241 thisAuthenticator.scheme = rScheme
    [all...]
  /external/webkit/Source/WebCore/page/
Navigator.cpp 251 static bool verifyProtocolHandlerScheme(const String& scheme, ExceptionCode& ec)
254 if (equalIgnoringCase(scheme, "http") || equalIgnoringCase(scheme, "https") || equalIgnoringCase(scheme, "file")) {
261 void Navigator::registerProtocolHandler(const String& scheme, const String& url, const String& title, ExceptionCode& ec)
263 if (!verifyProtocolHandlerScheme(scheme, ec))
282 page->chrome()->registerProtocolHandler(scheme, baseURL, url, m_frame->displayStringModifiedByEncoding(title));
  /external/chromium/chrome/browser/net/
url_fixer_upper.cc 58 parts->scheme =
59 UTF8ComponentToUTF16Component(text_utf8, parts_utf8.scheme);
339 // Try to extract a valid scheme from the beginning of |text|.
340 // If successful, set |scheme_component| to the text range where the scheme
351 // Make sure the scheme contains only valid characters, and convert
371 // will add an HTTP scheme later and make the URL parser happy.
401 std::string scheme;
402 if (!GetValidScheme(text, &parts->scheme, &scheme)) {
403 // Couldn't determine the scheme, so just pick one
    [all...]
blob_url_request_job_factory.cc 19 const std::string& scheme) {
file_system_url_request_job_factory.cc 17 const std::string& scheme) {
url_request_mock_link_doctor_job.cc 27 const std::string& scheme) {
  /frameworks/base/core/java/android/net/
Uri.java 102 <scheme>://<authority><path>?<query>
134 * Absolute URIs are hierarchical if the scheme-specific part starts with
141 * scheme-specific part of an opaque URI cannot start with a '/'.
149 * explicit scheme.
157 * explicit scheme.
166 * Gets the scheme of this URI. Example: "http"
168 * @return the scheme or null if this is a relative URI
173 * Gets the scheme-specific part of this URI, i.e. everything between the
174 * scheme separator ':' and the fragment separator '#'. If this is a
179 * @return the decoded scheme-specific-par
361 String scheme = getScheme(); local
525 private volatile String scheme = NOT_CACHED; field in class:Uri.StringUri
826 private final String scheme; field in class:Uri.OpaqueUri
1132 private final String scheme; \/\/ can be null field in class:Uri.HierarchicalUri
1313 private String scheme; field in class:Uri.Builder
1330 public Builder scheme(String scheme) { method in class:Uri.Builder
1742 String scheme = getScheme(); local
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/
DOMTest.java 132 public String getResourceURI(String href, String scheme, String contentType) throws
134 if (scheme == null) {
135 throw new NullPointerException("scheme");
137 if ("file".equals(scheme)) {
140 if ("http".equals(scheme)) {
153 throw new DOMTestLoadException(new Exception("Unrecognized URI scheme " +
154 scheme));
157 public String createTempURI(String scheme) throws DOMTestLoadException {
158 if (scheme == null) {
159 throw new NullPointerException("scheme");
    [all...]
  /external/chromium/googleurl/src/
url_parse.cc 247 Component* scheme) {
258 *scheme = MakeRange(begin, i);
262 return false; // No colon found: no scheme
265 // Fills in all members of the Parsed structure except for the scheme.
268 // |after_scheme| is the character immediately following the scheme (after the
313 // The main parsing function for standard URLs. Standard URLs have a scheme,
324 if (DoExtractScheme(spec, spec_len, &parsed->scheme)) {
325 after_scheme = parsed->scheme.end() + 1; // Skip past the colon.
327 // Say there's no scheme when there is no colon. We could also say that
328 // everything is the scheme. Both would produce an invalid URL, but this wa
    [all...]
url_parse_file.cc 72 // the scheme given in |after_slashes|. This will initialize the host, path,
158 // Find the scheme.
164 // "/c:/foo". This is when there is no scheme, so we can allow pages to do
171 // Windows path, don't try to extract the scheme (for example, "c:\foo").
172 parsed->scheme.reset();
175 // Windows UNC path: don't try to extract the scheme, but keep the slashes.
176 parsed->scheme.reset();
181 if (ExtractScheme(&spec[begin], spec_len - begin, &parsed->scheme)) {
183 parsed->scheme.begin += begin;
184 after_scheme = parsed->scheme.end() + 1
    [all...]
  /external/apache-http/src/org/apache/http/conn/
ClientConnectionOperator.java 38 import org.apache.http.conn.scheme.SocketFactory;
104 * to the host and port, but the scheme of the target
  /external/apache-http/src/org/apache/http/conn/scheme/
SocketFactory.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/conn/scheme/SocketFactory.java $
32 package org.apache.http.conn.scheme;
  /external/chromium/chrome/browser/chromeos/
proxy_config_service_impl.h 73 // single-proxy, or proxy-per-scheme.
101 // Proxy setting for mode = single-proxy or proxy-per-scheme.
112 // If mode is MODE_PROXY_PER_SCHEME, |scheme| is one of "http", "https",
114 bool CanBeWrittenByUser(bool user_is_owner, const std::string& scheme);
116 // Map |scheme| (one of "http", "https", "ftp" or "socks") to the correct
117 // ManualProxy. Returns NULL if scheme is invalid.
118 ManualProxy* MapSchemeToProxy(const std::string& scheme);
149 // Encodes the proxy server as "<url-scheme>=<proxy-scheme>://<proxy>"
150 static void EncodeAndAppendProxyServer(const std::string& scheme,
    [all...]

Completed in 411 milliseconds

1 23 4 5 6 7 8 91011>>