Home
last modified time | relevance | path

Searched refs:propertyIndex (Results 1 – 20 of 20) sorted by relevance

/external/webkit/Source/WebCore/inspector/
DInspectorCSSAgent.h71 …void setPropertyText(ErrorString*, const RefPtr<InspectorObject>& styleId, int propertyIndex, cons…
72 …void toggleProperty(ErrorString*, const RefPtr<InspectorObject>& styleId, int propertyIndex, bool …
DInspectorCSSAgent.cpp308 …rString* errorString, const RefPtr<InspectorObject>& fullStyleId, int propertyIndex, const String&… in setPropertyText() argument
317 …bool success = inspectorStyleSheet->setPropertyText(errorString, compoundId, propertyIndex, text, … in setPropertyText()
322 …rString* errorString, const RefPtr<InspectorObject>& fullStyleId, int propertyIndex, bool disable,… in toggleProperty() argument
331 …bool success = inspectorStyleSheet->toggleProperty(errorString, compoundId, propertyIndex, disable… in toggleProperty()
DInspectorStyleSheet.h176 …bool setPropertyText(ErrorString*, const InspectorCSSId&, unsigned propertyIndex, const String& te…
177 bool toggleProperty(ErrorString*, const InspectorCSSId&, unsigned propertyIndex, bool disable);
DInspectorStyleSheet.cpp826 …ertyText(ErrorString* errorString, const InspectorCSSId& id, unsigned propertyIndex, const String&… in setPropertyText() argument
834 return inspectorStyle->setPropertyText(errorString, propertyIndex, text, overwrite); in setPropertyText()
837 …eProperty(ErrorString* errorString, const InspectorCSSId& id, unsigned propertyIndex, bool disable) in toggleProperty() argument
845 bool success = inspectorStyle->toggleProperty(errorString, propertyIndex, disable); in toggleProperty()
/external/webkit/Source/JavaScriptCore/API/
DJSObjectRef.h566 …jectGetPropertyAtIndex(JSContextRef ctx, JSObjectRef object, unsigned propertyIndex, JSValueRef* e…
578 …jectSetPropertyAtIndex(JSContextRef ctx, JSObjectRef object, unsigned propertyIndex, JSValueRef va…
DJSObjectRef.cpp290 JSValueRef JSObjectGetPropertyAtIndex(JSContextRef ctx, JSObjectRef object, unsigned propertyIndex,… in JSObjectGetPropertyAtIndex() argument
297 JSValue jsValue = jsObject->get(exec, propertyIndex); in JSObjectGetPropertyAtIndex()
307 void JSObjectSetPropertyAtIndex(JSContextRef ctx, JSObjectRef object, unsigned propertyIndex, JSVal… in JSObjectSetPropertyAtIndex() argument
315 jsObject->put(exec, propertyIndex, jsValue); in JSObjectSetPropertyAtIndex()
/external/webkit/Source/WebCore/inspector/front-end/
DCSSStyleModel.js234 var propertyIndex = 0;
243 this[propertyIndex] = name;
255 ++propertyIndex;
257 this.length = propertyIndex;
/external/webkit/Source/WebCore/page/animation/
DCompositeAnimation.cpp106 … for (int propertyIndex = 0; propertyIndex < AnimationBase::getNumProperties(); ++propertyIndex) { in updateTransitions() local
110 prop = AnimationBase::getPropertyAtIndex(propertyIndex, isShorthand); in updateTransitions()
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
DPropertyTable.java384 int propertyIndex = getPropertyIndex(event.y); in handleMouseDown() local
385 if (propertyIndex >= m_properties.size()) { in handleMouseDown()
389 setActivePropertyInfo(m_properties.get(propertyIndex)); in handleMouseDown()
492 int propertyIndex = getPropertyIndex(event.y); in updateTooltip() local
494 if (propertyIndex < m_properties.size()) { in updateTooltip()
495 PropertyInfo propertyInfo = m_properties.get(propertyIndex); in updateTooltip()
497 int y = (propertyIndex - m_selection) * m_rowHeight; in updateTooltip()
/external/webkit/Source/WebCore/css/
DCSSPrimitiveValue.cpp107 int propertyIndex = valueOrPropertyID - firstCSSProperty; in valueOrPropertyName() local
108 if (!cssPropertyStrings[propertyIndex]) in valueOrPropertyName()
109 …cssPropertyStrings[propertyIndex] = new AtomicString(getPropertyName(static_cast<CSSPropertyID>(va… in valueOrPropertyName()
110 return *cssPropertyStrings[propertyIndex]; in valueOrPropertyName()
/external/skia/src/animator/
DSkDisplayApply.cpp131 target->setProperty(info->propertyIndex(), scriptValue); in applyValues()
474 bool success = target->getProperty(info->propertyIndex(), &scriptValue); in endSave()
478 target->setProperty(info->propertyIndex(), scriptValue); in endSave()
764 bool success = target->getProperty(info->propertyIndex(), &scriptValue); in save()
772 target->setProperty(info->propertyIndex(), scriptValue); in save()
DSkAnimator.cpp321 bool success = element->getProperty(info->propertyIndex(), &scriptValue); in getInt()
347 bool success = element->getProperty(info->propertyIndex(), &scriptValue); in getScalar()
577 element->setProperty(info->propertyIndex(), scriptValue); in setInt()
602 element->setProperty(info->propertyIndex(), scriptValue); in setScalar()
DSkMemberInfo.cpp127 displayable->getProperty(propertyIndex(), &value); in getString()
316 displayable->setProperty(propertyIndex(), scriptValue); in setValue()
367 displayable->setProperty(propertyIndex(), scriptValue); in writeValue()
DSkMemberInfo.h72 int propertyIndex() const { in propertyIndex() function
DSkDisplayXMLParser.cpp155 displayable->setProperty(info->propertyIndex(), scriptValue); in onAddAttributeLen()
DSkDisplayable.cpp531 setProperty(info->propertyIndex(), scriptValue); in setReference()
DSkAnimatorScript2.cpp219 if (displayable->getProperty2(info->propertyIndex(), value) == false) { in invoke()
DSkAnimatorScript.cpp287 if (displayable->getProperty(info->propertyIndex(), value) == false) { in EvalMember()
/external/skia/src/xml/
DSkJSDisplayable.cpp241 bool success = displayable->getProperty(info->propertyIndex(), &scriptValue); in GetProperty()
/external/v8/src/
Dd8.js2564 ProtocolValue.prototype.propertyIndex = function(name) { method in ProtocolValue