Searched refs:protocol (Results 1 - 25 of 543) sorted by relevance

1234567891011>>

/external/clang/test/Index/
H A Dcomplete-protocols.m4 @protocol Protocol1
7 @protocol Protocol2;
11 @protocol Protocol0;
12 @protocol NewProtocol
/external/clang/test/PCH/
H A Dchain-predecl.h3 @protocol Pro;
/external/chromium/chrome/browser/ui/cocoa/
H A Dbrowser_command_executor.h9 // Defines a protocol for any object that can execute commands in the
11 @protocol BrowserCommandExecutor
/external/webkit/Source/WebKit/mac/WebView/
H A DWebDeviceOrientationProvider.h28 @protocol WebDeviceOrientationProvider <NSObject>
H A DWebPDFRepresentation.h31 @protocol WebDocumentRepresentation;
H A DWebDocumentPrivate.h35 @protocol WebDocumentImage <NSObject>
40 @protocol WebDocumentDOM <NSObject>
45 @protocol WebDocumentSelection <WebDocumentText>
68 @protocol WebDocumentPDF <WebDocumentText>
72 @protocol WebDocumentIncrementalSearching
/external/apache-http/src/org/apache/http/protocol/
H A DHttpRequestHandlerResolver.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/HttpRequestHandlerResolver.java $
32 package org.apache.http.protocol;
H A DExecutionContext.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/ExecutionContext.java $
32 package org.apache.http.protocol;
35 * {@link HttpContext Context} attribute names for protocol execution.
H A DHttpContext.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/HttpContext.java $
32 package org.apache.http.protocol;
H A DHttpProcessor.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/HttpProcessor.java $
32 package org.apache.http.protocol;
/external/apache-http/src/org/apache/http/
H A DProtocolVersion.java39 * Represents a protocol version, as specified in RFC 2616.
42 * for the protocol name. It defines a protocol version "SIP/2.0".
46 * This class defines a protocol version as a combination of
47 * protocol name, major version number, and minor version number.
61 /** Name of the protocol. */
62 protected final String protocol; field in class:ProtocolVersion
64 /** Major version number of the protocol */
67 /** Minor version number of the protocol */
72 * Create a protocol versio
78 ProtocolVersion(String protocol, int major, int minor) argument
[all...]
H A DConnectionReuseStrategy.java34 import org.apache.http.protocol.HttpContext;
52 * close the connection to correctly implement the HTTP protocol.
H A DHttpRequestInterceptor.java36 import org.apache.http.protocol.HttpContext;
64 * @throws HttpException in case of a protocol or other problem
H A DHttpResponseInterceptor.java36 import org.apache.http.protocol.HttpContext;
63 * @throws HttpException in case of a protocol or other problem
/external/webkit/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/
H A Dset-href-attribute-protocol.js1 description('Test setting the protocol attribute of the URL in HTMLAnchorElement .');
7 a.protocol = "http-foo";
11 debug("Set a protocol that contains ':'");
14 a.protocol = "http:foo";
21 debug("Set a protocol that contains invalid characters");
24 a.protocol = "http^foo";
32 debug("Set a protocol to a URL with invalid host name");
34 a.protocol = "foo";
39 debug("Set a protocol that starts with ':'");
41 a.protocol
[all...]
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
H A DDelegatedTaskTest.java31 HandshakeProtocol protocol = new ClientHandshakeImpl(new SSLEngineImpl(
36 DelegatedTask task = new DelegatedTask(null, protocol, null);
38 assertTrue(protocol.delegatedTaskErr instanceof NullPointerException);
H A DHandshakeProtocolTest.java36 HandshakeProtocol protocol = new ClientHandshakeImpl(new SSLEngineImpl(
41 assertEquals(protocol.getStatus(),
44 protocol.status = HandshakeProtocol.NEED_UNWRAP;
45 assertEquals(protocol.getStatus(),
48 protocol.status = HandshakeProtocol.FINISHED;
49 assertEquals(protocol.getStatus(),
51 assertEquals(protocol.status, HandshakeProtocol.NOT_HANDSHAKING);
53 protocol.delegatedTaskErr = new Exception();
54 assertEquals(protocol.getStatus(),
56 protocol
[all...]
/external/apache-http/src/org/apache/http/client/
H A DUserTokenHandler.java34 import org.apache.http.protocol.HttpContext;
H A DHttpRequestRetryHandler.java36 import org.apache.http.protocol.HttpContext;
/external/qemu/android/protocol/
H A Dfb-updates-impl.h29 * protocol Protocol to use for the updates:
37 const char* protocol,
H A Dfb-updates-proxy.h28 * protocol - Defines protocol to use when sending FB updates to the UI. The
35 ProxyFramebuffer* proxyFb_create(int sock, const char* protocol);
/external/chromium/chrome/browser/custom_handlers/
H A Dprotocol_handler.cc10 ProtocolHandler::ProtocolHandler(const std::string& protocol, argument
13 : protocol_(protocol),
19 const std::string& protocol,
22 std::string lower_protocol(protocol);
23 lower_protocol = StringToLowerASCII(protocol);
29 std::string protocol, url; local
31 value->GetString("protocol", &protocol);
34 return ProtocolHandler::CreateProtocolHandler(protocol, GURL(url), title);
46 d->Set("protocol", Valu
18 CreateProtocolHandler( const std::string& protocol, const GURL& url, const string16& title) argument
[all...]
H A Dprotocol_handler.h14 // A single tuple of (protocol, url, title) that indicates how URLs of the
15 // given protocol should be rewritten to be handled.
19 static ProtocolHandler* CreateProtocolHandler(const std::string& protocol,
27 // Encodes this protocol handler as a Value. The caller is responsible for
31 std::string protocol() const { return protocol_; } function in class:ProtocolHandler
38 ProtocolHandler(const std::string& protocol,
/external/webkit/Source/WebKit/mac/Misc/
H A DWebQuotaManager.h29 @protocol WebQuotaManager
30 @discussion This protocol is used to view and manipulate a per-origin storage quota.
32 @protocol WebQuotaManager
/external/webkit/Source/WebCore/page/
H A DOriginAccessEntry.cpp38 OriginAccessEntry::OriginAccessEntry(const String& protocol, const String& host, SubdomainSetting subdomainSetting) argument
39 : m_protocol(protocol.lower())
52 ASSERT(origin.protocol() == origin.protocol().lower());
54 if (m_protocol != origin.protocol())

Completed in 592 milliseconds

1234567891011>>