Home
last modified time | relevance | path

Searched refs:propertyName (Results 1 – 25 of 121) sorted by relevance

12345

/external/testng/src/main/java/org/testng/internal/
DConstants.java48 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 …]
DPropertyUtils.java38 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/
DProperties.java34 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/
DProperties.java32 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/
DUnicodePropertySymbolTable.java52 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 …]
DRandomStringGenerator.java47 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/
Dwebgl-debug.js164 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/
DFeatureEnumTest.java53 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/
DFieldDescriptor.cs46 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/
DAnnotationInfo.java73 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/
DNames.java58 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/
DAbstractAgentMojo.java52 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/
DUnicodeSetBuilder.java96 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/
Dhibernate-annotations.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hibernate/ org/ ...
Dognl-2.6.7.jarMETA-INF/ META-INF/MANIFEST.MF ognl/ ognl/ASTAdd.class ASTAdd ...
Dhibernate3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hibernate/ org/ ...
/external/emma/core/java12/com/vladium/util/exception/
DExceptionCommon.java373 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/
DAuthContext.cs103 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/
DCssSchema.java95 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()
DStylingPolicy.java95 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/
Dspring-beans.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/springframework/ org/ ...
/external/guice/extensions/struts2/lib/
Dognl-3.0.jarMETA-INF/ META-INF/MANIFEST.MF ognl/ ognl/enhance/ ognl/ ...
/external/v8/src/inspector/
Dv8-value-utils.cc83 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/
Ddokka-gradle-plugin-0.9.17-g20190326.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/gradle-plugin. ...
/external/clang/test/SemaObjC/
Dproperty-in-class-extension-1.m52 @property (nonatomic, atomic, readonly) float propertyName; // expected-error {{property attributes… property
58 @property (atomic, nonatomic, readonly, readwrite) float propertyName; // expected-error {{property…

12345