/external/tensorflow/tensorflow/lite/tools/optimize/ |
D | operator_property.cc | 66 OperatorProperty property; in GetOperatorProperty() local 69 property.inputs = {{0, {}}}; in GetOperatorProperty() 70 property.outputs = {{0, {}}}; in GetOperatorProperty() 71 property.version = 2; in GetOperatorProperty() 72 property.restrict_same_input_output_scale = true; in GetOperatorProperty() 75 property.inputs = {{0, {}}}; in GetOperatorProperty() 76 property.outputs = {{0, {}}}; in GetOperatorProperty() 77 property.version = 2; in GetOperatorProperty() 80 property.inputs = {{0, {}}, {1, {}}}; in GetOperatorProperty() 81 property.outputs = {{0, {}}}; in GetOperatorProperty() [all …]
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
D | networkconfig.ui | 4 <property name="geometry" > 11 </property> 12 <property name="windowTitle" > 14 </property> 18 <property name="text" > 20 </property> 25 <property name="frameShape" > 27 </property> 28 <property name="frameShadow" > 30 </property> [all …]
|
D | wpagui.ui | 4 <property name="geometry" > 11 </property> 12 <property name="windowTitle" > 14 </property> 15 <property name="windowIcon" > 18 </property> 23 <property name="text" > 25 </property> 33 <property name="text" > 35 </property> [all …]
|
D | userdatarequest.ui | 7 <property name="geometry" > 14 </property> 15 <property name="windowTitle" > 17 </property> 18 <property name="sizeGripEnabled" > 20 </property> 24 <property name="text" > 26 </property> 31 <property name="margin" > 33 </property> [all …]
|
D | scanresults.ui | 4 <property name="geometry" > 11 </property> 12 <property name="windowTitle" > 14 </property> 18 <property name="editTriggers" > 20 </property> 21 <property name="uniformRowHeights" > 23 </property> 24 <property name="sortingEnabled" > 26 </property> [all …]
|
/external/llvm-project/clang/test/SemaObjC/ |
D | property-atomic-redecl.m | 6 // Readonly, atomic public redeclaration of property in subclass. 8 @property (readonly) A *property; property 12 @property (nonatomic,readwrite,retain) A *property; 16 @property (readonly) A *property; property 19 // Readonly, atomic public redeclaration of property in subclass. 21 @property (readonly) A *property; property 25 @property (nonatomic, readwrite, retain) A *property; property 29 @property (readonly, nonatomic) A *property; property 33 @property (readwrite) A *property; 36 // Readonly, atomic public redeclaration of property in subclass. [all …]
|
D | atomic-property-synthesis-rules.m | 5 1. the property is atomic 6 2. the current @implementation contains an @synthesize for the property 8 4. the property is read-write 11 warning: Atomic property 'x' has a synthesized setter and a 13 warning: Atomic property 'x' has a synthesized getter and a 109 @property int GetSet; 110 @property int Get; // expected-note {{property declared here}} \ 112 @property int Set; // expected-note {{property declared here}} \ 114 @property int None; 115 @property(nonatomic) int GetSet_Nonatomic; [all …]
|
D | arc-property-decl-attrs.m | 10 @property(strong) id x; 11 @property(strong) id y; 12 @property(strong) id z; 21 @property(retain) id x; 22 @property(retain) id y; 23 @property(retain) id z; 32 @property(copy) id x; 33 @property(copy) id y; 34 @property(copy) id z; 40 @property(strong) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be… [all …]
|
D | property-10.m | 3 // Check property attribute consistency. 6 @property(readonly, readwrite) int p0; // expected-error {{property attributes 'readonly' and 'read… 8 @property(retain) int p1; // expected-error {{property with 'retain (or strong)' attribute must be … 9 @property(strong) int s1; // expected-error {{property with 'retain (or strong)' attribute must be … 11 @property(copy) int p2; // expected-error {{property with 'copy' attribute must be of object type}} 13 @property(assign, copy) id p3_0; // expected-error {{property attributes 'assign' and 'copy' are mu… 14 @property(assign, retain) id p3_1; // expected-error {{property attributes 'assign' and 'retain' ar… 15 @property(assign, strong) id s3_1; // expected-error {{property attributes 'assign' and 'strong' ar… 16 @property(copy, retain) id p3_2; // expected-error {{property attributes 'copy' and 'retain' are mu… 17 @property(copy, strong) id s3_2; // expected-error {{property attributes 'copy' and 'strong' are mu… [all …]
|
D | default-synthesize-3.m | 8 @property int NoAutoProp; // expected-note 2 {{property declared here}} 11 @implementation NoAuto // expected-warning {{property 'NoAutoProp' requires method 'NoAutoProp' to… 12 … // expected-warning {{property 'NoAutoProp' requires method 'setNoAutoProp:'}} 17 @property (copy) id SubProperty; // expected-note 2 {{property declared here}} 20 @implementation Sub // expected-warning {{property 'SubProperty' requires method 'SubProperty' to b… 21 … // expected-warning {{property 'SubProperty' requires method 'setSubProperty:' to be defined}} 25 @property (copy) id DeepProperty; 26 @property (copy) id DeepSynthProperty; 27 @property (copy) id DeepMustSynthProperty; // expected-note {{property declared here}} 30 @implementation Deep // expected-warning {{property 'DeepMustSynthProperty' requires method 'setDee… [all …]
|
D | property-in-class-extension-1.m | 9 @property (nonatomic, readonly) NSString* addingMemoryModel; 11 @property (nonatomic, copy, readonly) NSString* matchingMemoryModel; 13 @property (atomic, retain, readonly) NSString* addingNoNewMemoryModel; 15 @property (readonly) NSString* none; 16 @property (readonly) NSString* none1; 18 @property (assign, readonly) NSString* changeMemoryModel; // expected-note {{property declared here… 20 @property (readonly) __weak id weak_prop; 21 @property (readonly) __weak id weak_prop1; 23 @property (assign, readonly) NSString* assignProperty; 25 @property (readonly) NSString* readonlyProp; [all …]
|
/external/clang/test/SemaObjC/ |
D | property-atomic-redecl.m | 6 // Readonly, atomic public redeclaration of property in subclass. 8 @property (readonly) A *property; property 12 @property (nonatomic,readwrite,retain) A *property; 16 @property (readonly) A *property; property 19 // Readonly, atomic public redeclaration of property in subclass. 21 @property (readonly) A *property; property 25 @property (nonatomic, readwrite, retain) A *property; property 29 @property (readonly, nonatomic) A *property; property 33 @property (readwrite) A *property; 36 // Readonly, atomic public redeclaration of property in subclass. [all …]
|
D | atomoic-property-synnthesis-rules.m | 5 1. the property is atomic 6 2. the current @implementation contains an @synthesize for the property 8 4. the property is read-write 11 warning: Atomic property 'x' has a synthesized setter and a 13 warning: Atomic property 'x' has a synthesized getter and a 109 @property int GetSet; 110 @property int Get; // expected-note {{property declared here}} \ 112 @property int Set; // expected-note {{property declared here}} \ 114 @property int None; 115 @property(nonatomic) int GetSet_Nonatomic; [all …]
|
D | property-10.m | 3 // Check property attribute consistency. 6 @property(readonly, readwrite) int p0; // expected-error {{property attributes 'readonly' and 'read… 8 @property(retain) int p1; // expected-error {{property with 'retain (or strong)' attribute must be … 9 @property(strong) int s1; // expected-error {{property with 'retain (or strong)' attribute must be … 11 @property(copy) int p2; // expected-error {{property with 'copy' attribute must be of object type}} 13 @property(assign, copy) id p3_0; // expected-error {{property attributes 'assign' and 'copy' are mu… 14 @property(assign, retain) id p3_1; // expected-error {{property attributes 'assign' and 'retain' ar… 15 @property(assign, strong) id s3_1; // expected-error {{property attributes 'assign' and 'strong' ar… 16 @property(copy, retain) id p3_2; // expected-error {{property attributes 'copy' and 'retain' are mu… 17 @property(copy, strong) id s3_2; // expected-error {{property attributes 'copy' and 'strong' are mu… [all …]
|
D | arc-property-decl-attrs.m | 10 @property(strong) id x; 11 @property(strong) id y; 12 @property(strong) id z; 21 @property(retain) id x; 22 @property(retain) id y; 23 @property(retain) id z; 32 @property(copy) id x; 33 @property(copy) id y; 34 @property(copy) id z; 40 @property(strong) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be… [all …]
|
D | default-synthesize-3.m | 8 @property int NoAutoProp; // expected-note 2 {{property declared here}} 11 @implementation NoAuto // expected-warning {{property 'NoAutoProp' requires method 'NoAutoProp' to… 12 … // expected-warning {{property 'NoAutoProp' requires method 'setNoAutoProp:'}} 17 @property (copy) id SubProperty; // expected-note 2 {{property declared here}} 20 @implementation Sub // expected-warning {{property 'SubProperty' requires method 'SubProperty' to b… 21 … // expected-warning {{property 'SubProperty' requires method 'setSubProperty:' to be defined}} 25 @property (copy) id DeepProperty; 26 @property (copy) id DeepSynthProperty; 27 @property (copy) id DeepMustSynthProperty; // expected-note {{property declared here}} 30 @implementation Deep // expected-warning {{property 'DeepMustSynthProperty' requires method 'setDee… [all …]
|
D | property-in-class-extension-1.m | 9 @property (nonatomic, readonly) NSString* addingMemoryModel; 11 @property (nonatomic, copy, readonly) NSString* matchingMemoryModel; 13 @property (atomic, retain, readonly) NSString* addingNoNewMemoryModel; 15 @property (readonly) NSString* none; 16 @property (readonly) NSString* none1; 18 @property (assign, readonly) NSString* changeMemoryModel; // expected-note {{property declared here… 20 @property (readonly) __weak id weak_prop; 21 @property (readonly) __weak id weak_prop1; 23 @property (assign, readonly) NSString* assignProperty; 25 @property (readonly) NSString* readonlyProp; [all …]
|
/external/clang/test/ARCMT/ |
D | objcmt-property.m.result | 2 // RUN: %clang_cc1 -fblocks -objcmt-migrate-readwrite-property -objcmt-migrate-readonly-property -m… 24 @property (nonatomic, weak) NSString *WeakProp; 26 @property (nonatomic, strong) NSString *StrongProp; 28 @property (nonatomic, strong) NSString *UnavailProp __attribute__((unavailable)); 31 @property (nonatomic, strong) NSString *UnavailProp1 __attribute__((unavailable)); 33 @property (nonatomic, strong) NSString *UnavailProp2; 36 @property (nonatomic, copy) NSDictionary *undoAction; 51 @property (nonatomic, strong) NSArray *names2; 52 @property (nonatomic, strong) NSArray *names3; 53 @property (nonatomic, strong) NSArray *names4; [all …]
|
D | objcmt-atomic-property.m.result | 2 …ang_cc1 -fblocks -objcmt-migrate-readwrite-property -objcmt-migrate-readonly-property -objcmt-atom… 24 @property (weak) NSString *WeakProp; 26 @property (strong) NSString *StrongProp; 28 @property (strong) NSString *UnavailProp __attribute__((unavailable)); 31 @property (strong) NSString *UnavailProp1 __attribute__((unavailable)); 33 @property (strong) NSString *UnavailProp2; 36 @property (copy) NSDictionary *undoAction; 51 @property (strong) NSArray *names2; 52 @property (strong) NSArray *names3; 53 @property (strong) NSArray *names4; [all …]
|
D | objcmt-ns-nonatomic-iosonly.m.result | 2 …ks -objcmt-migrate-readwrite-property -objcmt-ns-nonatomic-iosonly -objcmt-migrate-readonly-proper… 31 @property (NS_NONATOMIC_IOSONLY, weak) NSString *WeakProp; 33 @property (NS_NONATOMIC_IOSONLY, strong) NSString *StrongProp; 35 @property (NS_NONATOMIC_IOSONLY, strong) NSString *UnavailProp __attribute__((unavailable)); 38 @property (NS_NONATOMIC_IOSONLY, strong) NSString *UnavailProp1 __attribute__((unavailable)); 40 @property (NS_NONATOMIC_IOSONLY, strong) NSString *UnavailProp2; 43 @property (NS_NONATOMIC_IOSONLY, copy) NSDictionary *undoAction; 58 @property (NS_NONATOMIC_IOSONLY, strong) NSArray *names2; 59 @property (NS_NONATOMIC_IOSONLY, strong) NSArray *names3; 60 @property (NS_NONATOMIC_IOSONLY, strong) NSArray *names4; [all …]
|
/external/llvm-project/clang/test/ARCMT/ |
D | objcmt-property.m.result | 2 // RUN: %clang_cc1 -fblocks -objcmt-migrate-readwrite-property -objcmt-migrate-readonly-property -m… 24 @property (nonatomic, weak) NSString *WeakProp; 26 @property (nonatomic, strong) NSString *StrongProp; 28 @property (nonatomic, strong) NSString *UnavailProp __attribute__((unavailable)); 31 @property (nonatomic, strong) NSString *UnavailProp1 __attribute__((unavailable)); 33 @property (nonatomic, strong) NSString *UnavailProp2; 36 @property (nonatomic, copy) NSDictionary *undoAction; 51 @property (nonatomic, strong) NSArray *names2; 52 @property (nonatomic, strong) NSArray *names3; 53 @property (nonatomic, strong) NSArray *names4; [all …]
|
D | objcmt-atomic-property.m.result | 2 …ang_cc1 -fblocks -objcmt-migrate-readwrite-property -objcmt-migrate-readonly-property -objcmt-atom… 24 @property (weak) NSString *WeakProp; 26 @property (strong) NSString *StrongProp; 28 @property (strong) NSString *UnavailProp __attribute__((unavailable)); 31 @property (strong) NSString *UnavailProp1 __attribute__((unavailable)); 33 @property (strong) NSString *UnavailProp2; 36 @property (copy) NSDictionary *undoAction; 51 @property (strong) NSArray *names2; 52 @property (strong) NSArray *names3; 53 @property (strong) NSArray *names4; [all …]
|
D | objcmt-ns-nonatomic-iosonly.m.result | 2 …ks -objcmt-migrate-readwrite-property -objcmt-ns-nonatomic-iosonly -objcmt-migrate-readonly-proper… 31 @property (NS_NONATOMIC_IOSONLY, weak) NSString *WeakProp; 33 @property (NS_NONATOMIC_IOSONLY, strong) NSString *StrongProp; 35 @property (NS_NONATOMIC_IOSONLY, strong) NSString *UnavailProp __attribute__((unavailable)); 38 @property (NS_NONATOMIC_IOSONLY, strong) NSString *UnavailProp1 __attribute__((unavailable)); 40 @property (NS_NONATOMIC_IOSONLY, strong) NSString *UnavailProp2; 43 @property (NS_NONATOMIC_IOSONLY, copy) NSDictionary *undoAction; 58 @property (NS_NONATOMIC_IOSONLY, strong) NSArray *names2; 59 @property (NS_NONATOMIC_IOSONLY, strong) NSArray *names3; 60 @property (NS_NONATOMIC_IOSONLY, strong) NSArray *names4; [all …]
|
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/ |
D | objc-property-declaration.m | 1 // RUN: %check_clang_tidy %s objc-property-declaration %t 11 @property(assign, nonatomic) int NotCamelCase; 12 …g: property name 'NotCamelCase' not using lowerCamelCase style or not prefixed in a category, acco… 13 // CHECK-FIXES: @property(assign, nonatomic) int notCamelCase; 14 @property(assign, nonatomic) int camelCase; 15 @property(strong, nonatomic) NSString *URLString; 16 @property(strong, nonatomic) NSString *bundleID; 17 @property(strong, nonatomic) NSData *RGBABytes; 18 @property(strong, nonatomic) UIViewController *notificationsVC; 19 @property(strong, nonatomic) NSString *URL_string; [all …]
|
/external/protobuf/objectivec/ |
D | GPBDescriptor.h | 68 @property(nonatomic, readonly, copy) NSString *name; 70 @property(nonatomic, readonly, strong, nullable) NSArray<GPBFieldDescriptor*> *fields; 72 @property(nonatomic, readonly, strong, nullable) NSArray<GPBOneofDescriptor*> *oneofs; 74 @property(nonatomic, readonly, nullable) const GPBExtensionRange *extensionRanges; 76 @property(nonatomic, readonly) uint32_t extensionRangesCount; 78 @property(nonatomic, readonly) GPBFileDescriptor *file; 81 @property(nonatomic, readonly, getter=isWireFormat) BOOL wireFormat; 83 @property(nonatomic, readonly) Class messageClass; 85 @property(readonly, nullable) GPBDescriptor *containingType; 90 @property(readonly, nullable) NSString *fullName; [all …]
|