Home
last modified time | relevance | path

Searched refs:property (Results 1 – 16 of 16) sorted by relevance

/art/tools/class2greylist/src/com/android/class2greylist/
DUnsupportedAppUsageAnnotationHandler.java98 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()
DRepeatedAnnotationHandler.java49 for (ElementValuePair property : a.getElementValuePairs()) { in findValue()
50 if (property.getNameString().equals(VALUE)) { in findValue()
51 return property; in findValue()
DCovariantReturnTypeHandler.java96 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/
Dti_properties.h44 static jvmtiError GetSystemProperty(jvmtiEnv* env, const char* property, char** value_ptr);
46 static jvmtiError SetSystemProperty(jvmtiEnv* env, const char* property, const char* value);
Dti_properties.cc206 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()
DOpenjdkJvmTi.cc1291 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/
Drun_jfuzz_test.py88 @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/
DREADME.md22 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/
Dexpected.txt54 Non-specified property:
57 Non-specified property (2):
/art/test/005-annotations/src/android/test/anno/
DTestAnnotations.java139 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/
Dstruct.py53 @property
/art/tools/checker/file_format/checker/
Dstruct.py54 @property
91 @property
/art/tools/common/
Dcommon.py66 @property
345 @property
474 @property
/art/test/675-checker-unverified-method/smali/
DTestCase.smali20 # Ensure foo() does not analyze unverified bad() always-throws property.
/art/compiler/optimizing/
Dgraph_visualizer.cc218 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/
Djvmti.h1672 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()