Searched refs:propertyIndex (Results 1 - 21 of 21) sorted by relevance

/external/webkit/Source/WebCore/inspector/
H A DInspectorCSSAgent.h71 void setPropertyText(ErrorString*, const RefPtr<InspectorObject>& styleId, int propertyIndex, const String& text, bool overwrite, RefPtr<InspectorObject>* result);
72 void toggleProperty(ErrorString*, const RefPtr<InspectorObject>& styleId, int propertyIndex, bool disable, RefPtr<InspectorObject>* result);
H A DInspectorCSSAgent.cpp308 void InspectorCSSAgent::setPropertyText(ErrorString* errorString, const RefPtr<InspectorObject>& fullStyleId, int propertyIndex, const String& text, bool overwrite, RefPtr<InspectorObject>* result) argument
317 bool success = inspectorStyleSheet->setPropertyText(errorString, compoundId, propertyIndex, text, overwrite);
322 void InspectorCSSAgent::toggleProperty(ErrorString* errorString, const RefPtr<InspectorObject>& fullStyleId, int propertyIndex, bool disable, RefPtr<InspectorObject>* result) argument
331 bool success = inspectorStyleSheet->toggleProperty(errorString, compoundId, propertyIndex, disable);
H A DInspectorStyleSheet.h176 bool setPropertyText(ErrorString*, const InspectorCSSId&, unsigned propertyIndex, const String& text, bool overwrite);
177 bool toggleProperty(ErrorString*, const InspectorCSSId&, unsigned propertyIndex, bool disable);
H A DInspectorStyleSheet.cpp826 bool InspectorStyleSheet::setPropertyText(ErrorString* errorString, const InspectorCSSId& id, unsigned propertyIndex, const String& text, bool overwrite) argument
834 return inspectorStyle->setPropertyText(errorString, propertyIndex, text, overwrite);
837 bool InspectorStyleSheet::toggleProperty(ErrorString* errorString, const InspectorCSSId& id, unsigned propertyIndex, bool disable) argument
845 bool success = inspectorStyle->toggleProperty(errorString, propertyIndex, disable);
/external/webkit/Source/JavaScriptCore/API/
H A DJSObjectRef.h561 @param propertyIndex An integer value that is the property's name.
564 @discussion Calling JSObjectGetPropertyAtIndex is equivalent to calling JSObjectGetProperty with a string containing propertyIndex, but JSObjectGetPropertyAtIndex provides optimized access to numeric properties.
566 JS_EXPORT JSValueRef JSObjectGetPropertyAtIndex(JSContextRef ctx, JSObjectRef object, unsigned propertyIndex, JSValueRef* exception);
573 @param propertyIndex The property's name as a number.
576 @discussion Calling JSObjectSetPropertyAtIndex is equivalent to calling JSObjectSetProperty with a string containing propertyIndex, but JSObjectSetPropertyAtIndex provides optimized access to numeric properties.
578 JS_EXPORT void JSObjectSetPropertyAtIndex(JSContextRef ctx, JSObjectRef object, unsigned propertyIndex, JSValueRef value, JSValueRef* exception);
H A DJSObjectRef.cpp290 JSValueRef JSObjectGetPropertyAtIndex(JSContextRef ctx, JSObjectRef object, unsigned propertyIndex, JSValueRef* exception) argument
297 JSValue jsValue = jsObject->get(exec, propertyIndex);
307 void JSObjectSetPropertyAtIndex(JSContextRef ctx, JSObjectRef object, unsigned propertyIndex, JSValueRef value, JSValueRef* exception) argument
315 jsObject->put(exec, propertyIndex, jsValue);
/external/webkit/Source/WebCore/css/
H A DCSSPrimitiveValue.cpp107 int propertyIndex = valueOrPropertyID - firstCSSProperty; local
108 if (!cssPropertyStrings[propertyIndex])
109 cssPropertyStrings[propertyIndex] = new AtomicString(getPropertyName(static_cast<CSSPropertyID>(valueOrPropertyID)));
110 return *cssPropertyStrings[propertyIndex];
/external/webkit/Source/WebCore/inspector/front-end/
H A DCSSStyleModel.js234 var propertyIndex = 0;
243 this[propertyIndex] = name;
255 ++propertyIndex;
257 this.length = propertyIndex;
/external/webkit/Source/WebCore/page/animation/
H A DCompositeAnimation.cpp106 for (int propertyIndex = 0; propertyIndex < AnimationBase::getNumProperties(); ++propertyIndex) {
110 prop = AnimationBase::getPropertyAtIndex(propertyIndex, isShorthand);
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
H A DPropertyTable.java384 int propertyIndex = getPropertyIndex(event.y);
385 if (propertyIndex >= m_properties.size()) {
389 setActivePropertyInfo(m_properties.get(propertyIndex));
492 int propertyIndex = getPropertyIndex(event.y);
494 if (propertyIndex < m_properties.size()) {
495 PropertyInfo propertyInfo = m_properties.get(propertyIndex);
497 int y = (propertyIndex - m_selection) * m_rowHeight;
/external/skia/src/animator/
H A DSkDisplayApply.cpp131 target->setProperty(info->propertyIndex(), scriptValue);
474 bool success = target->getProperty(info->propertyIndex(), &scriptValue);
478 target->setProperty(info->propertyIndex(), scriptValue);
764 bool success = target->getProperty(info->propertyIndex(), &scriptValue);
772 target->setProperty(info->propertyIndex(), scriptValue);
H A DSkMemberInfo.cpp127 displayable->getProperty(propertyIndex(), &value);
316 displayable->setProperty(propertyIndex(), scriptValue);
367 displayable->setProperty(propertyIndex(), scriptValue);
H A DSkAnimator.cpp321 bool success = element->getProperty(info->propertyIndex(), &scriptValue);
347 bool success = element->getProperty(info->propertyIndex(), &scriptValue);
577 element->setProperty(info->propertyIndex(), scriptValue);
602 element->setProperty(info->propertyIndex(), scriptValue);
H A DSkDisplayXMLParser.cpp155 displayable->setProperty(info->propertyIndex(), scriptValue);
H A DSkMemberInfo.h72 int propertyIndex() const { function in struct:SkMemberInfo
H A DSkDisplayable.cpp531 setProperty(info->propertyIndex(), scriptValue);
H A DSkAnimatorScript2.cpp219 if (displayable->getProperty2(info->propertyIndex(), value) == false) {
H A DSkAnimatorScript.cpp287 if (displayable->getProperty(info->propertyIndex(), value) == false) {
/external/skia/src/xml/
H A DSkJSDisplayable.cpp241 bool success = displayable->getProperty(info->propertyIndex(), &scriptValue);
/external/v8/src/
H A Dd8.js2564 ProtocolValue.prototype.propertyIndex = function(name) {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1426 milliseconds