/packages/services/Car/tests/android_car_api_test/src/android/car/apitest/ |
CarCabinManagerTest.java | 47 for (CarPropertyConfig property : properties) { 48 if (supportedTypes.contains(property.getPropertyType())) { 49 assertTypeAndZone(property); 51 fail("Type is not supported for " + property); 56 private void assertTypeAndZone(CarPropertyConfig property) { 57 int propId = property.getPropertyId(); 65 assertEquals(Boolean.class, property.getPropertyType()); 66 assertFalse(property.isGlobalProperty()); 106 assertEquals(Integer.class, property.getPropertyType()); 107 assertFalse(property.isGlobalProperty()) [all...] |
/external/clang/test/SemaObjC/ |
property-9.m | 13 @property (retain, nonatomic) id requestor; 14 @property (retain, nonatomic) id appleEventDescriptor; 33 @property (readwrite, retain) id<MyProtocol> myIvar; 46 @property (readonly) int; // expected-warning {{declaration does not declare anything}} 47 @property (readonly) ; // expected-error {{type name requires a specifier or qualifier}} 48 @property (readonly) int : 4; // expected-error {{property requires fields to be named}} 52 @property ( // expected-note {{to match this '('}} 56 @property (readonlyx) // expected-error {{unknown property attribute 'readonlyx'} [all...] |
tentative-property-decl.m | 4 /** A property may not be both 'readonly' and having a memory management attribute 5 (copy/retain/etc.). But, property declaration in primary class and protcols 6 are tentative as they may be overridden into a 'readwrite' property in class 8 attributes in a property. 18 @property(nonatomic, copy, readonly) NSString *prop; 19 @property(nonatomic, copy, readonly) id warnProp; 23 @property(nonatomic, copy, readwrite) NSString *prop; 33 @property(nonatomic, copy, readonly) NSString *prop; 34 @property(nonatomic, copy, readonly) id warnProp; 41 @property(nonatomic, copy, readwrite) NSString *prop [all...] |
iboutlet.m | 10 @property (getter = MyGetter, readonly, assign) IBOutlet NSView *myView; // expected-warning {{readonly IBOutlet property 'myView' when auto-synthesized may not work correctly with 'nib' loader}} expected-note {{property should be changed to be readwrite}} 12 IBInspectable @property (readonly) IBOutlet NSView *myView1; // expected-warning {{readonly IBOutlet property 'myView1' when auto-synthesized may not work correctly with 'nib' loader}} expected-note {{property should be changed to be readwrite}} 14 @property (getter = MyGetter, READONLY) IBOutlet NSView *myView2; // expected-warning {{readonly IBOutlet property 'myView2' when auto-synthesized may not work correctly with 'nib' loader}} 28 @property( readonly ) __attribute__((iboutlet)) UILabel *autoReadOnlyReadOnly; // expected-warning {{readonly IBOutlet property 'autoReadOnlyReadOnly' when auto-synthesized may not work correctly with 'nib' loader}} expected-n (…) [all...] |
conflict-nonfragile-abi2.m | 8 @property int glob; 9 @property int p; 10 @property int le; 11 @property int l; 12 @property int ls; 13 @property int r;
|
no-gc-weak-test.m | 7 @property(nonatomic,readwrite,assign) id __weak delegate; // expected-error {{unsafe_unretained property 'delegate' may not also be declared __weak}} 17 id __weak _selectionRect; // expected-error {{cannot create __weak reference because the current deployment target does not support weak references}} expected-error {{existing instance variable '_selectionRect' for property 'selectionRect' with assign attribute must be __unsafe_unretained}} 20 @property(assign) id selectionRect; // expected-note {{property declared here}} 26 @synthesize selectionRect = _selectionRect; // expected-note {{property synthesized here}}
|
property-in-class-extension.m | 7 @property (readonly) int bar; 12 foo.bar = 0; // expected-error {{assignment to readonly property}} 32 @property (readwrite, assign) NSObject *bar; 33 @property (readwrite, assign) NSObject *baz; 34 @property (readwrite, assign) NSObject *bam; 35 @property (readwrite, assign) NSObject *warn;
|
/external/clang/test/Rewriter/ |
objc-modern-property-attributes.mm | 14 @property int q; 15 @property int r; 17 @property (copy) void_block_t completionBlock; 18 @property (retain) PropertyClass* Yblock; 19 @property (readonly) PropertyClass* readonlyAttr; 20 @property (readonly,copy) PropertyClass* readonlyCopyAttr; 21 @property (readonly,retain) PropertyClass* readonlyRetainAttr; 22 @property (readonly,retain,nonatomic) PropertyClass* readonlyNonatomicAttr; 23 @property (copy) id ID; 50 @property int q [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/ |
IGLProperty.java | 25 /** Obtain the type of the property. */ 28 /** Is this a composite property? 30 * false if it is a leaf level atomic property 40 /** Set the current value for this property. */ 43 /** Get the current value for this property. */ 46 /** Get the string representation for this property. */ 50 * Get the parent property that holds this property. 51 * @return null if this property is at the top level, parent otherwise 55 /** Set the parent property that holds this property. * [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/ |
antlr3.runtime.net.common.inc | 6 <property name="rootbuild.dir" value="${directory::get-current-directory()}" /> 8 <property name="build.dest.dir" value="${rootbuild.dir}/build/${framework::get-target-framework()}" /> 9 <property name="build.working.dir" value="${rootbuild.dir}/bin" /> 11 <property name="strong_name" value="NANT_STRONGNAME" unless="${property::exists('strong_name')}" /> 12 <property name="debug" value="false" unless="${property::exists('debug')}" /> 13 <property name="optimize" value="true" unless="${property::exists('optimize')}" /> 14 <property name="doc.dir" value="${base.dir}/docs" / [all...] |
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/ |
TypeDescription.java | 84 * Specify that the property is a type-safe <code>List</code>. 86 * @param property 87 * name of the JavaBean property 91 public void putListPropertyType(String property, Class<? extends Object> type) { 92 listProperties.put(property, type); 96 * Get class of List values for provided JavaBean property. 98 * @param property 99 * property name 102 public Class<? extends Object> getListPropertyType(String property) { 103 return listProperties.get(property); [all...] |
/external/dtc/tests/ |
overlay_base_manual_symbols.dts | 13 test-int-property = <42>; 14 test-str-property = "foo"; 17 sub-test-property;
|
/external/mesa3d/src/gallium/tests/graw/geometry-shader/ |
add-mix.txt | 2 PROPERTY GS_INPUT_PRIMITIVE TRIANGLES 3 PROPERTY GS_OUTPUT_PRIMITIVE TRIANGLE_STRIP 4 PROPERTY GS_MAX_OUTPUT_VERTICES 3
|
add.txt | 2 PROPERTY GS_INPUT_PRIMITIVE TRIANGLES 3 PROPERTY GS_OUTPUT_PRIMITIVE LINE_STRIP 4 PROPERTY GS_MAX_OUTPUT_VERTICES 3
|
mov-cb-2d.txt | 2 PROPERTY GS_INPUT_PRIMITIVE TRIANGLES 3 PROPERTY GS_OUTPUT_PRIMITIVE TRIANGLE_STRIP 4 PROPERTY GS_MAX_OUTPUT_VERTICES 3
|
mov.txt | 2 PROPERTY GS_INPUT_PRIMITIVE TRIANGLES 3 PROPERTY GS_OUTPUT_PRIMITIVE TRIANGLE_STRIP 4 PROPERTY GS_MAX_OUTPUT_VERTICES 3
|
/cts/tests/tests/calendarcommon/src/com/android/calendarcommon2/ |
ICalendar.java | 29 * Component and Property, for use in the test. 41 private final LinkedHashMap<String, ArrayList<Property>> mPropsMap = 42 new LinkedHashMap<String, ArrayList<Property>>(); 53 * Adds a Property to this component. 56 public void addProperty(Property prop) { 58 ArrayList<Property> props = mPropsMap.get(name); 60 props = new ArrayList<Property>(); 69 * @param name The name of the property that should be returned. 72 public List<Property> getProperties(String name) { 78 * A property within an iCalendar component (e.g., DTSTART, DTEND, etc. [all...] |
/device/google/marlin/ |
init.common.diag.rc.user | 3 on property:ro.boot.mode=normal
|
/device/huawei/angler/ |
init.angler.diag.rc.user | 3 on property:ro.boot.mode=normal
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ACBTree.h | 30 @property (assign) NSInteger recnum; 31 @property (retain) NSString *key; 59 @property (retain) AMutableDictionary *dict; 60 @property (retain) ACBTree *lnode; 61 @property (retain) ACBTree *rnode; 62 @property (assign) ACBKey **keys; 63 @property (assign) ACBTree **btNodes; 64 @property (assign) NSInteger lnodeid; 65 @property (assign) NSInteger rnodeid; 66 @property (assign) NSInteger nodeid [all...] |
/external/autotest/client/deps/fakegudev/src/test_files/ |
fake_property_foo.output | 7 Property FOO: BAR
|
/external/clang/examples/ |
CMakeLists.txt | 2 set_property(DIRECTORY PROPERTY EXCLUDE_FROM_ALL ON)
|
/external/clang/test/ARCMT/ |
remove-dealloc-method.m.result | 8 @property (strong) id x; 9 @property (strong) id y; 10 @property (strong) id w; 11 @property (strong) id z;
|
/external/clang/test/CodeGenObjC/ |
auto-property-synthesize-protocol.m | 6 @property int auto_opt_window; 7 @property int no_auto_opt_window; 11 @property int auto_opt_window; 18 @property int auto_req_window; 19 @property int no_auto_req_window; // expected-note {{property declared here}} 23 @property int auto_req_window; 26 @implementation I1 // expected-warning {{auto property synthesis will not synthesize property declared in a protocol}}
|
debug-info-default-synth-ivar.m | 15 @property(readonly) NSString *someString; 16 @property(readonly) unsigned long someNumber; 30 @property(copy) NSString *someString; 31 @property unsigned long someNumber;
|