Home
last modified time | relevance | path

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

123

/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/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/util/
DUnicodePropertySymbolTable.java51 public boolean applyPropertyAlias(String propertyName, in applyPropertyAlias() argument
55 int posNotEqual = propertyName.indexOf('\u2260'); in applyPropertyAlias()
56 int posColon = propertyName.indexOf(':'); in applyPropertyAlias()
58 if (posNotEqual < 0) posNotEqual = propertyName.length(); in applyPropertyAlias()
59 if (posColon < 0) posColon = propertyName.length(); in applyPropertyAlias()
61 propertyValue = propertyValue.length() == 0 ? propertyName.substring(opPos+1) in applyPropertyAlias()
62 : propertyName.substring(opPos+1) + "=" + propertyValue; in applyPropertyAlias()
63 propertyName = propertyName.substring(0,opPos); in applyPropertyAlias()
68 if (propertyName.endsWith("!")) { in applyPropertyAlias()
69 propertyName = propertyName.substring(0, propertyName.length() - 1); in applyPropertyAlias()
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
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 …]
/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/v8/test/webkit/
Dclass-syntax-prototype.js26 function descriptor(object, propertyName) { argument
27 return Object.getOwnPropertyDescriptor(object, propertyName);
32 for (var propertyName in object)
33 properties.push(propertyName);
/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/chromium-trace/catapult/netlog_viewer/netlog_viewer/
Dcr.js56 function dispatchPropertyChange(target, propertyName, newValue, oldValue) { argument
57 var e = new Event(propertyName + 'Change');
58 e.propertyName = propertyName;
279 for (var propertyName in exports) {
284 propertyName);
286 Object.defineProperty(obj, propertyName, propertyDescriptor);
/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.java55 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/
DProperties.java12 public static boolean isOverrideSet(final String propertyName) in isOverrideSet() argument
21 String value = System.getProperty(propertyName); in isOverrideSet()
/external/v8/test/webkit/fast/js/
Darray-functions-non-arrays.js35 for (propertyName in object) {
36 names.push(propertyName);
37 enumerables[propertyName] = 1;
/external/v8/test/mjsunit/
Dfuzz-accessors.js77 var propertyName = builtInPropertyNames[k];
78 fun(obj, propertyName);
/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/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/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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
DPerformancesView.java509 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()
DComponentResultsView.java291 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()
DComponentsView.java353 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/ksoap2/ksoap2-base/src/main/java/org/ksoap2/transport/
DServiceConnection.java71 public void setRequestProperty(String propertyName, String value) throws IOException; in setRequestProperty() argument
/external/conscrypt/src/main/java/org/conscrypt/
DSSLParametersImpl.java1149 String propertyName = "conscrypt.ct.enforce"; in isCTVerificationEnabled() local
1153 property = Security.getProperty(propertyName + ".*"); in isCTVerificationEnabled()
1158 propertyName = propertyName + "." + part; in isCTVerificationEnabled()
1161 property = Security.getProperty(propertyName); in isCTVerificationEnabled()

123