HomeSort by relevance Sort by last modified time
    Searched refs:scheme (Results 201 - 225 of 271) sorted by null

1 2 3 4 5 6 7 891011

  /external/webkit/WebKit/win/Interfaces/
IWebViewPrivate.idl 228 HRESULT setDomainRelaxationForbiddenForURLScheme([in] BOOL forbidden, [in] BSTR scheme);
  /frameworks/base/core/java/android/app/
SuggestionsAdapter.java 549 String scheme = uri.getScheme(); local
550 if (ContentResolver.SCHEME_ANDROID_RESOURCE.equals(scheme)) {
SearchDialog.java 1156 String scheme = data.getScheme(); local
    [all...]
  /external/libxml2/
nanohttp.c 304 if ((uri->scheme == NULL) || (uri->server == NULL)) {
309 ctxt->protocol = xmlMemStrdup(uri->scheme);
354 if ((uri == NULL) || (uri->scheme == NULL) ||
355 (strcmp(uri->scheme, "http")) || (uri->server == NULL)) {
    [all...]
  /external/webkit/WebCore/bindings/v8/
V8Proxy.h 121 // scheme is non-empty, it contains the URL scheme the extension should be
126 String scheme; member in struct:WebCore::V8ExtensionInfo
332 // loaded into. If a scheme is provided, only pages whose URL has the given
333 // scheme will match. If extensionGroup is provided, the extension will
  /external/webkit/WebCore/plugins/
npfunctions.h 71 typedef NPError (*NPN_GetAuthenticationInfoProcPtr)(NPP npp, const char* protocol, const char* host, int32 port, const char* scheme, const char *realm, char** username, uint32* ulen, char** password, uint32* plen);
  /external/webkit/WebKitTools/DumpRenderTree/mac/
LayoutTestControllerMac.mm 271 void LayoutTestController::setDomainRelaxationForbiddenForURLScheme(bool forbidden, JSStringRef scheme)
273 RetainPtr<CFStringRef> schemeCFString(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, scheme));
  /frameworks/base/telephony/java/android/telephony/
PhoneNumberUtils.java 131 String scheme = uri.getScheme(); local
133 if (scheme.equals("tel") || scheme.equals("sip")) {
139 if (scheme.equals("voicemail")) {
    [all...]
  /packages/apps/QuickSearchBox/benchmarks/src/com/android/quicksearchbox/benchmarks/
SourceLatency.java 175 .scheme(ContentResolver.SCHEME_CONTENT)
  /external/webkit/WebCore/platform/graphics/win/
QTMovieWin.cpp 694 CFStringRef scheme = CFURLCopyScheme(url); local
695 bool isRTSP = CFStringHasPrefix(scheme, CFSTR("rtsp:"));
696 CFRelease(scheme);
    [all...]
  /external/webkit/WebKit/mac/WebCoreSupport/
WebFrameLoaderClient.mm 320 NSString *scheme = [originalURL scheme];
322 if (scheme && host && [scheme length] && [host length]) {
328 hostOnlyURLString = [[NSString alloc] initWithFormat:@"%@://%@:%d", scheme, host, [port intValue]];
330 hostOnlyURLString = [[NSString alloc] initWithFormat:@"%@://%@", scheme, host];
    [all...]
  /frameworks/base/core/java/android/webkit/
LoadListener.java 600 * the data: scheme, about: scheme and http/https schemes.
898 int scheme = mAuthHeader.getScheme(); local
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
HttpURLConnectionImpl.java 1172 String scheme = challenge.substring(0, idx); local
    [all...]
  /packages/apps/Email/src/com/android/email/
Controller.java 834 String scheme = info.mScheme; local
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
MenuHelper.java 148 String scheme = uri.getScheme();
151 if (scheme.equals("content") && authority.equals("media")) {
155 if (scheme.equals("file")) {
    [all...]
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadProvider.java 588 String scheme = uri.getScheme(); local
589 if (scheme == null || !scheme.equals("file")) {
    [all...]
  /external/webkit/WebCore/bridge/
npapi.h 886 NPError NPN_GetAuthenticationInfo(NPP instance, const char* protocol, const char* host, int32 port, const char* scheme, const char *realm, char** username, uint32* ulen, char** password, uint32* plen);
  /external/webkit/WebKit/mac/History/
WebHistory.mm 826 item->setLastVisitWasHTTPNonGet([method caseInsensitiveCompare:@"GET"] && (![[url scheme] caseInsensitiveCompare:@"http"] || ![[url scheme] caseInsensitiveCompare:@"https"]));
  /external/webkit/WebKit/mac/WebView/
WebViewPrivate.h 299 @param scheme The URL scheme to represent with an object of the given class.
512 + (void)_setDomainRelaxationForbidden:(BOOL)forbidden forURLScheme:(NSString *)scheme;
  /system/vold/
Volume.cpp 601 dinfo.scheme = PART_SCHEME_MBR;
  /external/bluetooth/hcidump/parser/
lmp.c 561 printf("access scheme 0x%2.2x\n", access >> 4);
593 printf("access scheme 0x%2.2x\n", access >> 4);
926 uint8_t scheme = LMP_U8(frm); local
930 printf("page scheme %d\n", scheme);
933 printf("page scheme settings %d\n", settings);
  /external/libxml2/include/libxml/
tree.h 69 * A buffer allocation scheme can be defined to either match exactly the
77 XML_BUFFER_ALLOC_IO /* special allocation scheme used for I/O */
654 xmlSetBufferAllocationScheme(xmlBufferAllocationScheme scheme);
699 xmlBufferAllocationScheme scheme);
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPRequest.java 284 String scheme = ((SipUri) requestLine.getUri()).getScheme(); local
285 if ("sips".equalsIgnoreCase(scheme)) {
288 throw new ParseException("Scheme for contact should be sips:" + sipUri, 0);
370 * scheme. SIP elements MAY translate non-SIP URIs using any mechanism at their disposal,
371 * resulting in SIP URI, SIPS URI, or some other scheme.
    [all...]
  /external/webkit/WebKit/chromium/src/
FrameLoaderClientImpl.cpp     [all...]
  /external/webkit/WebKit/win/
WebView.h 300 /* [in] */ BSTR scheme);
781 virtual HRESULT STDMETHODCALLTYPE setDomainRelaxationForbiddenForURLScheme(BOOL forbidden, BSTR scheme);
    [all...]

Completed in 900 milliseconds

1 2 3 4 5 6 7 891011