/external/clang/test/SemaObjC/ |
D | category-1.m | 3 @interface MyClass1 @end 8 @interface MyClass1 (Category1) <p1> // expected-warning {{cannot find protocol definition for 'p1… 11 @interface MyClass1 (Category1) // expected-warning {{duplicate definition of category 'Category1'… 14 @interface MyClass1 (Category3) 17 @interface MyClass1 (Category4) @end // expected-note {{previous definition is here}} 18 @interface MyClass1 (Category5) @end 19 @interface MyClass1 (Category6) @end 20 @interface MyClass1 (Category7) @end // expected-note {{previous definition is here}} 21 @interface MyClass1 (Category8) @end // expected-note {{previous definition is here}} 24 @interface MyClass1 (Category4) @end // expected-warning {{duplicate definition of category 'Catego… [all …]
|
D | invalid-objc-decls-1.m | 3 @interface Super @end 4 Super s1; // expected-error{{interface type cannot be statically allocated}} 6 extern Super e1; // expected-error{{interface type cannot be statically allocated}} 9 Super s1; // expected-error{{interface type cannot be statically allocated}} 14 @interface INTF 16 Super ivar1; // expected-error{{interface type cannot be statically allocated}} 21 Super objField; // expected-error{{interface type cannot be statically allocated}} 24 @interface MyIntf 26 Super<P1> ivar1; // expected-error{{interface type cannot be statically allocated}} 30 Super foo( // expected-error{{interface type 'Super' cannot be returned by value; did you forget * … [all …]
|
D | attr-designated-init.m | 5 …GNATED_INITIALIZER; // expected-error {{only applies to init methods of interface or class extensi… 8 -(id)init NS_DESIGNATED_INITIALIZER; // expected-error {{only applies to init methods of interface … 12 @interface I1 13 …GNATED_INITIALIZER; // expected-error {{only applies to init methods of interface or class extensi… 15 +(id)init NS_DESIGNATED_INITIALIZER; // expected-error {{only applies to init methods of interface … 18 @interface I1(cat) 19 -(id)init2 NS_DESIGNATED_INITIALIZER; // expected-error {{only applies to init methods of interface… 22 @interface I1() 28 …LIZER { return 0; } // expected-error {{only applies to init methods of interface or class extensi… 31 …LIZER { return 0; } // expected-error {{only applies to init methods of interface or class extensi… [all …]
|
D | property-category-4.m | 3 @interface IDELogNavigator 9 @interface IDELogNavigator (CAT) 22 @interface NSArray 31 @interface NSArray(Additions) <MyCountable> 42 @interface NSArray1 <NSProtocol> 45 @interface NSArray1(Additions) <MyCountable> 52 @interface Super <NSProtocol> 55 @interface NSArray2 : Super @end 57 @interface NSArray2(Additions) <MyCountable> 64 @interface Super1 <NSProtocol> [all …]
|
D | class-def-test-1.m | 5 @interface SUPER <SUPER> @end // expected-warning {{cannot find protocol definition for 'SUPER'}} 9 @interface INTF @end // expected-error {{redefinition of 'INTF' as different kind of symbol}} 11 @interface OBJECT @end // expected-note {{previous definition is here}} 13 @interface INTF1 : OBJECT @end // expected-note {{previous definition is here}} 15 @interface INTF1 : OBJECT @end // expected-error {{duplicate interface definition for class 'INTF1'… 20 @interface INTF2 : OBJECT2 @end // expected-error {{redefinition of 'OBJECT2' as different kind of … 26 @interface INTF3 : PROTO @end // expected-error {{cannot find interface declaration for 'PROTO', su… 29 @interface NSObject @end 31 @interface XCElementUnit : TD_NSObject {} 35 @interface SomeClassSub : SomeClassSup // expected-error{{cannot find interface declaration for 'So…
|
D | class-proto-1.m | 3 @interface INTF1 @end 16 @interface I1 <p1> @end 18 @interface E1 <p2> @end // expected-warning {{cannot find protocol definition for 'p2'}} 23 @interface I2 <p1,p2> @end 25 @interface E2 <p1,p2,p3> @end // expected-warning {{cannot find protocol definition for 'p3'}} 29 @interface E3 : U1 @end // expected-error {{attempting to use the forward class 'U1' as superclass … 32 @interface I3 : E3 @end 34 @interface U2 @end 36 @interface I4 : U2 <p1,p2> 40 @interface NSObject @end [all …]
|
/external/lldb/scripts/ |
D | lldb.swig | 118 /* Python interface files with docstrings. */ 119 %include "./Python/interface/SBAddress.i" 120 %include "./Python/interface/SBBlock.i" 121 %include "./Python/interface/SBBreakpoint.i" 122 %include "./Python/interface/SBBreakpointLocation.i" 123 %include "./Python/interface/SBBroadcaster.i" 124 %include "./Python/interface/SBCommandInterpreter.i" 125 %include "./Python/interface/SBCommandReturnObject.i" 126 %include "./Python/interface/SBCommunication.i" 127 %include "./Python/interface/SBCompileUnit.i" [all …]
|
/external/iproute2/examples/ |
D | dhcp-client-script | 345 ifconfig $interface:dhcp down 346 ifconfig $interface:dhcp1 down 347 if [ -d /proc/sys/net/ipv4/conf/$interface ]; then 348 ifconfig $interface:dhcp 10.10.10.10 netmask 255.255.255.255 349 ifconfig $interface:dhcp down 350 if [ -d /proc/sys/net/ipv4/conf/$interface ]; then 351 LOG The interface $interface already configured. 354 ifconfig $interface:dhcp up 363 if DAD "$interface" "$check_ip_address" ; then 372 … DelINETAddr "$interface" "$alias_ip_address" "$alias_subnet_mask" "$alias_broadcast_address" dhcp1 [all …]
|
/external/webrtc/src/system_wrappers/source/ |
D | system_wrappers.gyp | 17 '../interface', 21 '../interface', 25 '../interface/aligned_malloc.h', 26 '../interface/atomic32.h', 27 '../interface/compile_assert.h', 28 '../interface/condition_variable_wrapper.h', 29 '../interface/cpu_info.h', 30 '../interface/cpu_wrapper.h', 31 '../interface/cpu_features_wrapper.h', 32 '../interface/critical_section_wrapper.h', [all …]
|
/external/clang/test/ASTMerge/Inputs/ |
D | interface2.m | 2 @interface I1 { 8 @interface I2 : I1 { 14 @interface I3 { 21 @interface I4 : I1 { 26 @interface I5 32 @interface I6 37 @interface I7 43 @interface I8 61 @interface I9 <P0> 71 // Forward-declared interface [all …]
|
D | interface1.m | 2 @interface I1 { 8 @interface I2 : I1 { 14 @interface I3 { 21 @interface I4 : I2 { 26 @interface I5 32 @interface I6 38 @interface I7 44 @interface I8 62 @interface I9 <P0> 74 @interface I12 [all …]
|
D | category1.m | 1 @interface I1 5 @interface I1 (Cat1) 10 @interface I1 () 15 @interface I1 (Cat2) 19 @interface I2 23 @interface I2 () 28 @interface I2 (Cat3) 35 @interface I2 (Cat4) 42 @interface I2 (Cat6)
|
D | category2.m | 3 @interface I1 7 @interface I1 (Cat1) 12 @interface I1 () 17 @interface I1 (Cat2) 21 @interface I2 25 @interface I2 () 30 @interface I2 (Cat3) 37 @interface I2 (Cat5) 44 @interface I2 (Cat6)
|
/external/dhcpcd/ |
D | net.h | 86 const struct interface *iface; 99 struct interface *init_interface(const char *); 100 struct interface *discover_interfaces(int, char * const *); 101 void free_interface(struct interface *); 109 int up_interface(struct interface *); 110 int if_conf(struct interface *); 111 int if_init(struct interface *); 115 int if_address(const struct interface *, 134 int open_udp_socket(struct interface *); 141 int open_socket(struct interface *, int); [all …]
|
D | dhcpcd.h | 109 struct interface { struct 142 struct interface *next; argument 151 extern struct interface *ifaces; 154 struct interface *find_interface(const char *); 167 void start_reboot(struct interface *); 169 void send_decline(struct interface *); 170 void open_sockets(struct interface *); 171 void close_sockets(struct interface *); 172 void drop_dhcp(struct interface *, const char *); 173 void drop_interface(struct interface *, const char *); [all …]
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/ |
D | SimpleCParser.h | 12 #pragma mark Cyclic DFA interface start DFA2 13 @interface DFA2 : ANTLRDFA { 19 #pragma mark Cyclic DFA interface end DFA2 48 @interface SimpleCParser_program_return :ANTLRParserRuleReturnScope { // line 1672 62 @interface SimpleCParser_declaration_return :ANTLRParserRuleReturnScope { // line 1672 76 @interface SimpleCParser_variable_return :ANTLRParserRuleReturnScope { // line 1672 90 @interface SimpleCParser_declarator_return :ANTLRParserRuleReturnScope { // line 1672 104 @interface SimpleCParser_functionHeader_return :ANTLRParserRuleReturnScope { // line 1672 118 @interface SimpleCParser_formalParameter_return :ANTLRParserRuleReturnScope { // line 1672 132 @interface SimpleCParser_type_return :ANTLRParserRuleReturnScope { // line 1672 [all …]
|
/external/clang/test/ARCMT/ |
D | objcmt-instancetype-2.m | 12 @interface NSMutableString 15 @interface NSString @end 18 @interface NSString (NSStringDeprecated) 30 @interface NSURL 37 @interface NSError 42 @interface NSMutableString (NSMutableStringExtensionMethods) 46 @interface NSMutableData 51 @interface NSMutableDictionary @end 53 @interface NSMutableDictionary (NSSharedKeySetDictionary) 57 @interface NSProtocolChecker [all …]
|
D | objcmt-instancetype-2.m.result | 12 @interface NSMutableString 15 @interface NSString @end 18 @interface NSString (NSStringDeprecated) 30 @interface NSURL 37 @interface NSError 42 @interface NSMutableString (NSMutableStringExtensionMethods) 46 @interface NSMutableData 51 @interface NSMutableDictionary @end 53 @interface NSMutableDictionary (NSSharedKeySetDictionary) 57 @interface NSProtocolChecker [all …]
|
D | objcmt-subscripting-literals.m.result | 11 @interface NSObject 18 @interface NSString : NSObject 23 @interface NSArray : NSObject 27 @interface NSArray (NSExtendedArray) 31 @interface NSArray (NSArrayCreation) 43 @interface NSMutableArray : NSArray 47 @interface NSMutableArray (NSExtendedMutableArray) 51 @interface NSDictionary : NSObject 55 @interface NSDictionary (NSExtendedDictionary) 59 @interface NSDictionary (NSDictionaryCreation) [all …]
|
D | objcmt-subscripting-literals-in-arc.m.result | 11 @interface NSObject 18 @interface NSString : NSObject 23 @interface NSArray : NSObject 27 @interface NSArray (NSExtendedArray) 31 @interface NSArray (NSArrayCreation) 43 @interface NSMutableArray : NSArray 47 @interface NSMutableArray (NSExtendedMutableArray) 51 @interface NSDictionary : NSObject 55 @interface NSDictionary (NSExtendedDictionary) 59 @interface NSDictionary (NSDictionaryCreation) [all …]
|
/external/selinux/policycoreutils/sepolicy/sepolicy/ |
D | interface.py | 155 def get_interface_format_text(interface,path = "/usr/share/selinux/devel/policy.xml"): argument 157 …interface_text = "%s(%s) %s" % (interface, ", ".join(idict[interface][0]), " ".join(idict[interfac… 161 def get_interface_compile_format_text(interfaces_dict, interface): argument 164 for i in interfaces_dict[interface][0]: 166 interface_text = "%s(%s)\n" % (interface, ", ".join(param_tmp)) 170 def generate_compile_te(interface, idict, name="compiletest"): argument 174 te += get_interface_compile_format_text(idict,interface) 191 def interface_compile_test(interface, path = "/usr/share/selinux/devel/policy.xml"): argument 199 …if not (interface.split("_")[0] in exclude_interfaces or idict[interface][2] in exclude_interface_… 200 print(_("Compiling %s interface" % interface)) [all …]
|
/external/clang/test/Parser/ |
D | missing-end-4.m | 3 @interface X1 6 @interface Y1 // expected-error {{missing '@end'}} 10 @interface X2 17 @interface X6 // expected-note {{class started here}} 18 @interface X7 // expected-error {{missing '@end'}} 23 @interface P2 // expected-error {{missing '@end'}} 27 @interface X4 // expected-note {{class started here}} 32 @interface I 40 @interface I2 {} 41 @protocol P2; // expected-error {{illegal interface qualifier}} [all …]
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/ |
D | SimpleCParser.h | 25 #pragma mark Cyclic DFA interface start DFA2 26 @interface DFA2 : ANTLRDFA { 32 #pragma mark Cyclic DFA interface end DFA2 66 @interface SimpleCParser_program_return :ANTLRParserRuleReturnScope { /* returnScopeInterface line … 85 @interface SimpleCParser_declaration_return :ANTLRParserRuleReturnScope { /* returnScopeInterface l… 104 @interface SimpleCParser_variable_return :ANTLRParserRuleReturnScope { /* returnScopeInterface line… 123 @interface SimpleCParser_declarator_return :ANTLRParserRuleReturnScope { /* returnScopeInterface li… 142 @interface SimpleCParser_functionHeader_return :ANTLRParserRuleReturnScope { /* returnScopeInterfac… 161 @interface SimpleCParser_formalParameter_return :ANTLRParserRuleReturnScope { /* returnScopeInterfa… 180 @interface SimpleCParser_type_return :ANTLRParserRuleReturnScope { /* returnScopeInterface line 183… [all …]
|
/external/libusb-compat/examples/ |
D | testlibusb.c | 23 void print_altsetting(struct usb_interface_descriptor *interface) in print_altsetting() argument 27 printf(" bInterfaceNumber: %d\n", interface->bInterfaceNumber); in print_altsetting() 28 printf(" bAlternateSetting: %d\n", interface->bAlternateSetting); in print_altsetting() 29 printf(" bNumEndpoints: %d\n", interface->bNumEndpoints); in print_altsetting() 30 printf(" bInterfaceClass: %d\n", interface->bInterfaceClass); in print_altsetting() 31 printf(" bInterfaceSubClass: %d\n", interface->bInterfaceSubClass); in print_altsetting() 32 printf(" bInterfaceProtocol: %d\n", interface->bInterfaceProtocol); in print_altsetting() 33 printf(" iInterface: %d\n", interface->iInterface); in print_altsetting() 35 for (i = 0; i < interface->bNumEndpoints; i++) in print_altsetting() 36 print_endpoint(&interface->endpoint[i]); in print_altsetting() [all …]
|
/external/clang/test/Analysis/ |
D | pr4209.m | 14 @end @interface NSObject <NSObject> { 22 @interface NSArray : NSObject <NSCopying, NSMutableCopying, NSCoding, NSFastEnumeration> - (NSUInt… 23 @end @interface NSMutableArray : NSArray - (void)addObject:(id)anObject; 25 @interface NSString : NSObject <NSCopying, NSMutableCopying, NSCoding> - (NSUInteger)length; 27 @end @interface NSSimpleCString : NSString { 29 @end @interface NSConstantString : NSSimpleCString @end extern void *_NSConstantStringClassRefer… 30 @interface NSDictionary : NSObject <NSCopying, NSMutableCopying, NSCoding, NSFastEnumeration> - (N… 31 @end @interface NSMutableDictionary : NSDictionary - (void)removeObjectForKey:(id)aKey; 35 @interface NSResponder : NSObject <NSCoding> { 38 @interface NSCell : NSObject <NSCopying, NSCoding> { [all …]
|