HomeSort by relevance Sort by last modified time
    Searched refs:propertyName (Results 1 - 25 of 862) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/beans/
PropertyChangeListenerProxy.java 50 private final String propertyName;
56 * @param propertyName the name of the property to listen on
59 public PropertyChangeListenerProxy(String propertyName, PropertyChangeListener listener) {
61 this.propertyName = propertyName;
79 return this.propertyName;
IndexedPropertyChangeEvent.java 52 * @param propertyName The programmatic name of the property that
58 public IndexedPropertyChangeEvent(Object source, String propertyName,
61 super (source, propertyName, oldValue, newValue);
PropertyChangeSupport.java 189 * If <code>propertyName</code> or <code>listener</code> is null, no
192 * @param propertyName The name of the property to listen on.
196 String propertyName,
198 if (listener == null || propertyName == null) {
203 this.map.add(propertyName, listener);
212 * If <code>propertyName</code> is null, no exception is thrown and no
217 * @param propertyName The name of the property that was listened on.
221 String propertyName,
223 if (listener == null || propertyName == null) {
228 this.map.remove(propertyName, listener)
    [all...]
PropertyChangeEvent.java 53 * @param propertyName The programmatic name of the property
58 public PropertyChangeEvent(Object source, String propertyName,
61 this.propertyName = propertyName;
73 return propertyName;
123 private String propertyName;
153 sb.append("[propertyName=").append(getPropertyName());
  /external/testng/src/main/java/org/testng/internal/
Constants.java 48 private static TestNGProperty getProperty(String propertyName) {
49 TestNGProperty result = m_propertiesByName.get(propertyName);
50 assert null != result : "Unknown property : " + propertyName;
55 public static String getPropertyValue(Properties p, String propertyName) {
56 TestNGProperty r= getProperty(propertyName);
57 assert null != r : "Unknown property : " + propertyName;
64 public static boolean getBooleanPropertyValue(Properties properties, String propertyName) {
65 TestNGProperty p = getProperty(propertyName);
66 String r = properties.getProperty(propertyName, p.getDefault());
72 public static int getIntegerPropertyValue(Properties properties, String propertyName) {
    [all...]
IPropertyUtils.java 25 public Class getPropertyType(Class instanceClass, String propertyName);
PropertyUtilsMock.java 29 public Class getPropertyType(Class instanceClass, String propertyName) {
PropertyUtils.java 38 public Class getPropertyType(Class instanceClass, String propertyName) {
40 LOGGER.warn("Cannot retrieve property class for " + propertyName + ". Target instance class is null");
42 PropertyDescriptor propDesc = getPropertyDescriptor(instanceClass, propertyName);
46 private static PropertyDescriptor getPropertyDescriptor(Class targetClass, String propertyName) {
49 LOGGER.warn("Cannot retrieve property " + propertyName + ". Class is null");
55 if (propDesc.getName().equals(propertyName)) {
61 LOGGER.warn("Cannot retrieve property " + propertyName + ". Cause is: " + ie);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Properties.java 12 public static boolean isOverrideSet(final String propertyName)
21 String value = System.getProperty(propertyName);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/util/
PropertiesHelper.java 20 String propertyName = variableMatcher.group(2);
23 propertyValue = properties.getProperty(propertyName);
26 propertyValue = System.getProperty(propertyName);
44 String propertyName = (String) propertyNames.nextElement();
45 String propertyValue = properties.getProperty(propertyName);
47 properties.setProperty(propertyName, expandedPropertyValue);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
UnicodePropertySymbolTable.java 39 // public boolean applyPropertyAlias0(String propertyName,
41 // if (!propertyName.contains("*")) {
42 // return applyPropertyAlias(propertyName, propertyValue, result);
44 // String[] propertyNames = propertyName.split("[*]");
52 public boolean applyPropertyAlias(String propertyName,
56 int posNotEqual = propertyName.indexOf('\u2260');
57 int posColon = propertyName.indexOf(':');
59 if (posNotEqual < 0) posNotEqual = propertyName.length();
60 if (posColon < 0) posColon = propertyName.length();
62 propertyValue = propertyValue.length() == 0 ? propertyName.substring(opPos+1)
    [all...]
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/util/
UnicodePropertySymbolTable.java 38 // public boolean applyPropertyAlias0(String propertyName,
40 // if (!propertyName.contains("*")) {
41 // return applyPropertyAlias(propertyName, propertyValue, result);
43 // String[] propertyNames = propertyName.split("[*]");
51 public boolean applyPropertyAlias(String propertyName,
55 int posNotEqual = propertyName.indexOf('\u2260');
56 int posColon = propertyName.indexOf(':');
58 if (posNotEqual < 0) posNotEqual = propertyName.length();
59 if (posColon < 0) posColon = propertyName.length();
61 propertyValue = propertyValue.length() == 0 ? propertyName.substring(opPos+1)
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
DoPrivilegedBenchmark.java 62 private final String propertyName;
64 public ReusableAction(String propertyName) {
65 this.propertyName = propertyName;
69 return System.getProperty(propertyName);
  /cts/tests/tests/calendarcommon/src/com/android/calendarcommon2/
RecurrenceSet.java 32 String propertyName,
  /frameworks/opt/vcard/java/com/android/vcard/
VCardSourceDetector.java 103 final String propertyName = property.getName();
106 if (propertyName.equalsIgnoreCase(VCardConstants.PROPERTY_VERSION)
118 } else if (propertyName.equalsIgnoreCase(TYPE_FOMA_CHARSET_SIGN)) {
127 if (WINDOWS_MOBILE_PHONE_SIGNS.contains(propertyName)) {
129 } else if (FOMA_SIGNS.contains(propertyName)) {
131 } else if (JAPANESE_MOBILE_PHONE_SIGNS.contains(propertyName)) {
133 } else if (APPLE_SIGNS.contains(propertyName)) {
  /external/guava/guava-testlib/test/com/google/common/collect/testing/features/
FeatureEnumTest.java 53 for (String propertyName : new String[]{"value", "absent"}) {
56 method = annotationClass.getMethod(propertyName);
59 annotationClass, propertyName));
63 annotationClass, propertyName),
66 annotationClass, propertyName, annotationClass.getDeclaringClass()),
  /frameworks/base/core/java/android/animation/
PropertyValuesHolder.java 132 * @param propertyName The name of the property for this holder.
134 private PropertyValuesHolder(String propertyName) {
135 mPropertyName = propertyName;
152 * @param propertyName The name of the property being animated.
156 public static PropertyValuesHolder ofInt(String propertyName, int... values) {
157 return new IntPropertyValuesHolder(propertyName, values);
178 * @param propertyName The name of the property being animated. Can also be the
185 public static PropertyValuesHolder ofMultiInt(String propertyName, int[][] values) {
202 return new MultiIntValuesHolder(propertyName, null, evaluator, (Object[]) values);
210 * @param propertyName The name of the property being animated. Can also be th
    [all...]
ObjectAnimator.java 109 * using more than one PropertyValuesHolder objects, then setting the propertyName simply
110 * sets the propertyName in the first of those PropertyValuesHolder objects.</p>
112 * @param propertyName The name of the property being animated. Should not be null.
114 public void setPropertyName(@NonNull String propertyName) {
116 // propertyName to be used later when setValues() is called if so.
120 valuesHolder.setPropertyName(propertyName);
122 mValuesMap.put(propertyName, valuesHolder);
124 mPropertyName = propertyName;
138 // propertyName to be used later when setValues() is called if so.
172 String propertyName = null
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/util/
BrNameUtil.java 47 CharSequence propertyName;
50 propertyName = name.subSequence(3, name.length());
52 propertyName = name.subSequence(2, name.length());
57 char firstChar = propertyName.charAt(0);
59 propertyName.subSequence(1, propertyName.length());
  /libcore/tzdata/tools/src/main/libcore/tzdata/update/tools/
CreateTzDataBundle.java 92 private static File getMandatoryPropertyFile(Properties p, String propertyName) {
93 String fileName = getMandatoryProperty(p, propertyName);
97 "Missing file: " + file + " for property " + propertyName + " does not exist.");
104 private static String getMandatoryProperty(Properties p, String propertyName) {
105 String value = p.getProperty(propertyName);
107 System.out.println("Missing property: " + propertyName);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/model/
GLCall.java 164 public void addProperty(int propertyName, Object value) {
169 mProperties.put(propertyName, value);
176 public Object getProperty(int propertyName) {
181 return mProperties.get(propertyName);
  /external/guice/core/src/com/google/inject/name/
Names.java 65 String propertyName = (String) e.nextElement();
66 String value = properties.getProperty(propertyName);
67 binder.bind(Key.get(String.class, new NamedImpl(propertyName))).toInstance(value);
  /external/jacoco/jacoco-maven-plugin/src/org/jacoco/maven/
AbstractAgentMojo.java 53 * @parameter property="jacoco.propertyName"
55 String propertyName;
219 return propertyName;
228 return propertyName != null && !"".equals(propertyName);
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/transport/
ServiceConnection.java 64 * @param propertyName
71 public void setRequestProperty(String propertyName, String value) throws IOException;
  /art/runtime/gc/
allocation_record.cc 43 const char* propertyName = "dalvik.vm.allocTrackerMax";
45 if (property_get(propertyName, allocMaxString, "") > 0) {
49 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocMaxString
59 propertyName = "dalvik.vm.recentAllocMax";
61 if (property_get(propertyName, recentAllocMaxString, "") > 0) {
65 LOG(ERROR) << "Ignoring " << propertyName << " '" << recentAllocMaxString
68 LOG(ERROR) << "Ignoring " << propertyName << " '" << recentAllocMaxString
75 propertyName = "debug.allocTracker.stackDepth";
77 if (property_get(propertyName, stackDepthString, "") > 0) {
81 LOG(ERROR) << "Ignoring " << propertyName << " '" << stackDepthStrin
    [all...]

Completed in 411 milliseconds

1 2 3 4 5 6 7 8 91011>>