OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:propertyname
(Results
1 - 25
of
627
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationHelpers.h
13
static inline CSSPropertyID camelCaseCSSPropertyNameToID(const String&
propertyName
)
15
if (
propertyName
.find('-') != kNotFound)
21
while ((end =
propertyName
.find(isASCIIUpper, position)) != kNotFound) {
22
builder.append(
propertyName
.substring(position, end - position) + "-" + toASCIILower((
propertyName
)[end]));
25
builder.append(
propertyName
.substring(position));
/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
59
bool getBoolean(const String&
propertyName
);
60
String getString(const String&
propertyName
);
61
long getLong(const String&
propertyName
);
62
long getLong(const String&
propertyName
, long defaultValue);
63
double getDouble(const String&
propertyName
);
64
double getDouble(const String&
propertyName
, double defaultValue);
65
PassRefPtr<JSONObject> getObject(const String&
propertyName
);
67
void setBoolean(const String&
propertyName
, bool value) { setValue(
propertyName
, JSONBasicValue::create(value)); }
68
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
...]
/frameworks/base/core/tests/coretests/res/anim/
reset_state_anim.xml
3
<objectAnimator android:
propertyName
="x" android:duration="100" android:valueTo="0" android:valueType="floatType"/>
4
<objectAnimator android:
propertyName
="y" android:duration="100" android:valueTo="0" android:valueType="floatType"/>
5
<objectAnimator android:
propertyName
="z" android:duration="100" android:valueTo="0" android:valueType="floatType"/>
test_state_anim.xml
5
<objectAnimator android:
propertyName
="x" android:duration="100" android:valueTo="10" android:valueType="floatType"/>
6
<objectAnimator android:
propertyName
="y" android:duration="100" android:valueTo="20" android:valueType="floatType"/>
7
<objectAnimator android:
propertyName
="z" android:duration="100" android:valueTo="20" android:valueType="floatType"/>
12
<objectAnimator android:
propertyName
="x" android:duration="100" android:valueTo="0" android:valueType="floatType"/>
13
<objectAnimator android:
propertyName
="y" android:duration="100" android:valueTo="0" android:valueType="floatType"/>
14
<objectAnimator android:
propertyName
="z" android:duration="100" android:valueTo="0" android:valueType="floatType"/>
/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/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
...]
/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
28
[TreatReturnedNullStringAs=Null] DOMString getPropertyValue([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);
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"
progress_indeterminate_material.xml
23
android:
propertyName
="trimPathStart"
31
android:
propertyName
="trimPathEnd"
39
android:
propertyName
="trimPathOffset"
/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"
trim_path_animation_progress_bar.xml
23
android:
propertyName
="trimPathStart"
31
android:
propertyName
="trimPathEnd"
39
android:
propertyName
="trimPathOffset"
/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/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
...]
/external/chromium_org/chrome/browser/resources/login/
screen.js
120
var
propertyName
= this.getPropertyNameOf_(observer);
121
if (
propertyName
) {
122
if (!this.contextObservers_.hasOwnProperty(
propertyName
))
123
this.contextObservers_[
propertyName
] = observer.bind(this);
124
realObserver = this.contextObservers_[
propertyName
];
136
var
propertyName
= this.getPropertyNameOf_(observer);
137
if (
propertyName
) {
138
if (!this.contextObservers_.hasOwnProperty(
propertyName
))
140
realObserver = this.contextObservers_[
propertyName
];
141
delete this.contextObservers_[
propertyName
];
[
all
...]
/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"
Completed in 434 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>