/external/clang/test/PCH/ |
chain-predecl.h | 3 @protocol Pro;
|
/external/clang/test/Index/ |
complete-protocols.m | 4 @protocol Protocol1 7 @protocol Protocol2; 11 @protocol Protocol0; 12 @protocol NewProtocol
|
/external/chromium/chrome/browser/ui/cocoa/ |
browser_command_executor.h | 9 // Defines a protocol for any object that can execute commands in the 11 @protocol BrowserCommandExecutor
|
/libcore/luni/src/main/java/java/net/ |
URLStreamHandlerFactory.java | 22 * protocol. It is used by the class {@code URL}. 28 * protocol}. 30 * @param protocol 31 * the protocol for which a handler is needed. 34 URLStreamHandler createURLStreamHandler(String protocol);
|
URL.java | 46 * <tr><td>{@link #getProtocol() Protocol}</td><td>{@code http}</td><td>scheme</td></tr> 62 * Transfer Protocol</a> 64 * Transfer Protocol</a> 70 * In general, attempts to create URLs with any other protocol will fail with a 73 * java.protocol.handler.pkgs} system property. 75 * <p>The {@link URI} class can be used to manipulate URLs of any protocol. 86 private String protocol; field in class:URL 136 * URL or has an unsupported protocol. 148 * protocol's default stream handler. 150 * be parsed as a URL or an invalid protocol has been found [all...] |
/external/webkit/Source/WebKit/mac/WebView/ |
WebDeviceOrientationProvider.h | 28 @protocol WebDeviceOrientationProvider <NSObject>
|
WebPDFRepresentation.h | 31 @protocol WebDocumentRepresentation;
|
WebDocumentPrivate.h | 35 @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/ |
HttpRequestHandlerResolver.java | 2 * $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;
|
/external/apache-http/src/org/apache/http/ |
ProtocolVersion.java | 39 * 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 version designator [all...] |
ConnectionReuseStrategy.java | 34 import org.apache.http.protocol.HttpContext; 52 * close the connection to correctly implement the HTTP protocol.
|
HttpRequestInterceptor.java | 36 import org.apache.http.protocol.HttpContext; 64 * @throws HttpException in case of a protocol or other problem
|
/libcore/luni/src/test/java/libcore/javax/net/ssl/ |
SSLContextTest.java | 50 for (String protocol : StandardNames.SSL_CONTEXT_PROTOCOLS) { 53 SSLContext newContext = SSLContext.getInstance(protocol); 68 for (String protocol : StandardNames.SSL_CONTEXT_PROTOCOLS) { 69 assertNotNull(SSLContext.getInstance(protocol)); 70 assertNotSame(SSLContext.getInstance(protocol), 71 SSLContext.getInstance(protocol)); 84 for (String protocol : StandardNames.SSL_CONTEXT_PROTOCOLS) { 86 SSLContext.getInstance(protocol, (String) null); 99 for (String protocol : StandardNames.SSL_CONTEXT_PROTOCOLS) { 100 String protocolName = SSLContext.getInstance(protocol).getProtocol() [all...] |
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/ |
DelegatedTaskTest.java | 31 HandshakeProtocol protocol = new ClientHandshakeImpl(new SSLEngineImpl( local 36 DelegatedTask task = new DelegatedTask(null, protocol, null); 38 assertTrue(protocol.delegatedTaskErr instanceof NullPointerException);
|
HandshakeProtocolTest.java | 36 HandshakeProtocol protocol = new ClientHandshakeImpl(new SSLEngineImpl( local 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.delegatedTaskErr = null 69 HandshakeProtocol protocol = new ServerHandshakeImpl(new SSLEngineImpl( local 80 HandshakeProtocol protocol = new ClientHandshakeImpl(new SSLEngineImpl( local 187 HandshakeProtocol protocol = new ClientHandshakeImpl(new SSLEngineImpl( local 201 HandshakeProtocol protocol = new ClientHandshakeImpl(new SSLEngineImpl( local [all...] |
/external/apache-http/src/org/apache/http/client/ |
UserTokenHandler.java | 34 import org.apache.http.protocol.HttpContext;
|
/external/qemu/android/protocol/ |
fb-updates-impl.h | 29 * protocol Protocol to use for the updates: 37 const char* protocol,
|
fb-updates-proxy.h | 28 * protocol - Defines protocol to use when sending FB updates to the UI. The 35 ProxyFramebuffer* proxyFb_create(int sock, const char* protocol);
|
/external/webkit/Source/WebCore/page/ |
OriginAccessEntry.h | 47 // If host is empty string and SubdomainSetting is AllowSubdomains, the entry will match all domains in the specified protocol. 48 OriginAccessEntry(const String& protocol, const String& host, SubdomainSetting); 51 const String& protocol() const { return m_protocol; } function in class:WebCore::OriginAccessEntry 64 return equalIgnoringCase(a.protocol(), b.protocol()) && equalIgnoringCase(a.host(), b.host()) && a.subdomainSettings() == b.subdomainSettings();
|
OriginAccessEntry.cpp | 38 OriginAccessEntry::OriginAccessEntry(const String& protocol, const String& host, SubdomainSetting subdomainSetting) 39 : m_protocol(protocol.lower()) 52 ASSERT(origin.protocol() == origin.protocol().lower()); 54 if (m_protocol != origin.protocol())
|
/libcore/luni/src/main/java/javax/net/ssl/ |
SSLContext.java | 30 * The public API for secure socket protocol implementations. It acts as factory 83 * Creates a new {@code SSLContext} instance for the specified protocol. 85 * @param protocol 86 * the requested protocol to create a context for. 89 * if no installed provider can provide the requested protocol 91 * if {@code protocol} is {@code null} (instead of 94 public static SSLContext getInstance(String protocol) throws NoSuchAlgorithmException { 95 if (protocol == null) { 96 throw new NullPointerException("protocol is null"); 98 Engine.SpiAndProvider sap = ENGINE.getInstance(protocol, null) 167 private final String protocol; field in class:SSLContext [all...] |
/external/webkit/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/ |
set-href-attribute-protocol.js | 1 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 = ":http" [all...] |
/external/chromium/chrome/browser/custom_handlers/ |
protocol_handler.cc | 10 ProtocolHandler::ProtocolHandler(const std::string& protocol, 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", Value::CreateStringValue(protocol_)) [all...] |
protocol_handler.h | 14 // 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/ |
WebQuotaManager.h | 29 @protocol WebQuotaManager 30 @discussion This protocol is used to view and manipulate a per-origin storage quota. 32 @protocol WebQuotaManager
|