HomeSort by relevance Sort by last modified time
    Searched full:propertyname (Results 1 - 25 of 756) 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 long getLong(const String& propertyName, long defaultValue);
64 double getDouble(const String& propertyName);
65 double getDouble(const String& propertyName, double defaultValue);
66 PassRefPtr<JSONObject> getObject(const String& propertyName);
68 void setBoolean(const String& propertyName, bool value) { setValue(propertyName, JSONBasicValue::create(value)); }
69 void setString(const String& propertyName, const String& value) { setValue(propertyName, JSONString::create(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 return getLong(propertyName, 0)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationInputHelpers.cpp 14 CSSPropertyID AnimationInputHelpers::keyframeAttributeToCSSPropertyID(const String& propertyName)
17 if (propertyName[0] == '-' || isASCIIUpper(propertyName[0]))
19 if (propertyName == "cssFloat")
22 for (size_t i = 0; i < propertyName.length(); ++i) {
23 if (isASCIIUpper(propertyName[i]))
25 builder.append(propertyName[i]);
  /external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/custom/
V8CryptoKeyCustom.cpp 25 virtual void setString(const char* propertyName, const char* value)
27 m_dictionary.set(propertyName, value);
30 virtual void setUint(const char* propertyName, unsigned value)
32 m_dictionary.set(propertyName, value);
35 virtual void setAlgorithm(const char* propertyName, const blink::WebCryptoAlgorithm& algorithm)
41 m_dictionary.set(propertyName, algorithmValue);
44 virtual void setUint8Array(const char* propertyName, const blink::WebVector<unsigned char>& vector)
47 m_dictionary.set(propertyName, toV8(uint8Array.get(), m_holder, m_isolate));
  /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...]
  /external/chromium_org/content/shell/tools/plugin/Tests/
NPRuntimeRemoveProperty.cpp 51 bool hasProperty(NPIdentifier propertyName)
53 if (identifierIs(propertyName, "lastRemovedProperty"))
59 bool getProperty(NPIdentifier propertyName, NPVariant* result)
61 assert(identifierIs(propertyName, "lastRemovedProperty"));
78 bool removeProperty(NPIdentifier propertyName)
80 m_lastRemovedProperty = propertyName;
122 NPIdentifier propertyName;
127 propertyName = pluginTest()->NPN_GetStringIdentifier(propertyNameString.c_str());
130 propertyName = pluginTest()->NPN_GetIntIdentifier(number);
133 pluginTest()->NPN_RemoveProperty(NPVARIANT_TO_OBJECT(arguments[0]), propertyName);
    [all...]
  /packages/apps/DeskClock/res/animator/
ic_alarm_animation_button.xml 23 android:propertyName="rotation"
29 android:propertyName="rotation"
35 android:propertyName="rotation"
41 android:propertyName="rotation"
47 android:propertyName="rotation"
53 android:propertyName="rotation"
59 android:propertyName="rotation"
65 android:propertyName="rotation"
71 android:propertyName="rotation"
77 android:propertyName="rotation
    [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"
  /cts/tests/tests/view/res/anim/
test_state_list_animator.xml 19 <objectAnimator android:propertyName="x" android:duration="100" android:valueTo="10" android:valueType="floatType"/>
20 <objectAnimator android:propertyName="y" android:duration="100" android:valueTo="20" android:valueType="floatType"/>
21 <objectAnimator android:propertyName="z" android:duration="100" android:valueTo="20" android:valueType="floatType"/>
26 <objectAnimator android:propertyName="x" android:duration="100" android:valueTo="0" android:valueType="floatType"/>
27 <objectAnimator android:propertyName="y" android:duration="100" android:valueTo="0" android:valueType="floatType"/>
28 <objectAnimator android:propertyName="z" android:duration="100" android:valueTo="0" android:valueType="floatType"/>
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSStyleDeclaration.idl 28 DOMString? getPropertyValue([Default=Undefined] optional DOMString propertyName);
29 [RaisesException] DOMString? removeProperty([Default=Undefined] optional DOMString propertyName);
30 DOMString? getPropertyPriority([Default=Undefined] optional DOMString propertyName);
31 [RaisesException] void setProperty([Default=Undefined] optional DOMString propertyName,
38 [Custom] setter void (DOMString propertyName, DOMString? propertyValue);
44 [MeasureAs=CSSStyleDeclarationGetPropertyCSSValue] CSSValue getPropertyCSSValue([Default=Undefined] optional DOMString propertyName);
CSSStyleDeclaration.h 53 virtual PassRefPtrWillBeRawPtr<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;
  /frameworks/base/core/res/res/anim/
button_state_list_anim_material.xml 19 <objectAnimator android:propertyName="translationZ"
23 <objectAnimator android:propertyName="elevation"
32 <objectAnimator android:propertyName="translationZ"
37 <objectAnimator android:propertyName="elevation"
45 <objectAnimator android:propertyName="translationZ"
49 <objectAnimator android:propertyName="elevation"
  /frameworks/base/core/tests/coretests/res/anim/
test_state_anim.xml 19 <objectAnimator android:propertyName="x" android:duration="100" android:valueTo="10" android:valueType="floatType"/>
20 <objectAnimator android:propertyName="y" android:duration="100" android:valueTo="20" android:valueType="floatType"/>
21 <objectAnimator android:propertyName="z" android:duration="100" android:valueTo="20" android:valueType="floatType"/>
26 <objectAnimator android:propertyName="x" android:duration="100" android:valueTo="0" android:valueType="floatType"/>
27 <objectAnimator android:propertyName="y" android:duration="100" android:valueTo="0" android:valueType="floatType"/>
28 <objectAnimator android:propertyName="z" android:duration="100" android:valueTo="0" android:valueType="floatType"/>
  /frameworks/base/tests/VectorDrawableTest/res/anim/
animation_favorite.xml 23 android:propertyName="pathData"
30 android:propertyName="fillAlpha"
36 android:propertyName="strokeAlpha"
42 android:propertyName="strokeColor"
48 android:propertyName="strokeWidth"
54 android:propertyName="fillColor"
  /external/chromium_org/ui/login/
screen.js 169 var propertyName = this.getPropertyNameOf_(observer);
170 if (propertyName) {
171 if (!this.contextObservers_.hasOwnProperty(propertyName))
172 this.contextObservers_[propertyName] = observer.bind(this);
173 realObserver = this.contextObservers_[propertyName];
186 var propertyName = this.getPropertyNameOf_(observer);
187 if (propertyName) {
188 if (!this.contextObservers_.hasOwnProperty(propertyName))
190 realObserver = this.contextObservers_[propertyName];
191 delete this.contextObservers_[propertyName];
    [all...]
  /frameworks/base/packages/SystemUI/res/anim/
ic_landscape_from_auto_rotate_animation_arrows.xml 22 android:propertyName="scaleX"
28 android:propertyName="scaleX"
37 android:propertyName="scaleY"
43 android:propertyName="scaleY"
50 android:propertyName="rotation"
ic_portrait_from_auto_rotate_animation_arrows.xml 22 android:propertyName="scaleX"
28 android:propertyName="scaleX"
37 android:propertyName="scaleY"
43 android:propertyName="scaleY"
50 android:propertyName="rotation"
ic_portrait_to_auto_rotate_animation_arrows.xml 22 android:propertyName="scaleX"
28 android:propertyName="scaleX"
37 android:propertyName="scaleY"
43 android:propertyName="scaleY"
50 android:propertyName="rotation"
  /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/third_party/WebKit/Source/bindings/core/v8/custom/
V8CSSStyleDeclarationCustom.cpp 60 static bool hasCSSPropertyNamePrefix(const String& propertyName, const char* prefix)
66 ASSERT(propertyName.length());
69 if (toASCIILower(propertyName[0]) != prefix[0])
72 unsigned length = propertyName.length();
75 return isASCIIUpper(propertyName[i]);
76 if (propertyName[i] != prefix[i])
86 static CSSPropertyID cssResolvedPropertyID(const String& propertyName)
88 unsigned length = propertyName.length();
98 if (hasCSSPropertyNamePrefix(propertyName, "css"))
100 else if (hasCSSPropertyNamePrefix(propertyName, "webkit")
    [all...]

Completed in 3192 milliseconds

1 2 3 4 5 6 7 8 91011>>