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

1 2 3 4 5 6 7 8 910

  /libcore/luni/src/main/java/java/beans/
PropertyChangeListenerProxy.java 29 String propertyName;
35 * @param propertyName
40 public PropertyChangeListenerProxy(String propertyName,
43 this.propertyName = propertyName;
52 return propertyName;
PropertyChangeEvent.java 30 String propertyName;
43 * @param propertyName
48 * the <code>propertyName</code> is <code>null</code> or the
52 * <code>propertyName</code> is <code>null</code> or the new
55 public PropertyChangeEvent(Object source, String propertyName,
59 this.propertyName = propertyName;
71 return propertyName;
IndexedPropertyChangeEvent.java 36 * @param propertyName
41 * the <code>propertyName</code> is <code>null</code> or the
45 * <code>propertyName</code> is <code>null</code> or the new
50 public IndexedPropertyChangeEvent(Object source, String propertyName,
52 super(source, propertyName, oldValue, newValue);
PropertyChangeSupport.java 80 * @param propertyName
87 public void firePropertyChange(String propertyName, Object oldValue, Object newValue) {
88 firePropertyChange(new PropertyChangeEvent(sourceBean, propertyName, oldValue, newValue));
97 * @param propertyName
106 public void fireIndexedPropertyChange(String propertyName, int index,
109 propertyName, oldValue, newValue, index));
114 * named {@code propertyName}. If multiple subscriptions exist for {@code
119 public void removePropertyChangeListener(String propertyName, PropertyChangeListener listener) {
121 if (equals(propertyName, listener, p)) {
162 * named {@code propertyName}. If the listener is already subscribed, i
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorState.h 60 bool getBoolean(const String& propertyName);
61 String getString(const String& propertyName);
62 long getLong(const String& propertyName);
63 double getDouble(const String& propertyName);
64 PassRefPtr<JSONObject> getObject(const String& propertyName);
66 void setBoolean(const String& propertyName, bool value) { setValue(propertyName, JSONBasicValue::create(value)); }
67 void setString(const String& propertyName, const String& value) { setValue(propertyName, JSONString::create(value)); }
68 void setLong(const String& propertyName, long value) { setValue(propertyName, JSONBasicValue::create((double)value));
    [all...]
InspectorState.cpp 55 void InspectorState::setValue(const String& propertyName, PassRefPtr<JSONValue> value)
57 m_properties->setValue(propertyName, value);
61 void InspectorState::remove(const String& propertyName)
63 m_properties->remove(propertyName);
67 bool InspectorState::getBoolean(const String& propertyName)
69 JSONObject::iterator it = m_properties->find(propertyName);
76 String InspectorState::getString(const String& propertyName)
78 JSONObject::iterator it = m_properties->find(propertyName);
85 long InspectorState::getLong(const String& propertyName)
87 JSONObject::iterator it = m_properties->find(propertyName);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/testing/plugin/Tests/
NPRuntimeRemoveProperty.cpp 47 bool hasProperty(NPIdentifier propertyName)
49 if (identifierIs(propertyName, "lastRemovedProperty"))
55 bool getProperty(NPIdentifier propertyName, NPVariant* result)
57 assert(identifierIs(propertyName, "lastRemovedProperty"));
74 bool removeProperty(NPIdentifier propertyName)
76 m_lastRemovedProperty = propertyName;
118 NPIdentifier propertyName;
123 propertyName = pluginTest()->NPN_GetStringIdentifier(propertyNameString.c_str());
126 propertyName = pluginTest()->NPN_GetIntIdentifier(number);
129 pluginTest()->NPN_RemoveProperty(NPVARIANT_TO_OBJECT(arguments[0]), propertyName);
    [all...]
NPDeallocateCalledBeforeNPShutdown.cpp 53 bool hasProperty(NPIdentifier propertyName)
55 return propertyName == pluginTest()->NPN_GetStringIdentifier("testObject");
58 bool getProperty(NPIdentifier propertyName, NPVariant* result)
60 if (propertyName != pluginTest()->NPN_GetStringIdentifier("testObject"))
NPRuntimeObjectFromDestroyedPlugin.cpp 60 bool hasProperty(NPIdentifier propertyName)
62 return identifierIs(propertyName, "testObject");
65 bool getProperty(NPIdentifier propertyName, NPVariant* result)
67 if (propertyName != pluginTest()->NPN_GetStringIdentifier("testObject"))
PluginScriptableObjectOverridesAllProperties.cpp 51 bool hasProperty(NPIdentifier propertyName)
56 bool getProperty(NPIdentifier propertyName, NPVariant* result)
59 char* propertyString = pluginTest()->NPN_UTF8FromIdentifier(propertyName);
SlowNPPNew.cpp 50 bool hasProperty(NPIdentifier propertyName)
55 bool getProperty(NPIdentifier propertyName, NPVariant* result)
58 char* propertyString = pluginTest()->NPN_UTF8FromIdentifier(propertyName);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
TransitionEvent.h 37 String propertyName;
48 static PassRefPtr<TransitionEvent> create(const AtomicString& type, const String& propertyName, double elapsedTime, const String& pseudoElement)
50 return adoptRef(new TransitionEvent(type, propertyName, elapsedTime, pseudoElement));
59 const String& propertyName() const;
67 TransitionEvent(const AtomicString& type, const String& propertyName, double elapsedTime, const String& pseudoElement);
TransitionEvent.cpp 45 TransitionEvent::TransitionEvent(const AtomicString& type, const String& propertyName, double elapsedTime, const String& pseudoElement)
47 , m_propertyName(propertyName)
56 , m_propertyName(initializer.propertyName)
67 const String& TransitionEvent::propertyName() const
TransitionEvent.idl 30 [InitializedByEventConstructor] readonly attribute DOMString propertyName;
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSStyleDeclaration.h 53 virtual PassRefPtr<CSSValue> getPropertyCSSValue(const String& propertyName) = 0;
54 virtual String getPropertyValue(const String& propertyName) = 0;
55 virtual String getPropertyPriority(const String& propertyName) = 0;
56 virtual String getPropertyShorthand(const String& propertyName) = 0;
57 virtual bool isPropertyImplicit(const String& propertyName) = 0;
58 virtual void setProperty(const String& propertyName, const String& value, const String& priority, ExceptionState&) = 0;
59 virtual String removeProperty(const String& propertyName, ExceptionState&) = 0;
CSSStyleDeclaration.idl 27 [TreatReturnedNullStringAs=Null] DOMString getPropertyValue([Default=Undefined] optional DOMString propertyName);
28 CSSValue getPropertyCSSValue([Default=Undefined] optional DOMString propertyName);
29 [TreatReturnedNullStringAs=Null, RaisesException] DOMString removeProperty([Default=Undefined] optional DOMString propertyName);
30 [TreatReturnedNullStringAs=Null] DOMString getPropertyPriority([Default=Undefined] optional DOMString propertyName);
31 [RaisesException] void setProperty([Default=Undefined] optional DOMString propertyName,
38 [Custom] setter void (DOMString propertyName, [TreatNullAs=NullString] DOMString propertyValue);
  /external/chromium_org/third_party/WebKit/Source/core/plugins/
DOMMimeTypeArray.h 44 bool canGetItemsForName(const AtomicString& propertyName);
45 PassRefPtr<DOMMimeType> namedItem(const AtomicString& propertyName);
DOMPluginArray.h 44 bool canGetItemsForName(const AtomicString& propertyName);
45 PassRefPtr<DOMPlugin> namedItem(const AtomicString& propertyName);
DOMPlugin.h 47 bool canGetItemsForName(const AtomicString& propertyName);
48 PassRefPtr<DOMMimeType> namedItem(const AtomicString& propertyName);
DOMMimeTypeArray.cpp 59 bool DOMMimeTypeArray::canGetItemsForName(const AtomicString& propertyName)
66 if (mimes[i].type == propertyName)
72 PassRefPtr<DOMMimeType> DOMMimeTypeArray::namedItem(const AtomicString& propertyName)
79 if (mimes[i].type == propertyName)
DOMPlugin.cpp 74 bool DOMPlugin::canGetItemsForName(const AtomicString& propertyName)
78 if (mimes[i].type == propertyName)
83 PassRefPtr<DOMMimeType> DOMPlugin::namedItem(const AtomicString& propertyName)
87 if (mimes[i].type == propertyName)
  /external/robolectric/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);
  /libcore/benchmarks/src/benchmarks/regression/
DoPrivilegedBenchmark.java 65 private final String propertyName;
67 public ReusableAction(String propertyName) {
68 this.propertyName = propertyName;
72 return System.getProperty(propertyName);
  /cts/tests/tests/calendarcommon/src/com/android/calendarcommon2/
RecurrenceSet.java 32 String propertyName,
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
npruntime_impl.h 57 bool _NPN_GetProperty(NPP, NPObject*, NPIdentifier propertyName, NPVariant* result);
58 bool _NPN_SetProperty(NPP, NPObject*, NPIdentifier propertyName, const NPVariant* value);
59 bool _NPN_RemoveProperty(NPP, NPObject*, NPIdentifier propertyName);
60 bool _NPN_HasProperty(NPP, NPObject*, NPIdentifier propertyName);

Completed in 330 milliseconds

1 2 3 4 5 6 7 8 910