HomeSort by relevance Sort by last modified time
    Searched defs:propertyName (Results 1 - 25 of 1087) 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;
PropertyChangeEvent.java 54 * @param propertyName the programmatic name of the property that was changed
60 public PropertyChangeEvent(Object source, String propertyName,
63 this.propertyName = propertyName;
75 return propertyName;
125 private String propertyName;
155 sb.append("[propertyName=").append(getPropertyName());
  /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);
  /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);
  /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);
  /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());
  /external/protobuf/csharp/src/Google.Protobuf/Reflection/
FieldDescriptor.cs 46 private readonly string propertyName; // Annoyingly, needed in Crosslink.
68 MessageDescriptor parent, int index, string propertyName)
99 this.propertyName = propertyName;
329 if (propertyName == null)
333 var property = ContainingType.ClrType.GetProperty(propertyName);
336 throw new DescriptorValidationException(this, $"Property {propertyName} not found in {ContainingType.ClrType}");
  /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...]
  /external/v8/src/inspector/
v8-value-copier.cc 148 v8::Local<v8::String> propertyName;
149 if (!name->ToString(context).ToLocal(&propertyName)) continue;
157 jsonObject->setValue(toProtocolString(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)) {
VCardParserImpl_V21.java 167 protected boolean isValidPropertyName(final String propertyName) {
168 if (!(getKnownPropertyNameSet().contains(propertyName.toUpperCase()) ||
169 propertyName.startsWith("X-"))
170 && !mUnknownTypeSet.contains(propertyName)) {
171 mUnknownTypeSet.add(propertyName);
172 Log.w(LOG_TAG, "Property name unsupported by vCard 2.1: " + propertyName);
382 final String propertyName = line.substring(nameIndex, i);
383 propertyData.setName(propertyName);
395 final String propertyName = line.substring(nameIndex, i);
396 propertyData.setName(propertyName);
    [all...]
  /art/runtime/gc/
allocation_record.cc 47 const char* propertyName = "dalvik.vm.allocTrackerMax";
49 if (property_get(propertyName, allocMaxString, "") > 0) {
53 LOG(ERROR) << "Ignoring " << propertyName << " '" << allocMaxString
63 propertyName = "dalvik.vm.recentAllocMax";
65 if (property_get(propertyName, recentAllocMaxString, "") > 0) {
69 LOG(ERROR) << "Ignoring " << propertyName << " '" << recentAllocMaxString
72 LOG(ERROR) << "Ignoring " << propertyName << " '" << recentAllocMaxString
79 propertyName = "debug.allocTracker.stackDepth";
81 if (property_get(propertyName, stackDepthString, "") > 0) {
85 LOG(ERROR) << "Ignoring " << propertyName << " '" << stackDepthStrin
    [all...]
  /external/jacoco/jacoco-maven-plugin/src/org/jacoco/maven/
AbstractAgentMojo.java 51 @Parameter(property = "jacoco.propertyName")
52 String propertyName;
218 return propertyName;
227 return propertyName != null && !"".equals(propertyName);
  /frameworks/base/core/java/com/android/internal/util/
TypedProperties.java 182 final String propertyName = st.sval;
183 if (!propertyNamePattern.matcher(propertyName).matches()) {
194 map.remove(propertyName);
204 final Object oldValue = map.remove(propertyName);
213 map.put(propertyName, value);
  /frameworks/data-binding/compiler/src/main/java/android/databinding/annotationprocessor/
ProcessBindable.java 163 CharSequence propertyName;
165 propertyName = name.subSequence(3, name.length());
167 propertyName = name.subSequence(2, name.length());
172 char firstChar = propertyName.charAt(0);
174 propertyName.subSequence(1, propertyName.length());
233 void addProperty(String className, String propertyName);
259 public void addProperty(String className, String propertyName) {
265 properties.add(propertyName);
  /libcore/luni/src/main/java/javax/xml/validation/
SchemaFactoryFinder.java 172 String propertyName = SERVICE_CLASS.getName() + ":" + schemaLanguage;
176 if (debug) debugPrintln("Looking up system property '"+propertyName+"'" );
177 String r = System.getProperty(propertyName);
197 debugPrintln("failed to look up system property '"+propertyName+"'" );
204 String factoryClassName = CacheHolder.cacheProps.getProperty(propertyName);
  /libcore/luni/src/main/java/javax/xml/xpath/
XPathFactoryFinder.java 165 String propertyName = SERVICE_CLASS.getName() + ":" + uri;
169 if (debug) debugPrintln("Looking up system property '"+propertyName+"'" );
170 String r = System.getProperty(propertyName);
184 String factoryClassName = CacheHolder.cacheProps.getProperty(propertyName);
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-library/1.1/
hamcrest-library-1.1.jar 
  /external/proguard/src/proguard/
ConfigurationParser.java     [all...]
  /frameworks/base/core/java/android/animation/
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/base/services/core/java/com/android/server/pm/
UserDataPreparer.java 105 String propertyName = "sys.user." + userId + ".ce_available";
106 Slog.d(TAG, "Setting property: " + propertyName + "=true");
107 SystemProperties.set(propertyName, "true");
  /external/conscrypt/openjdk/src/main/java/org/conscrypt/
Platform.java 609 StringBuilder propertyName = new StringBuilder("conscrypt.ct.enforce");
613 property = Security.getProperty(propertyName + ".*");
618 propertyName.append(".").append(part);
621 property = Security.getProperty(propertyName.toString());
  /external/guice/extensions/persist/lib/
ognl-2.6.7.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
hamcrest-library-1.3.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
hamcrest-library-1.3.jar 

Completed in 467 milliseconds

1 2 3 4 5 6 7 8 91011>>