Home
last modified time | relevance | path

Searched refs:propertyName (Results 1 – 25 of 107) 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()
DIPropertyUtils.java25 public Class getPropertyType(Class instanceClass, String propertyName); in getPropertyType() argument
DPropertyUtilsMock.java29 public Class getPropertyType(Class instanceClass, String propertyName) { in getPropertyType() argument
/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/robolectric/v1/src/main/java/com/xtremelabs/robolectric/util/
DPropertiesHelper.java20 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/
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/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
DProperties.java16 public static boolean isOverrideSet(final String propertyName) in isOverrideSet() argument
25 String value = System.getProperty(propertyName); in isOverrideSet()
41 public static Set<String> asKeySet(final String propertyName)
44 String p = System.getProperty(propertyName);
/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/guice/core/src/com/google/inject/name/
DNames.java65 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/
DAbstractAgentMojo.java52 String propertyName; field in AbstractAgentMojo
218 return propertyName; in getEffectivePropertyName()
227 return propertyName != null && !"".equals(propertyName); in isPropertyNameSpecified()
/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/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/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/guice/extensions/struts2/lib/
Dognl-3.0.jarMETA-INF/ META-INF/MANIFEST.MF ognl/ ognl/enhance/ ognl/ ...
/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…
/external/conscrypt/openjdk/src/main/java/org/conscrypt/
DPlatform.java609 StringBuilder propertyName = new StringBuilder("conscrypt.ct.enforce"); in isCTVerificationRequired() local
613 property = Security.getProperty(propertyName + ".*"); in isCTVerificationRequired()
618 propertyName.append(".").append(part); in isCTVerificationRequired()
621 property = Security.getProperty(propertyName.toString()); in isCTVerificationRequired()
/external/v8/src/inspector/
Dv8-value-copier.cc148 v8::Local<v8::String> propertyName; in toProtocolValue() local
149 if (!name->ToString(context).ToLocal(&propertyName)) continue; in toProtocolValue()
157 jsonObject->setValue(toProtocolString(propertyName), in toProtocolValue()
Dinjected_script_externs.js51 InjectedScriptHostClass.prototype.objectHasOwnProperty = function(object, propertyName) {} argument
/external/testng/src/main/java/org/testng/
DTestNGAntTask.java195 public void setFailureProperty(String propertyName) { in setFailureProperty() argument
196 m_failurePropertyName= propertyName; in setFailureProperty()
203 public void setSkippedProperty(String propertyName) { in setSkippedProperty() argument
204 m_skippedPropertyName= propertyName; in setSkippedProperty()
211 public void setFSPProperty(String propertyName) { in setFSPProperty() argument
212 m_fspPropertyName= propertyName; in setFSPProperty()
/external/conscrypt/android/src/main/java/org/conscrypt/
DPlatform.java938 String propertyName = "conscrypt.ct.enforce"; in isCTVerificationRequired() local
942 property = Security.getProperty(propertyName + ".*"); in isCTVerificationRequired()
947 propertyName = propertyName + "." + part; in isCTVerificationRequired()
950 property = Security.getProperty(propertyName); in isCTVerificationRequired()

12345