OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:protocol
(Results
76 - 100
of
3661
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/SemaObjC/
property-6.m
10
@
protocol
NSObject
15
@
protocol
NSCopying
19
@
protocol
NSMutableCopying
23
@
protocol
NSCoding
32
@
protocol
NSFastEnumeration
protocol-attribute.m
4
@
protocol
FwProto; // expected-note{{marked unavailable}}
9
__attribute ((deprecated)) @
protocol
MyProto1
12
@
protocol
Proto2 <MyProto1> // expected-warning {{'MyProto1' is deprecated}}
36
@
protocol
FwProto @end // expected-note{{marked unavailable}}
41
__attribute ((unavailable)) __attribute ((deprecated)) @
protocol
XProto; // expected-note{{marked unavailable}}
super-class-protocol-conformance.m
6
@
protocol
TopProtocol
10
@
protocol
SubProtocol <TopProtocol>
41
@
protocol
NewProtocol
50
@
protocol
SuperProtocol
56
@
protocol
ProtocolWithProperty <SuperProtocol>
method-def-1.m
24
@
protocol
proto;
25
@
protocol
NSObject;
27
//@
protocol
GrowlPluginHandler <NSObject> @end
property-5.m
3
@
protocol
P1 @end
4
@
protocol
P2 @end
5
@
protocol
P3 @end
protocol-lookup.m
2
@
protocol
NSObject
12
@
protocol
Foo <NSObject>
15
@
protocol
Bar <Foo>
comptypes-9.m
11
@
protocol
NSObject
15
@
protocol
NSCopying
19
@
protocol
NSMutableCopying
23
@
protocol
NSCoding
34
@
protocol
NSFastEnumeration
70
@
protocol
PBXBuildLogContainerItems <NSObject>
access-property-getter.m
3
@
protocol
NSObject
7
@
protocol
XCOutputStreams <NSObject>
/external/kernel-headers/original/linux/
ppp_defs.h
66
*
Protocol
field values.
68
#define PPP_IP 0x21 /* Internet
Protocol
*/
69
#define PPP_AT 0x29 /* AppleTalk
Protocol
*/
70
#define PPP_IPX 0x2b /* IPX
protocol
*/
73
#define PPP_MP 0x3d /* Multilink
protocol
*/
74
#define PPP_IPV6 0x57 /* Internet
Protocol
Version 6 */
77
#define PPP_MPLS_UC 0x0281 /* Multi
Protocol
Label Switching - Unicast */
78
#define PPP_MPLS_MC 0x0283 /* Multi
Protocol
Label Switching - Multicast */
79
#define PPP_IPCP 0x8021 /* IP Control
Protocol
*/
80
#define PPP_ATCP 0x8029 /* AppleTalk Control
Protocol
*/
[
all
...]
/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
...]
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
ppp_defs.h
66
*
Protocol
field values.
68
#define PPP_IP 0x21 /* Internet
Protocol
*/
69
#define PPP_AT 0x29 /* AppleTalk
Protocol
*/
70
#define PPP_IPX 0x2b /* IPX
protocol
*/
73
#define PPP_MP 0x3d /* Multilink
protocol
*/
74
#define PPP_IPV6 0x57 /* Internet
Protocol
Version 6 */
77
#define PPP_MPLS_UC 0x0281 /* Multi
Protocol
Label Switching - Unicast */
78
#define PPP_MPLS_MC 0x0283 /* Multi
Protocol
Label Switching - Multicast */
79
#define PPP_IPCP 0x8021 /* IP Control
Protocol
*/
80
#define PPP_ATCP 0x8029 /* AppleTalk Control
Protocol
*/
[
all
...]
/external/clang/test/Analysis/
method-arg-decay.m
7
@
protocol
NSObject - (BOOL)isEqual:(id)object;
8
@end @
protocol
NSCopying - (id)copyWithZone:(NSZone *)zone;
9
@end @
protocol
NSMutableCopying - (id)mutableCopyWithZone:(NSZone *)zone;
10
@end @
protocol
NSCoding - (void)encodeWithCoder:(NSCoder *)aCoder;
19
@
protocol
NSFastEnumeration - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len;
33
@end @
protocol
NSAnimatablePropertyContainer - (id)animator;
53
@
protocol
PBXSelectableText - (NSString *)selectedString;
54
@end @
protocol
PBXFindableText <PBXSelectableText> - (BOOL)findText:(NSString *)string ignoreCase:(BOOL)ignoreCase matchStyle:(PBXFindMatchStyle)matchStyle backwards:(BOOL)backwards wrap:(BOOL)wrap;
59
@
protocol
PBXSelectionTarget - (NSObject <PBXSelectionTarget> *) performAction:(id)action withSelection:(NSArray *)selection; // expected-note {{method declared here}}
65
@
protocol
XCDockViewHeader - (NSImage *) headerImage
[
all
...]
/external/clang/test/CodeGenObjC/
instance-method-metadata.m
8
contains a
protocol
with a property and two classes that implement that
protocol
12
@
protocol
Proto
property-list-in-class.m
4
@
protocol
P
8
@
protocol
P1
12
@
protocol
P2 < P1>
hidden-visibility.m
19
@
protocol
Prot0;
22
return @
protocol
(Prot0);
/external/clang/test/CodeGenObjCXX/
references.mm
29
@
protocol
P1 @end
30
@
protocol
P2 @end
31
@
protocol
P3 @end
/external/clang/test/SemaObjCXX/
protocol-lookup.mm
2
@
protocol
NSObject
12
@
protocol
Foo <NSObject>
15
@
protocol
Bar <Foo>
/external/clang/test/SemaTemplate/
instantiate-objc-1.mm
26
// @
protocol
expressions
27
@
protocol
P
32
(void)@
protocol
(P);
/development/samples/USB/AdbTest/
README.txt
1
AdbTest is a sample program that implements a subset of the adb USB
protocol
.
9
- Matching devices based on interface class, subclass and
protocol
(see device_filter.xml)
/external/chromium/chrome/browser/accessibility/
browser_accessibility_delegate_mac.h
12
// This
protocol
is used by the BrowserAccessibility objects to pass messages
15
@
protocol
BrowserAccessibilityDelegateCocoa
/external/chromium/chrome/browser/ui/cocoa/
url_drop_target.h
11
@
protocol
URLDropTarget;
12
@
protocol
URLDropTargetController;
38
//
Protocol
which views that are URL drop targets and use |URLDropTargetHandler|
40
@
protocol
URLDropTarget
52
@end // @
protocol
URLDropTarget
54
//
Protocol
for the controller which handles the actual drop data/drop updates.
55
@
protocol
URLDropTargetController
73
@end // @
protocol
URLDropTargetController
/external/clang/test/PCH/
chain-predecl.m
11
@
protocol
Pro
14
@
protocol
Kaboom
/external/clang/test/Rewriter/
protocol-rewrite-1.m
9
@
protocol
MyProto
36
if (@
protocol
(MyProto)) {
rewrite-protocol-type-1.m
3
@
protocol
MyProto1
6
@
protocol
MyProto2
Completed in 463 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>