Searched refs:scheme (Results 176 - 200 of 564) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/boringssl/src/crypto/pkcs8/
H A Dp5_pbev2.c117 X509_ALGOR *scheme = NULL, *kalg = NULL, *ret = NULL; local
133 /* Setup the AlgorithmIdentifier for the encryption scheme */
134 scheme = pbe2->encryption;
136 scheme->algorithm = (ASN1_OBJECT*) obj;
137 if(!(scheme->parameter = ASN1_TYPE_new())) goto merr;
153 if(param_to_asn1(&ctx, scheme->parameter) < 0) {
208 /* Note 'scheme' is freed as part of pbe2 */
/external/chromium_org/third_party/WebKit/Source/platform/weborigin/
H A DKURL.cpp363 return componentString(m_parsed.scheme);
453 // If KURL is given an invalid scheme, it returns failure without modifying
471 // finished building up its final scheme.
694 if (m_string.isNull() || !m_parsed.scheme.is_nonempty())
697 url::IsStandard(asURLChar8Subtle(m_string), m_parsed.scheme) :
698 url::IsStandard(m_string.characters16(), m_parsed.scheme);
820 m_innerURL = adoptPtr(new KURL(ParsedURLString, m_string.substring(innerParsed->scheme.begin, innerParsed->Length() - innerParsed->scheme.begin)));
826 bool internalProtocolIs(const url::Component& scheme, const CHAR* spec, const char* protocol) argument
828 const CHAR* begin = spec + scheme
843 checkIfProtocolIsInHTTPFamily(const url::Component& scheme, const CHAR* spec) argument
[all...]
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
H A Dhttp_header_util.py222 if parsed.scheme != 'wss' and parsed.scheme != 'ws':
239 if parsed.scheme == 'ws':
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/
H A D__init__.py183 scheme, netloc, path, params, query, fragment = parts[:6]
188 return urlparse.urlunparse((scheme, netloc, path, params,
281 scheme, netloc, path, params, query, fragment = urlparse.urlparse(value)
284 if scheme == 'http' and netloc[-3:] == ':80':
286 elif scheme == 'https' and netloc[-4:] == ':443':
288 if scheme not in ('http', 'https'):
289 raise ValueError("Unsupported URL %s (%s)." % (value, scheme))
292 self.normalized_url = urlparse.urlunparse((scheme, netloc, path, None, None, None))
343 scheme = base_url.scheme
[all...]
/external/chromium_org/chromecast/shell/browser/
H A Dcast_content_browser_client.cc76 const std::string& scheme = url.scheme(); local
78 if (scheme == kProtocolList[i])
/external/chromium_org/components/password_manager/core/browser/
H A Dpassword_store_unittest.cc149 www_google.scheme = PasswordForm::SCHEME_HTML;
157 accounts_google.scheme = PasswordForm::SCHEME_HTML;
164 bar_example.scheme = PasswordForm::SCHEME_HTML;
H A Dpassword_form_data.cc16 form->scheme = form_data.scheme;
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
H A Dhttp_header_util.py222 if parsed.scheme != 'wss' and parsed.scheme != 'ws':
239 if parsed.scheme == 'ws':
/external/chromium_org/third_party/WebKit/public/web/
H A DWebViewClient.h268 virtual void registerProtocolHandler(const WebString& scheme, argument
273 virtual void unregisterProtocolHandler(const WebString& scheme, const WebURL& url) { } argument
276 virtual WebCustomHandlersState isProtocolHandlerRegistered(const WebString& scheme, const WebURL& url) argument
/external/chromium_org/url/third_party/mozilla/
H A Durl_parse.h73 // Component scheme;
74 // if (!ExtractScheme(url, url_len, &scheme))
77 // if (IsStandardScheme(url, scheme)) // Not provided by this component
79 // else if (IsFileURL(url, scheme)) // Not provided by this component
108 // contain an entry for the four-character scheme, and it doesn't know about
140 // Scheme without the colon: "http://foo"/ would have a scheme of "http".
141 // The length will be -1 if no scheme is specified ("foo.com"), or 0 if there
142 // is a colon but no scheme (":foo"). Note that the scheme is not guaranteed
145 Component scheme; member in struct:url::Parsed
[all...]
/external/smack/src/com/kenai/jbosh/
H A DBOSHClientConfig.java131 String scheme = cmURI.getScheme();
132 if (!("http".equals(scheme) || "https".equals(scheme))) {
/external/apache-http/src/org/apache/http/conn/
H A DMultihomePlainSocketFactory.java44 import org.apache.http.conn.scheme.PlainSocketFactory;
45 import org.apache.http.conn.scheme.SocketFactory;
/external/chromium_org/chrome/browser/chromeos/file_manager/
H A Durl_util_unittest.cc47 EXPECT_EQ("chrome-extension", url.scheme());
95 EXPECT_EQ("chrome-extension", url.scheme());
/external/chromium_org/chrome/utility/importer/
H A Dfirefox_importer_unittest.cc56 // The following test verifies proper detection of authentication scheme in
59 // PasswordForm should have SCHEME_BASIC in scheme. The second entry has NULL
113 EXPECT_EQ(autofill::PasswordForm::SCHEME_BASIC, forms[0].scheme);
114 EXPECT_EQ(autofill::PasswordForm::SCHEME_HTML, forms[1].scheme);
/external/chromium_org/components/autofill/core/common/
H A Dpassword_form.cc14 : scheme(SCHEME_HTML),
65 return os << "scheme: " << form.scheme
/external/chromium_org/components/dom_distiller/core/
H A Durl_utils_android.cc26 std::string scheme(base::android::ConvertJavaStringToUTF8(env, j_scheme));
32 dom_distiller::url_utils::GetDistillerViewUrlFromUrl(scheme, url);
/external/chromium_org/components/policy/core/browser/
H A Durl_blacklist_manager.h82 std::string* scheme,
96 const std::string& scheme,
/external/chromium_org/components/test/data/web_database/
H A Dversion_47.sql42 CREATE TABLE web_intents ( service_url LONGVARCHAR, action VARCHAR, type VARCHAR, title LONGVARCHAR, disposition VARCHAR, scheme VARCHAR, UNIQUE (service_url, action, scheme, type));
43 CREATE TABLE web_intents_defaults ( action VARCHAR, type VARCHAR, url_pattern LONGVARCHAR, user_date INTEGER, suppression INTEGER, service_url LONGVARCHAR, scheme VARCHAR, UNIQUE (action, scheme, type, url_pattern));
H A Dversion_54.sql12 CREATE TABLE web_intents ( service_url LONGVARCHAR, action VARCHAR, type VARCHAR, title LONGVARCHAR, disposition VARCHAR, scheme VARCHAR, UNIQUE (service_url, action, scheme, type));
13 CREATE TABLE web_intents_defaults ( action VARCHAR, type VARCHAR, url_pattern LONGVARCHAR, user_date INTEGER, suppression INTEGER, service_url LONGVARCHAR, scheme VARCHAR, UNIQUE (action, scheme, type, url_pattern));
H A Dversion_55.sql8 CREATE TABLE web_intents ( service_url LONGVARCHAR, action VARCHAR, type VARCHAR, title LONGVARCHAR, disposition VARCHAR, scheme VARCHAR, UNIQUE (service_url, action, scheme, type));
9 CREATE TABLE web_intents_defaults ( action VARCHAR, type VARCHAR, url_pattern LONGVARCHAR, user_date INTEGER, suppression INTEGER, service_url LONGVARCHAR, scheme VARCHAR, UNIQUE (action, scheme, type, url_pattern));
H A Dversion_56.sql8 CREATE TABLE web_intents ( service_url LONGVARCHAR, action VARCHAR, type VARCHAR, title LONGVARCHAR, disposition VARCHAR, scheme VARCHAR, UNIQUE (service_url, action, scheme, type));
9 CREATE TABLE web_intents_defaults ( action VARCHAR, type VARCHAR, url_pattern LONGVARCHAR, user_date INTEGER, suppression INTEGER, service_url LONGVARCHAR, scheme VARCHAR, UNIQUE (action, scheme, type, url_pattern));
H A Dversion_57.sql8 CREATE TABLE web_intents ( service_url LONGVARCHAR, action VARCHAR, type VARCHAR, title LONGVARCHAR, disposition VARCHAR, scheme VARCHAR, UNIQUE (service_url, action, scheme, type));
9 CREATE TABLE web_intents_defaults ( action VARCHAR, type VARCHAR, url_pattern LONGVARCHAR, user_date INTEGER, suppression INTEGER, service_url LONGVARCHAR, scheme VARCHAR, UNIQUE (action, scheme, type, url_pattern));
/external/chromium_org/content/browser/shared_worker/
H A Dworker_browsertest.cc122 std::string scheme("http");
124 replacements.SetSchemeStr(scheme);
/external/chromium_org/ppapi/api/dev/
H A Dppb_url_util_dev.idl21 * the scheme doesn't include the trailing colon, the username and password
41 PP_URLComponent_Dev scheme;
/external/chromium_org/ppapi/shared_impl/
H A Dppb_url_util_shared.cc33 ConvertComponent(input.scheme, &output->scheme);

Completed in 1948 milliseconds

1234567891011>>