/art/tools/class2greylist/src/com/android/class2greylist/ |
D | UnsupportedAppUsageAnnotationHandler.java | 98 for (ElementValuePair property : annotation.getElementValuePairs()) { in handleAnnotation() 99 switch (property.getNameString()) { in handleAnnotation() 101 String expected = property.getValue().stringifyValue(); in handleAnnotation() 111 if (property.getValue().getElementValueType() != ElementValue.PRIMITIVE_INT) { in handleAnnotation() 113 property.getNameString(), in handleAnnotation() 114 property.getValue().getElementValueType()); in handleAnnotation() 118 maxTargetSdk = ((SimpleElementValue) property.getValue()).getValueInt(); in handleAnnotation() 121 implicitMemberSignature = property.getValue().stringifyValue(); in handleAnnotation()
|
D | RepeatedAnnotationHandler.java | 49 for (ElementValuePair property : a.getElementValuePairs()) { in findValue() 50 if (property.getNameString().equals(VALUE)) { in findValue() 51 return property; in findValue()
|
D | CovariantReturnTypeHandler.java | 96 for (ElementValuePair property : a.getElementValuePairs()) { in findReturnType() 97 if (property.getNameString().equals(RETURN_TYPE)) { in findReturnType() 98 return property.getValue().stringifyValue(); in findReturnType()
|
/art/openjdkjvmti/ |
D | ti_properties.h | 44 static jvmtiError GetSystemProperty(jvmtiEnv* env, const char* property, char** value_ptr); 46 static jvmtiError SetSystemProperty(jvmtiEnv* env, const char* property, const char* value);
|
D | ti_properties.cc | 206 const char* property, in GetSystemProperty() argument 208 if (property == nullptr || value_ptr == nullptr) { in GetSystemProperty() 212 if (strcmp(property, kPropertyLibraryPath) == 0) { in GetSystemProperty() 216 if (strcmp(property, kPropertyClassPath) == 0) { in GetSystemProperty() 221 if (strcmp(property, kProperties[i][0]) == 0) { in GetSystemProperty() 230 const char* property ATTRIBUTE_UNUSED, in SetSystemProperty()
|
D | OpenjdkJvmTi.cc | 1291 static jvmtiError GetSystemProperty(jvmtiEnv* env, const char* property, char** value_ptr) { in GetSystemProperty() argument 1293 return PropertiesUtil::GetSystemProperty(env, property, value_ptr); in GetSystemProperty() 1296 static jvmtiError SetSystemProperty(jvmtiEnv* env, const char* property, const char* value) { in SetSystemProperty() argument 1298 return PropertiesUtil::SetSystemProperty(env, property, value); in SetSystemProperty()
|
/art/tools/jfuzz/ |
D | run_jfuzz_test.py | 88 @property 156 @property 160 @property 214 @property 218 @property 238 @property 242 @property 308 @property 312 @property 333 @property [all …]
|
/art/tools/jvmti-agents/wrapagentproperties/ |
D | README.md | 22 The property file is a text file containing the values of java properties you 23 wish to override. The format is property=value on each line. Blank lines and
|
/art/test/922-properties/ |
D | expected.txt | 54 Non-specified property: 57 Non-specified property (2):
|
/art/test/005-annotations/src/android/test/anno/ |
D | TestAnnotations.java | 139 ExportedProperty property; in testArrayProblem() local 147 property = meth.getAnnotation(ExportedProperty.class); in testArrayProblem() 148 mapping = property.mapping(); in testArrayProblem()
|
/art/tools/checker/file_format/c1visualizer/ |
D | struct.py | 53 @property
|
/art/tools/checker/file_format/checker/ |
D | struct.py | 54 @property 91 @property
|
/art/tools/common/ |
D | common.py | 66 @property 345 @property 474 @property
|
/art/test/675-checker-unverified-method/smali/ |
D | TestCase.smali | 20 # Ensure foo() does not analyze unverified bad() always-throws property.
|
/art/compiler/optimizing/ |
D | graph_visualizer.cc | 218 void PrintProperty(const char* name, const char* property) { in PrintProperty() argument 220 output_ << name << " \"" << property << "\"\n"; in PrintProperty() 223 void PrintProperty(const char* name, const char* property, int id) { in PrintProperty() argument 225 output_ << name << " \"" << property << id << "\"\n"; in PrintProperty()
|
/art/openjdkjvmti/include/ |
D | jvmti.h | 1672 const char* property, 1677 const char* property, 2481 jvmtiError GetSystemProperty(const char* property, in GetSystemProperty() 2483 return functions->GetSystemProperty(this, property, value_ptr); in GetSystemProperty() 2486 jvmtiError SetSystemProperty(const char* property, in SetSystemProperty() 2488 return functions->SetSystemProperty(this, property, value); in SetSystemProperty()
|