/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()
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/util/ |
D | Properties.java | 34 public static boolean isOverrideSet(String propertyName) in isOverrideSet() argument 38 String p = fetchProperty(propertyName); in isOverrideSet() 60 public static boolean setThreadOverride(String propertyName, boolean enable) in setThreadOverride() argument 62 boolean isSet = isOverrideSet(propertyName); in setThreadOverride() 70 localProps.put(propertyName, enable ? "true" : "false"); in setThreadOverride() 83 public static boolean removeThreadOverride(String propertyName) in removeThreadOverride() argument 85 boolean isSet = isOverrideSet(propertyName); in removeThreadOverride() 93 localProps.remove(propertyName); in removeThreadOverride() 107 public static BigInteger asBigInteger(String propertyName) in asBigInteger() argument 109 String p = fetchProperty(propertyName); in asBigInteger() [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/ |
D | Properties.java | 32 public static boolean isOverrideSet(String propertyName) in isOverrideSet() argument 36 String p = fetchProperty(propertyName); in isOverrideSet() 58 public static boolean setThreadOverride(String propertyName, boolean enable) in setThreadOverride() argument 60 boolean isSet = isOverrideSet(propertyName); in setThreadOverride() 68 localProps.put(propertyName, enable ? "true" : "false"); in setThreadOverride() 81 public static boolean removeThreadOverride(String propertyName) in removeThreadOverride() argument 83 boolean isSet = isOverrideSet(propertyName); in removeThreadOverride() 91 localProps.remove(propertyName); in removeThreadOverride() 105 public static BigInteger asBigInteger(String propertyName) in asBigInteger() argument 107 String p = fetchProperty(propertyName); in asBigInteger() [all …]
|
/external/cldr/tools/java/org/unicode/cldr/util/props/ |
D | UnicodePropertySymbolTable.java | 52 public boolean applyPropertyAlias(String propertyName, in applyPropertyAlias() argument 56 int posNotEqual = propertyName.indexOf('\u2260'); in applyPropertyAlias() 57 int posColon = propertyName.indexOf(':'); in applyPropertyAlias() 59 if (posNotEqual < 0) posNotEqual = propertyName.length(); in applyPropertyAlias() 60 if (posColon < 0) posColon = propertyName.length(); in applyPropertyAlias() 62 propertyValue = propertyValue.length() == 0 ? propertyName.substring(opPos+1) in applyPropertyAlias() 63 : propertyName.substring(opPos+1) + "=" + propertyValue; in applyPropertyAlias() 64 propertyName = propertyName.substring(0,opPos); in applyPropertyAlias() 69 if (propertyName.endsWith("!")) { in applyPropertyAlias() 70 propertyName = propertyName.substring(0, propertyName.length() - 1); in applyPropertyAlias() [all …]
|
D | RandomStringGenerator.java | 47 public RandomStringGenerator(UnicodeProperty.Factory factory, String propertyName) { in RandomStringGenerator() argument 48 this(factory, propertyName, false, false); in RandomStringGenerator() 51 …public RandomStringGenerator(UnicodeProperty.Factory factory, String propertyName, boolean useShor… in RandomStringGenerator() argument 53 this(factory, factory.getProperty(propertyName).getUnicodeMap(), in RandomStringGenerator() 54 … useShortName ? ICUPropertyFactory.make().getProperty(propertyName).getUnicodeMap(true) : null, in RandomStringGenerator()
|
/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/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/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/processors/ |
D | AnnotationInfo.java | 73 public Class<?> getPropertyType(String propertyName) { in getPropertyType() argument 74 Class<?> type = propertyTypes.get(propertyName); in getPropertyType() 77 String.format("Unknown property: %s in %s", propertyName, name)); in getPropertyType()
|
/external/guice/core/src/com/google/inject/name/ |
D | Names.java | 58 String propertyName = (String) e.nextElement(); in bindProperties() local 59 String value = properties.getProperty(propertyName); in bindProperties() 60 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 | 52 String propertyName; field in AbstractAgentMojo 218 return propertyName; in getEffectivePropertyName() 227 return propertyName != null && !"".equals(propertyName); in isPropertyNameSpecified()
|
/external/cldr/tools/java/org/unicode/cldr/draft/ |
D | UnicodeSetBuilder.java | 96 private String propertyName; field in UnicodeSetBuilder.MyObjectBuilder 153 propertyName = string.toString().substring(lastPosition + 2, position); in handle() 154 propSet = new UnicodeSet().applyPropertyAlias(propertyName, "", null); in handle() 161 propertyName = string.toString().substring(lastPosition + 2, position); in handle() 168 propSet = new UnicodeSet().applyPropertyAlias(propertyName, valueName, null); in handle()
|
/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/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/grpc-grpc/src/csharp/Grpc.Core/ |
D | AuthContext.cs | 103 public IEnumerable<AuthProperty> FindPropertiesByName(string propertyName) in FindPropertiesByName() argument 106 if (!properties.TryGetValue(propertyName, out result)) in FindPropertiesByName()
|
/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/v8/src/inspector/ |
D | v8-value-utils.cc | 83 v8::Local<v8::String> propertyName; in toProtocolValue() local 84 if (!name->ToString(context).ToLocal(&propertyName)) continue; in toProtocolValue() 94 toProtocolString(context->GetIsolate(), propertyName), in toProtocolValue()
|
/external/dokka/maven/org/jetbrains/dokka/dokka-gradle-plugin/0.9.17-g20190326/ |
D | dokka-gradle-plugin-0.9.17-g20190326.jar | META-INF/
META-INF/MANIFEST.MF
META-INF/gradle-plugin. ... |
/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…
|