/external/clang/test/SemaObjC/ |
no-protocol-option-tests.m | 1 // RUN: %clang_cc1 -fsyntax-only -Wno-protocol -verify %s 4 @protocol P 10 @implementation I @end // no warning with -Wno-protocol 15 @implementation C (Category) @end // no warning with -Wno-protocol 27 @implementation K @end // no warning with -Wno-protocol 32 @implementation L @end // no warning with -Wno-protocol
|
comptypes-8.m | 3 @protocol MyProtocol
|
undef-protocol-methods-1.m | 3 @protocol P1 8 @protocol P2 13 @protocol P3<P2> 19 @protocol PROTO<P1, P3> 25 @interface INTF <PROTO> // expected-note 3 {{required for direct or indirect protocol 'PROTO'}} \ 26 // expected-note 2 {{required for direct or indirect protocol 'P1'}} \ 27 // expected-note 2 {{required for direct or indirect protocol 'P3'}} \ 28 // expected-note 2 {{required for direct or indirect protocol 'P2'}} 32 // expected-warning 9 {{method in protocol not implemented [-Wprotocol}}
|
compare-qualified-id.m | 7 @protocol NSObject - (BOOL)isEqual:(id)object; @end 8 @protocol NSCopying - (id)copyWithZone:(NSZone *)zone; @end // expected-note {{method declared here}} 9 @protocol NSMutableCopying - (id)mutableCopyWithZone:(NSZone *)zone; @end 10 @protocol NSCoding - (void)encodeWithCoder:(NSCoder *)aCoder; @end 13 @protocol NSFastEnumeration - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len; @end 18 @interface XCPropertyExpansionContext : NSObject <NSCopying> { // expected-note {{required for direct or indirect protocol 'NSCopying'}} 22 @protocol XCPropertyValues <NSObject, NSCopying> 27 // expected-warning {{method in protocol not implemented [-Wprotocol]}}
|
props-on-prots.m | 5 @protocol NSObject 9 @protocol NSCoding 23 @protocol XCElementP < NSObject > 27 @protocol XCElementDisplayDelegateP; 28 @protocol XCElementTabMarkerP; 32 @protocol XCElementTabberP < XCElementP > 38 @protocol XCElementTabMarkerP < NSObject > 43 @protocol XCElementJustifierP < XCElementP >
|
method-undef-category-warn-1.m | 6 @protocol P 11 @interface MyClass1(CAT) <P> // expected-note {{required for direct or indirect protocol 'P'}} 16 // expected-warning {{method in protocol not implemented [-Wprotocol]}} 20 @interface MyClass1(DOG) <P> // expected-note {{required for direct or indirect protocol 'P'}} 25 // expected-warning {{method in protocol not implemented [-Wprotocol]}}
|
protocol-typecheck.m | 4 @protocol XCElementP @end 5 @protocol XCElementSpacerP <XCElementP> @end 7 @protocol PWhatever @end 22 // protocol-typecheck.m:21: warning: class 'NSObject <PWhatever, XCElementP>' does not implement the 'XCElementSpacerP' protocol
|
unimplemented-protocol-prop.m | 3 @protocol PROTOCOL0 8 @protocol PROTOCOL<PROTOCOL0> 15 @interface I <PROTOCOL> 26 @protocol PROTOCOL1
|
/external/clang/test/ARCMT/Inputs/ |
test.h.result | 1 @protocol NSObject
|
/external/clang/test/ARCMT/with space/ |
test.h.result | 1 @protocol NSObject
|
/sdk/testapps/basicProjectWithAidl/src/com/android/tests/basicprojectwithaidl/ |
Rect.aidl | 4 // the parcelable protocol.
|
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/ |
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/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/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...] |
/external/clang/test/CodeGenObjC/ |
2007-10-18-ProDescriptor.m | 2 @protocol O 9 @protocol AB
|
/external/clang/test/PCH/ |
objc_exprs.h | 2 @protocol foo; 8 typedef typeof(@protocol(foo)) objc_protocol;
|
/external/clang/test/Parser/ |
enhanced-proto-1.m | 3 @protocol MyProto1 13 @protocol MyProto2 <MyProto1>
|
objc-alias-printing.m | 3 @protocol P1 @end 4 @protocol P2 @end
|
/external/clang/test/SemaObjCXX/ |
property-type-mismatch.mm | 4 @protocol P1; 13 @protocol P2 <P1>
|
/frameworks/base/media/java/android/mtp/ |
package.html | 4 PTP (Picture Transfer Protocol) subset of the MTP (Media Transfer Protocol) specification. Your
|
/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/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_registry.h | 33 // Called when the user accepts the registration of a given protocol handler. 36 // Called when the user denies the registration of a given protocol handler. 39 // Loads a user's registered protocol handlers. 42 // Saves a user's registered protocol handlers. 45 // Returns the handler for this protocol. 52 // Returns true if an identical protocol handler has already been registered. 56 // Redirects any URLRequests for which there is a matching protocol handler. 60 // Registers the preferences that we store registered protocol handlers in. 64 // protocol handler, returns NULL otherwise. 73 // Returns a JSON dictionary of protocols to protocol handlers. The caller i [all...] |
/device/sample/etc/ |
apns-conf_verizon.xml | 12 protocol="IPV4V6" 20 protocol="IPV4V6" 28 protocol="IPV4V6" 36 protocol="IPV4V6" 45 protocol="IPV4V6" 55 protocol="IPV4V6" 64 protocol="IPV4V6" 73 protocol="IPV4V6" 83 protocol="IPV4V6" 92 protocol="IPV4V6 [all...] |
/external/chromium/net/http/ |
http_alternate_protocols_unittest.cc | 6 // of which HTTP HostPortPairs have an alternate protocol that can be used 26 EXPECT_EQ(HttpAlternateProtocols::NPN_SPDY_1, alternate.protocol); 36 EXPECT_EQ(HttpAlternateProtocols::BROKEN, alternate.protocol); 43 EXPECT_EQ(HttpAlternateProtocols::BROKEN, alternate.protocol) 52 default_protocol.protocol = HttpAlternateProtocols::NPN_SPDY_2; 57 // Verify the forced protocol. 64 EXPECT_EQ(default_protocol.protocol, alternate.protocol); 66 // Verify the real protocol overrides the forced protocol [all...] |