HomeSort by relevance Sort by last modified time
    Searched full:propertyname (Results 1 - 25 of 405) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
animator1.xml 8 android:propertyName="x"/>
12 android:propertyName="y"
17 android:propertyName="scaleX"/>
21 android:propertyName="scaleY"/>
26 android:propertyName="alpha"/>
animator1-expected-completion60.txt 1 Code completion in animator1.xml for android:propertyName="scal^eX"/>:
  /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/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/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;
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...]
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;
  /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...]
  /development/samples/devbytes/animation/PropertyAnimations/res/animator/
combo.xml 5 android:propertyName="alpha"
11 android:propertyName="translationX"
18 android:propertyName="rotation"
25 android:propertyName="scaleX"
31 android:propertyName="scaleY"
  /external/chromium_org/third_party/WebKit/Source/core/css/
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);
CSSComputedStyleDeclaration.h 91 virtual PassRefPtr<CSSValue> getPropertyCSSValue(const String& propertyName);
92 virtual String getPropertyValue(const String& propertyName);
93 virtual String getPropertyPriority(const String& propertyName);
94 virtual String getPropertyShorthand(const String& propertyName);
95 virtual bool isPropertyImplicit(const String& propertyName);
96 virtual void setProperty(const String& propertyName, const String& value, const String& priority, ExceptionState&);
97 virtual String removeProperty(const String& propertyName, ExceptionState&);
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;
PropertySetCSSStyleDeclaration.h 58 virtual PassRefPtr<CSSValue> getPropertyCSSValue(const String& propertyName) OVERRIDE;
59 virtual String getPropertyValue(const String& propertyName) OVERRIDE;
60 virtual String getPropertyPriority(const String& propertyName) OVERRIDE;
61 virtual String getPropertyShorthand(const String& propertyName) OVERRIDE;
62 virtual bool isPropertyImplicit(const String& propertyName) OVERRIDE;
63 virtual void setProperty(const String& propertyName, const String& value, const String& priority, ExceptionState&) OVERRIDE;
64 virtual String removeProperty(const String& propertyName, ExceptionState&) OVERRIDE;
  /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);
  /external/chromium_org/chrome/browser/resources/chromeos/login/
screen.js 61 Object.getOwnPropertyNames(proto).forEach(function(propertyName) {
63 Object.getOwnPropertyDescriptor(proto, propertyName);
65 propertyName, descriptor);
66 if (api.indexOf(propertyName) >= 0) {
67 constructor[propertyName] = (function(x) {
72 })(propertyName);
  /frameworks/base/core/res/res/animator/
fragment_close_exit.xml 24 android:propertyName="scaleY"
30 android:propertyName="scaleX"
36 android:propertyName="alpha"
fragment_open_enter.xml 24 android:propertyName="scaleY"
30 android:propertyName="scaleX"
36 android:propertyName="alpha"
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8CSSStyleDeclarationCustom.cpp 63 static bool hasCSSPropertyNamePrefix(const String& propertyName, const char* prefix)
69 ASSERT(propertyName.length());
72 if (toASCIILower(propertyName[0]) != prefix[0])
75 unsigned length = propertyName.length();
78 return isASCIIUpper(propertyName[i]);
79 if (propertyName[i] != prefix[i])
101 String propertyName = toWebCoreString(v8PropertyName);
104 CSSPropertyInfo* propInfo = map.get(propertyName);
106 unsigned length = propertyName.length();
115 if (hasCSSPropertyNamePrefix(propertyName, "css")
    [all...]
  /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);
  /external/chromium_org/third_party/WebKit/Source/testing/plugin/
PluginTest.h 49 DEFINE_HAS_MEMBER_CHECK(hasProperty, bool, (NPIdentifier propertyName));
50 DEFINE_HAS_MEMBER_CHECK(getProperty, bool, (NPIdentifier propertyName, NPVariant* result));
51 DEFINE_HAS_MEMBER_CHECK(removeProperty, bool, (NPIdentifier propertyName));
91 bool NPN_GetProperty(NPObject*, NPIdentifier propertyName, NPVariant* value);
92 bool NPN_RemoveProperty(NPObject*, NPIdentifier propertyName);
164 bool hasProperty(NPIdentifier propertyName)
170 bool getProperty(NPIdentifier propertyName, NPVariant* result)
176 bool removeProperty(NPIdentifier propertyName)
226 static bool NP_HasProperty(NPObject* npObject, NPIdentifier propertyName)
228 return static_cast<T*>(npObject)->hasProperty(propertyName);
    [all...]
  /frameworks/base/core/java/android/animation/
ObjectAnimator.java 74 * using more than one PropertyValuesHolder objects, then setting the propertyName simply
75 * sets the propertyName in the first of those PropertyValuesHolder objects.</p>
77 * @param propertyName The name of the property being animated. Should not be null.
79 public void setPropertyName(String propertyName) {
81 // propertyName to be used later when setValues() is called if so.
85 valuesHolder.setPropertyName(propertyName);
87 mValuesMap.put(propertyName, valuesHolder);
89 mPropertyName = propertyName;
103 // propertyName to be used later when setValues() is called if so.
136 String propertyName = null
    [all...]
  /external/chromium_org/tools/perf/utils/results_viewer/src/
ui.js 62 for (var propertyName in opt_propertyBag) {
63 el[propertyName] = opt_propertyBag[propertyName];
  /external/chromium-trace/trace-viewer/src/base/
properties.js 13 * @param {string} propertyName The name of the property that changed.
17 function dispatchPropertyChange(target, propertyName, newValue, oldValue,
19 var e = new base.Event(propertyName + 'Change',
21 e.propertyName = propertyName;
35 function setPropertyAndDispatchChange(obj, propertyName, newValue) {
36 var privateName = propertyName + '_';
37 var oldValue = obj[propertyName];
40 base.dispatchPropertyChange(obj, propertyName,

Completed in 571 milliseconds

1 2 3 4 5 6 7 8 91011>>