/external/testng/src/main/java/org/testng/internal/ |
D | Constants.java | 48 private static TestNGProperty getProperty(String propertyName) { in getProperty() argument 49 TestNGProperty result = m_propertiesByName.get(propertyName); in getProperty() 50 assert null != result : "Unknown property : " + propertyName; in getProperty() 55 public static String getPropertyValue(Properties p, String propertyName) { in getPropertyValue() argument 56 TestNGProperty r= getProperty(propertyName); in getPropertyValue() 57 assert null != r : "Unknown property : " + propertyName; in getPropertyValue() 64 public static boolean getBooleanPropertyValue(Properties properties, String propertyName) { in getBooleanPropertyValue() argument 65 TestNGProperty p = getProperty(propertyName); in getBooleanPropertyValue() 66 String r = properties.getProperty(propertyName, p.getDefault()); in getBooleanPropertyValue() 72 public static int getIntegerPropertyValue(Properties properties, String propertyName) { in getIntegerPropertyValue() argument [all …]
|
D | PropertyUtils.java | 38 public Class getPropertyType(Class instanceClass, String propertyName) { in getPropertyType() argument 40 …LOGGER.warn("Cannot retrieve property class for " + propertyName + ". Target instance class is nul… in getPropertyType() 42 PropertyDescriptor propDesc = getPropertyDescriptor(instanceClass, propertyName); in getPropertyType() 46 private static PropertyDescriptor getPropertyDescriptor(Class targetClass, String propertyName) { in getPropertyDescriptor() argument 49 LOGGER.warn("Cannot retrieve property " + propertyName + ". Class is null"); in getPropertyDescriptor() 55 if (propDesc.getName().equals(propertyName)) { in getPropertyDescriptor() 61 LOGGER.warn("Cannot retrieve property " + propertyName + ". Cause is: " + ie); in getPropertyDescriptor()
|
D | IPropertyUtils.java | 25 public Class getPropertyType(Class instanceClass, String propertyName); in getPropertyType() argument
|
D | PropertyUtilsMock.java | 29 public Class getPropertyType(Class instanceClass, String propertyName) { in getPropertyType() argument
|
/external/autotest/client/deps/webgl_mpd/src/debug/ |
D | webgl-debug.js | 164 for (var propertyName in ctx) { 165 if (typeof ctx[propertyName] == 'number') { 166 glEnums[ctx[propertyName]] = propertyName; 255 function makePropertyWrapper(wrapper, original, propertyName) { argument 257 wrapper.__defineGetter__(propertyName, function() { 258 return original[propertyName]; 262 wrapper.__defineSetter__(propertyName, function(value) { 264 original[propertyName] = value; 331 for (var propertyName in ctx) { 332 if (typeof ctx[propertyName] == 'function') { [all …]
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/util/ |
D | PropertiesHelper.java | 20 String propertyName = variableMatcher.group(2); in doSingleSubstitution() local 23 propertyValue = properties.getProperty(propertyName); in doSingleSubstitution() 26 propertyValue = System.getProperty(propertyName); in doSingleSubstitution() 44 String propertyName = (String) propertyNames.nextElement(); in doSubstitutions() local 45 String propertyValue = properties.getProperty(propertyName); in doSubstitutions() 47 properties.setProperty(propertyName, expandedPropertyValue); in doSubstitutions()
|
/external/guava/guava-testlib/test/com/google/common/collect/testing/features/ |
D | FeatureEnumTest.java | 53 for (String propertyName : new String[]{"value", "absent"}) { in assertGoodTesterAnnotation() 56 method = annotationClass.getMethod(propertyName); in assertGoodTesterAnnotation() 59 annotationClass, propertyName)); in assertGoodTesterAnnotation() 63 annotationClass, propertyName), in assertGoodTesterAnnotation() 66 annotationClass, propertyName, annotationClass.getDeclaringClass()), in assertGoodTesterAnnotation()
|
/external/protobuf/csharp/src/Google.Protobuf/Reflection/ |
D | FieldDescriptor.cs | 46 private readonly string propertyName; // Annoyingly, needed in Crosslink. field in Google.Protobuf.Reflection.FieldDescriptor 68 MessageDescriptor parent, int index, string propertyName) in FieldDescriptor() argument 99 this.propertyName = propertyName; in FieldDescriptor() 329 if (propertyName == null) in CreateAccessor() 333 var property = ContainingType.ClrType.GetProperty(propertyName); in CreateAccessor()
|
/external/guice/core/src/com/google/inject/name/ |
D | Names.java | 65 String propertyName = (String) e.nextElement(); in bindProperties() local 66 String value = properties.getProperty(propertyName); in bindProperties() 67 binder.bind(Key.get(String.class, new NamedImpl(propertyName))).toInstance(value); in bindProperties()
|
/external/jacoco/jacoco-maven-plugin/src/org/jacoco/maven/ |
D | AbstractAgentMojo.java | 55 String propertyName; field in AbstractAgentMojo 219 return propertyName; in getEffectivePropertyName() 228 return propertyName != null && !"".equals(propertyName); in isPropertyNameSpecified()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/ |
D | Properties.java | 12 public static boolean isOverrideSet(final String propertyName) in isOverrideSet() argument 21 String value = System.getProperty(propertyName); in isOverrideSet()
|
/external/guice/extensions/persist/lib/ |
D | hibernate-annotations.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/hibernate/
org/ ... |
D | ognl-2.6.7.jar | META-INF/
META-INF/MANIFEST.MF
ognl/
ognl/ASTAdd.class
ASTAdd ... |
D | hibernate3.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/hibernate/
org/ ... |
/external/conscrypt/openjdk/src/main/java/org/conscrypt/ |
D | Platform.java | 372 String propertyName = "conscrypt.ct.enforce"; in isCTVerificationRequired() local 376 property = Security.getProperty(propertyName + ".*"); in isCTVerificationRequired() 381 propertyName = propertyName + "." + part; in isCTVerificationRequired() 384 property = Security.getProperty(propertyName); in isCTVerificationRequired()
|
/external/emma/core/java12/com/vladium/util/exception/ |
D | ExceptionCommon.java | 373 private static String lookup (Class namespace, final String propertyName) in lookup() argument 375 if (propertyName == null) return null; in lookup() 406 propertyValue = rb.getString (propertyName); in lookup() 423 propertyValue = ROOT_RESOURCE_BUNDLE.getString (propertyName); in lookup()
|
/external/owasp/sanitizer/src/main/org/owasp/html/ |
D | CssSchema.java | 95 for (String propertyName : propertyNames) { in withProperties() 96 Property prop = DEFINITIONS.get(propertyName); in withProperties() 97 if (prop == null) { throw new IllegalArgumentException(propertyName); } in withProperties() 98 propertiesBuilder.put(propertyName, prop); in withProperties() 128 Property forKey(String propertyName) { in forKey() argument 129 propertyName = Strings.toLowerCase(propertyName); in forKey() 130 Property property = properties.get(propertyName); in forKey() 132 int n = propertyName.length(); in forKey() 133 if (n != 0 && propertyName.charAt(0) == '-') { in forKey() 134 String barePropertyName = stripVendorPrefix(propertyName); in forKey()
|
D | StylingPolicy.java | 95 public void startProperty(String propertyName) { in sanitizeCssProperties() 97 cssProperty = cssSchema.forKey(propertyName); in sanitizeCssProperties() 103 sanitizedCss.append(propertyName).append(':'); in sanitizeCssProperties()
|
/external/guice/lib/build/ |
D | spring-beans.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/springframework/
org/ ... |
/external/guice/extensions/struts2/lib/ |
D | ognl-3.0.jar | META-INF/
META-INF/MANIFEST.MF
ognl/
ognl/enhance/
ognl/ ... |
/external/clang/test/SemaObjC/ |
D | property-in-class-extension-1.m | 52 @property (nonatomic, atomic, readonly) float propertyName; // expected-error {{property attributes… property 58 @property (atomic, nonatomic, readonly, readwrite) float propertyName; // expected-error {{property…
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/ |
D | PerformancesView.java | 509 String propertyName = event.getKey(); in preferenceChange() local 513 if (propertyName.equals(IPerformancesConstants.PRE_ECLIPSE_VERSION)) { in preferenceChange() 522 if (propertyName.equals(IPerformancesConstants.PRE_DATABASE_LOCATION)) { in preferenceChange() 530 if (propertyName.equals(IPerformancesConstants.PRE_DATABASE_CONNECTION)) { in preferenceChange() 539 if (propertyName.equals(IPerformancesConstants.PRE_LAST_BUILD)) { in preferenceChange()
|
D | ComponentResultsView.java | 291 String propertyName = event.getKey(); in preferenceChange() local 295 if (propertyName.equals(IPerformancesConstants.PRE_FILTER_ADVANCED_SCENARIOS)) { in preferenceChange() 302 if (propertyName.equals(IPerformancesConstants.PRE_FILTER_OLD_BUILDS)) { in preferenceChange() 309 if (propertyName.equals(IPerformancesConstants.PRE_FILTER_NIGHTLY_BUILDS)) { in preferenceChange()
|
D | ComponentsView.java | 353 String propertyName = event.getKey(); in preferenceChange() local 357 if (propertyName.equals(IPerformancesConstants.PRE_FILTER_ADVANCED_SCENARIOS)) { in preferenceChange() 364 if (propertyName.equals(IPerformancesConstants.PRE_FILTER_OLD_BUILDS)) { in preferenceChange() 371 if (propertyName.equals(IPerformancesConstants.PRE_WRITE_STATUS)) { in preferenceChange()
|
/external/conscrypt/android/src/main/java/org/conscrypt/ |
D | Platform.java | 765 String propertyName = "conscrypt.ct.enforce"; in isCTVerificationRequired() local 769 property = Security.getProperty(propertyName + ".*"); in isCTVerificationRequired() 774 propertyName = propertyName + "." + part; in isCTVerificationRequired() 777 property = Security.getProperty(propertyName); in isCTVerificationRequired()
|