/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/ |
D | DimResultsElement.java | 18 import org.eclipse.ui.views.properties.PropertyDescriptor; 41 …private static final PropertyDescriptor DIM_COUNT_DESCRIPTOR = new PropertyDescriptor(P_ID_COUNT, … 42 …private static final PropertyDescriptor DIM_AVERAGE_DESCRIPTOR = new PropertyDescriptor(P_ID_AVERA… 43 …private static final PropertyDescriptor DIM_STDDEV_DESCRIPTOR = new PropertyDescriptor(P_ID_STDDEV… 44 …private static final PropertyDescriptor DIM_ERROR_DESCRIPTOR = new PropertyDescriptor(P_ID_ERROR, … 45 …private static final PropertyDescriptor DIM_HAD_VALUES_DESCRIPTOR = new PropertyDescriptor(P_ID_HA…
|
D | BuildResultsElement.java | 23 import org.eclipse.ui.views.properties.PropertyDescriptor; 52 …private static final PropertyDescriptor BUILD_IS_BASELINE_DESCRIPTOR = new PropertyDescriptor(P_ID… 53 …private static final PropertyDescriptor BUILD_BASELINE_DESCRIPTOR = new PropertyDescriptor(P_ID_BU… 55 …private static final PropertyDescriptor BUILD_TEST_DELTA_DESCRIPTOR = new PropertyDescriptor(P_ID_… 56 …private static final PropertyDescriptor BUILD_TEST_ERROR_DESCRIPTOR = new PropertyDescriptor(P_ID_… 57 …private static final PropertyDescriptor BUILD_STUDENTS_TTEST_DESCRIPTOR = new PropertyDescriptor(P… 107 static PropertyDescriptor getWarningsDescriptor(int status) { in getWarningsDescriptor()
|
D | ConfigResultsElement.java | 22 import org.eclipse.ui.views.properties.PropertyDescriptor; 51 …private static final PropertyDescriptor CONFIG_CURRENT_BUILD_DESCRIPTOR = new PropertyDescriptor(P… 52 …private static final PropertyDescriptor CONFIG_BASELINE_BUILD_DESCRIPTOR = new PropertyDescriptor(… 53 …private static final PropertyDescriptor CONFIG_BASELINED_DESCRIPTOR = new PropertyDescriptor(P_ID_… 54 …private static final PropertyDescriptor CONFIG_VALID_DESCRIPTOR = new PropertyDescriptor(P_ID_CONF… 55 …private static final PropertyDescriptor CONFIG_DELTA_DESCRIPTOR = new PropertyDescriptor(P_ID_CONF… 56 …private static final PropertyDescriptor CONFIG_ERROR_DESCRIPTOR = new PropertyDescriptor(P_ID_CONF… 104 static PropertyDescriptor getWarningsDescriptor(int status) { in getWarningsDescriptor()
|
D | ComponentResultsElement.java | 28 import org.eclipse.ui.views.properties.PropertyDescriptor; 43 …private static final PropertyDescriptor CURRENT_BUILD_DESCRIPTOR = new PropertyDescriptor(P_ID_CUR… 44 …private static final PropertyDescriptor BASELINE_BUILD_DESCRIPTOR = new PropertyDescriptor(P_ID_BA…
|
D | ResultsElement.java | 35 import org.eclipse.ui.views.properties.PropertyDescriptor; 135 static PropertyDescriptor getWarningsDescriptor(int status) { in getWarningsDescriptor()
|
/external/v8/src/ |
D | property-descriptor.h | 19 class PropertyDescriptor { 21 PropertyDescriptor() in PropertyDescriptor() function 30 static bool IsAccessorDescriptor(PropertyDescriptor* desc) { in IsAccessorDescriptor() 35 static bool IsDataDescriptor(PropertyDescriptor* desc) { in IsDataDescriptor() 40 static bool IsGenericDescriptor(PropertyDescriptor* desc) { in IsGenericDescriptor() 49 PropertyDescriptor* desc); 53 PropertyDescriptor* desc);
|
D | property-descriptor.cc | 41 PropertyDescriptor* desc) { in ToPropertyDescriptorFastPath() 113 Handle<Object> PropertyDescriptor::ToObject(Isolate* isolate) { in ToObject() 114 DCHECK(!(PropertyDescriptor::IsAccessorDescriptor(this) && in ToObject() 115 PropertyDescriptor::IsDataDescriptor(this))); in ToObject() 146 bool PropertyDescriptor::ToPropertyDescriptor(Isolate* isolate, in ToPropertyDescriptor() 148 PropertyDescriptor* desc) { in ToPropertyDescriptor() 258 void PropertyDescriptor::CompletePropertyDescriptor(Isolate* isolate, in CompletePropertyDescriptor() 259 PropertyDescriptor* desc) { in CompletePropertyDescriptor()
|
D | objects.cc | 873 PropertyDescriptor target_desc; in GetProperty() 883 bool inconsistent = PropertyDescriptor::IsDataDescriptor(&target_desc) && in GetProperty() 896 inconsistent = PropertyDescriptor::IsAccessorDescriptor(&target_desc) && in GetProperty() 4225 PropertyDescriptor desc; in SetSuperProperty() 4233 if (PropertyDescriptor::IsAccessorDescriptor(&desc) || in SetSuperProperty() 4239 PropertyDescriptor value_desc; in SetSuperProperty() 4884 PropertyDescriptor target_desc; in HasProperty() 4955 PropertyDescriptor target_desc; in SetProperty() 4960 bool inconsistent = PropertyDescriptor::IsDataDescriptor(&target_desc) && in SetProperty() 4969 inconsistent = PropertyDescriptor::IsAccessorDescriptor(&target_desc) && in SetProperty() [all …]
|
D | key-accumulator.cc | 236 PropertyDescriptor desc; in FilterProxyKeys()
|
D | objects.h | 852 class PropertyDescriptor; variable 1862 PropertyDescriptor* desc, ShouldThrow should_throw); 1871 PropertyDescriptor* desc, ShouldThrow should_throw); 1873 LookupIterator* it, PropertyDescriptor* desc, ShouldThrow should_throw); 1876 Isolate* isolate, bool extensible, PropertyDescriptor* desc, 1877 PropertyDescriptor* current, Handle<Name> property_name, 1884 PropertyDescriptor* desc, PropertyDescriptor* current, 1889 PropertyDescriptor* desc); 1891 LookupIterator* it, PropertyDescriptor* desc); 9592 PropertyDescriptor* desc); [all …]
|
/external/testng/src/main/java/org/testng/internal/ |
D | PropertyUtils.java | 8 import java.beans.PropertyDescriptor; 42 PropertyDescriptor propDesc = getPropertyDescriptor(instanceClass, propertyName); in getPropertyType() 46 private static PropertyDescriptor getPropertyDescriptor(Class targetClass, String propertyName) { in getPropertyDescriptor() 47 PropertyDescriptor result = null; in getPropertyDescriptor() 53 PropertyDescriptor[] propDescriptors = beanInfo.getPropertyDescriptors(); in getPropertyDescriptor() 54 for (PropertyDescriptor propDesc : propDescriptors) { in getPropertyDescriptor() 73 PropertyDescriptor propDesc = getPropertyDescriptor(instance.getClass(), name); in setPropertyRealValue()
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/beans/ |
D | BeanCopier.java | 18 import java.beans.PropertyDescriptor; 108 PropertyDescriptor[] getters = ReflectUtils.getBeanGetters(source); in generateClass() 109 PropertyDescriptor[] setters = ReflectUtils.getBeanGetters(target); in generateClass() 131 PropertyDescriptor setter = setters[i]; in generateClass() 132 PropertyDescriptor getter = (PropertyDescriptor)names.get(setter.getName()); in generateClass() 160 private static boolean compatible(PropertyDescriptor getter, PropertyDescriptor setter) { in compatible()
|
D | BeanMapEmitter.java | 80 private Map makePropertyMap(PropertyDescriptor[] props) { in makePropertyMap() 83 names.put(((PropertyDescriptor)props[i]).getName(), props[i]); in makePropertyMap() 109 PropertyDescriptor pd = (PropertyDescriptor)getters.get(key); in generateGet() 131 PropertyDescriptor pd = (PropertyDescriptor)setters.get(key); in generatePut() 182 PropertyDescriptor pd = (PropertyDescriptor)allProps.get(key); in generateGetPropertyType()
|
D | ImmutableBean.java | 18 import java.beans.PropertyDescriptor; 92 PropertyDescriptor[] descriptors = ReflectUtils.getBeanProperties(target); in generateClass()
|
D | BeanGenerator.java | 18 import java.beans.PropertyDescriptor; 140 public static void addProperties(BeanGenerator gen, PropertyDescriptor[] descriptors) { in addProperties()
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/ |
D | PropertyDescriptorEditorProvider.java | 13 import java.beans.PropertyDescriptor; 29 public PropertyEditor getEditorForPropertyDescriptor(PropertyDescriptor descriptor) in getEditorForPropertyDescriptor() 49 private static boolean isEnumerationProperty(PropertyDescriptor descriptor) { in isEnumerationProperty()
|
D | PropertyEditorProvider.java | 13 import java.beans.PropertyDescriptor; 40 public PropertyEditor getEditorForPropertyDescriptor(PropertyDescriptor descriptor) in getEditorForPropertyDescriptor()
|
D | EnumerationValuesPropertyEditor.java | 18 import java.beans.PropertyDescriptor;
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/ |
D | MethodProperty.java | 18 import java.beans.PropertyDescriptor; 33 private final PropertyDescriptor property; 37 public MethodProperty(PropertyDescriptor property) { in MethodProperty()
|
D | PropertyUtils.java | 20 import java.beans.PropertyDescriptor; 63 for (PropertyDescriptor property : Introspector.getBeanInfo(type) in getPropertiesMap()
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/ |
D | ReflectUtils.java | 280 …public static Method[] getPropertyMethods(PropertyDescriptor[] properties, boolean read, boolean w… in getPropertyMethods() 283 PropertyDescriptor pd = properties[i]; in getPropertyMethods() 295 public static PropertyDescriptor[] getBeanProperties(Class type) { in getBeanProperties() 299 public static PropertyDescriptor[] getBeanGetters(Class type) { in getBeanGetters() 303 public static PropertyDescriptor[] getBeanSetters(Class type) { in getBeanSetters() 307 … private static PropertyDescriptor[] getPropertiesHelper(Class type, boolean read, boolean write) { in getPropertiesHelper() 310 PropertyDescriptor[] all = info.getPropertyDescriptors(); in getPropertiesHelper() 316 PropertyDescriptor pd = all[i]; in getPropertiesHelper() 322 … return (PropertyDescriptor[])properties.toArray(new PropertyDescriptor[properties.size()]); in getPropertiesHelper()
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/generics/ |
D | GenericsBugDetector.java | 20 import java.beans.PropertyDescriptor; 31 for (PropertyDescriptor property : Introspector.getBeanInfo(Bird.class) in isProperIntrospection()
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/introspector/ |
D | MethodPropertyTest.java | 20 import java.beans.PropertyDescriptor; 29 for (PropertyDescriptor property : Introspector.getBeanInfo(TestBean1.class) in testToString()
|
/external/v8/src/js/ |
D | v8natives.js | 171 var desc = new PropertyDescriptor(); 196 var desc = new PropertyDescriptor(); 270 var desc = new PropertyDescriptor(); 327 function PropertyDescriptor() { class 344 utils.SetUpLockedPrototype(PropertyDescriptor, [ 433 var desc = new PropertyDescriptor();
|
/external/snakeyaml/src/patches/android/ |
D | PropertyUtils.patch | 12 -import java.beans.PropertyDescriptor; 51 - for (PropertyDescriptor property : Introspector.getBeanInfo(type)
|