/external/clang/test/SemaObjC/ |
D | property-atomic-redecl.m | 8 @property (readonly) A *property; property 16 @property (readonly) A *property; property 21 @property (readonly) A *property; property 25 @property (nonatomic, readwrite, retain) A *property; property 29 @property (readonly, nonatomic) A *property; property 38 @property (readonly,atomic) A *property; // expected-note{{property declared here}} property 46 @property (readonly) A *property; property 51 @property (readonly, atomic) A *property; // expected-note{{property declared here}} property 55 @property (nonatomic, readwrite, retain) A *property; // expected-warning{{atomic' attribute on pro… property
|
/external/protobuf/objectivec/google/protobuf/ |
D | Wrappers.pbobjc.h | 44 @property(nonatomic, readwrite) double value; in property() function 60 @property(nonatomic, readwrite) float value; in property() function 76 @property(nonatomic, readwrite) int64_t value; in property() function 92 @property(nonatomic, readwrite) uint64_t value; in property() function 108 @property(nonatomic, readwrite) int32_t value; in property() function 124 @property(nonatomic, readwrite) uint32_t value; in property() function 140 @property(nonatomic, readwrite) BOOL value; in property() function 156 @property(nonatomic, readwrite, copy, null_resettable) NSString *value; in property() function
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/concretesyntaxmodel/ |
D | CsmElement.java | 39 static CsmElement child(ObservableProperty property) { in child() 43 static CsmElement attribute(ObservableProperty property) { in attribute() 59 static CsmElement stringToken(ObservableProperty property) { in stringToken() 63 static CsmElement charToken(ObservableProperty property) { in charToken() 75 …static CsmElement conditional(ObservableProperty property, CsmConditional.Condition condition, Csm… in conditional() 79 …static CsmElement conditional(ObservableProperty property, CsmConditional.Condition condition, Csm… in conditional() 109 static CsmElement list(ObservableProperty property) { in list() 113 static CsmElement list(ObservableProperty property, CsmElement separator) { in list() 117 …static CsmElement list(ObservableProperty property, CsmElement separator, CsmElement preceeding, C… in list() 121 …static CsmElement list(ObservableProperty property, CsmElement separatorPre, CsmElement separatorP… in list()
|
D | CsmList.java | 34 private final ObservableProperty property; field in CsmList 60 public CsmList(ObservableProperty property, CsmElement separator) { in CsmList() 64 public CsmList(ObservableProperty property) { in CsmList() 68 …public CsmList(ObservableProperty property, CsmElement separatorPre, CsmElement separatorPost, Csm… in CsmList()
|
D | CsmChar.java | 29 private final ObservableProperty property; field in CsmChar 31 public CsmChar(ObservableProperty property) { in CsmChar()
|
D | CsmString.java | 29 private final ObservableProperty property; field in CsmString 31 public CsmString(ObservableProperty property) { in CsmString()
|
D | CsmSingleReference.java | 30 private final ObservableProperty property; field in CsmSingleReference 36 public CsmSingleReference(ObservableProperty property) { in CsmSingleReference()
|
D | CsmAttribute.java | 35 private final ObservableProperty property; field in CsmAttribute 37 public CsmAttribute(ObservableProperty property) { in CsmAttribute()
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/ |
D | CryptoServicesRegistrar.java | 140 public static <T> T getProperty(Property property) in getProperty() 152 private static Object[] lookupProperty(Property property) in lookupProperty() 176 public static <T> T[] getSizedProperty(Property property) in getSizedProperty() 197 public static <T> T getSizedProperty(Property property, int size) in getSizedProperty() 243 public static <T> void setThreadProperty(Property property, T... propertyValue) in setThreadProperty() 264 public static <T> void setGlobalProperty(Property property, T... propertyValue) in setGlobalProperty() 271 private static <T> void localSetThread(Property property, T[] propertyValue) in localSetThread() 284 private static <T> void localSetGlobalProperty(Property property, T... propertyValue) in localSetGlobalProperty() 304 public static <T> T[] clearGlobalProperty(Property property) in clearGlobalProperty() 321 public static <T> T[] clearThreadProperty(Property property) in clearThreadProperty() [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/ |
D | CryptoServicesRegistrar.java | 138 public static <T> T getProperty(Property property) in getProperty() 150 private static Object[] lookupProperty(Property property) in lookupProperty() 174 public static <T> T[] getSizedProperty(Property property) in getSizedProperty() 195 public static <T> T getSizedProperty(Property property, int size) in getSizedProperty() 241 public static <T> void setThreadProperty(Property property, T... propertyValue) in setThreadProperty() 262 public static <T> void setGlobalProperty(Property property, T... propertyValue) in setGlobalProperty() 269 private static <T> void localSetThread(Property property, T[] propertyValue) in localSetThread() 282 private static <T> void localSetGlobalProperty(Property property, T... propertyValue) in localSetGlobalProperty() 302 public static <T> T[] clearGlobalProperty(Property property) in clearGlobalProperty() 319 public static <T> T[] clearThreadProperty(Property property) in clearThreadProperty() [all …]
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/ |
D | TypeDescription.java | 91 public void putListPropertyType(String property, Class<? extends Object> type) { in putListPropertyType() 102 public Class<? extends Object> getListPropertyType(String property) { in getListPropertyType() 116 public void putMapPropertyType(String property, Class<? extends Object> key, in putMapPropertyType() 129 public Class<? extends Object> getMapKeyType(String property) { in getMapKeyType() 140 public Class<? extends Object> getMapValueType(String property) { in getMapValueType()
|
/external/hamcrest/hamcrest-library/src/test/java/org/hamcrest/beans/ |
D | HasPropertyWithValueTest.java | 92 private String property; field in HasPropertyWithValueTest.BeanWithoutInfo 94 public BeanWithoutInfo(String property) { in BeanWithoutInfo() 102 public void setProperty(String property) { in setProperty() 106 public void setWriteOnlyProperty(@SuppressWarnings("unused") float property) { in setWriteOnlyProperty() 122 public String property() { in property() method in HasPropertyWithValueTest.BeanWithInfo
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/changes/ |
D | PropertyChange.java | 10 private final ObservableProperty property; field in PropertyChange 26 public PropertyChange(ObservableProperty property, Object oldValue, Object newValue) { in PropertyChange() 33 public Object getValue(ObservableProperty property, Node node) { in getValue()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/ |
D | CharacterProperties.java | 31 private static UnicodeSet makeSet(int property) { in makeSet() 60 private static CodePointMap makeMap(int property) { in makeMap() 118 public static final UnicodeSet getBinaryPropertySet(int property) { in getBinaryPropertySet() 149 public static final CodePointMap getIntPropertyMap(int property) { in getIntPropertyMap()
|
/external/icu/android_icu4j/src/main/java/android/icu/lang/ |
D | CharacterProperties.java | 32 private static UnicodeSet makeSet(int property) { in makeSet() 61 private static CodePointMap makeMap(int property) { in makeMap() 118 public static final UnicodeSet getBinaryPropertySet(int property) { in getBinaryPropertySet() 148 public static final CodePointMap getIntPropertyMap(int property) { in getIntPropertyMap()
|
/external/icu/icu4c/source/common/ |
D | propname.cpp | 148 int32_t PropNameData::findProperty(int32_t property) { in findProperty() 239 const char *PropNameData::getPropertyName(int32_t property, int32_t nameChoice) { in getPropertyName() 247 const char *PropNameData::getPropertyValueName(int32_t property, int32_t value, int32_t nameChoice)… in getPropertyValueName() 272 int32_t PropNameData::getPropertyValueEnum(int32_t property, const char *alias) { in getPropertyValueEnum() 291 u_getPropertyName(UProperty property, in u_getPropertyName() 304 u_getPropertyValueName(UProperty property, in u_getPropertyValueName() 312 u_getPropertyValueEnum(UProperty property, in u_getPropertyValueEnum()
|
/external/dtc/tests/ |
D | stringlist.c | 32 const char *property) in check_expected_failure() 71 const char *property, int count) in check_string_count() 90 const char *property, const char *string, in check_string_index() 107 const char *property, int idx, in check_string()
|
/external/javaparser/javaparser-core-generators/src/main/java/com/github/javaparser/generator/core/node/ |
D | RemoveMethodGenerator.java | 61 private String attributeCheck(PropertyMetaModel property, String removeAttributeMethodName) { in attributeCheck() 68 private String nodeListCheck(PropertyMetaModel property) { in nodeListCheck() 77 …lassOrInterfaceDeclaration nodeCoid, BaseNodeMetaModel nodeMetaModel, PropertyMetaModel property) { in generateRemoveMethodForAttribute()
|
/external/u-boot/include/dm/ |
D | of.h | 24 struct property { struct 28 struct property *next; argument
|
/external/jacoco/org.jacoco.ant/src/org/jacoco/ant/ |
D | AgentTask.java | 22 private String property; field in AgentTask 30 public void setProperty(final String property) { in setProperty()
|
/external/grpc-grpc/src/cpp/common/ |
D | secure_auth_context.cc | 39 const grpc_auth_property* property = nullptr; in GetPeerIdentity() local 62 const grpc_auth_property* property = nullptr; in FindPropertyValues() local 74 const grpc_auth_property* property = in begin() local
|
/external/v8/tools/ |
D | detect-builtins.js | 30 var property = { "name": name }; variable in anonymousFunctionfcde35a90100.GetProperties 42 property.prototype = GetProperties("prototype", value.prototype); class
|
/external/pdfium/fxjs/ |
D | cjs_global.cpp | 26 v8::Local<v8::String> property) { in PropFromV8Prop() 33 v8::Local<v8::String> property, in JSSpecialPropQuery() 53 v8::Local<v8::String> property, in JSSpecialPropGet() 80 v8::Local<v8::String> property, in JSSpecialPropPut() 104 v8::Local<v8::String> property, in JSSpecialPropDel() 192 v8::Local<v8::String> property, in queryprop_static() 199 v8::Local<v8::String> property, in getprop_static() 206 v8::Local<v8::String> property, in putprop_static() 214 v8::Local<v8::String> property, in delprop_static()
|
/external/robolectric-shadows/annotations/src/main/java/org/robolectric/annotation/internal/ |
D | ConfigUtils.java | 9 public static String[] parseStringArrayProperty(String property) { in parseStringArrayProperty() 14 public static int[] parseSdkArrayProperty(String property) { in parseSdkArrayProperty()
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/ |
D | MethodProperty.java | 33 private final PropertyDescriptor property; field in MethodProperty 37 public MethodProperty(PropertyDescriptor property) { in MethodProperty()
|