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

/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecompiler/
H A DStaticPropertyAnalysis.h43 void addPropertyIndex(unsigned propertyIndex) { m_propertyIndexes.add(propertyIndex); } argument
H A DStaticPropertyAnalyzer.h43 void putById(int dst, unsigned propertyIndex); // propertyIndex is an index into a uniqued set of strings.
79 inline void StaticPropertyAnalyzer::putById(int dst, unsigned propertyIndex) argument
84 analysis->addPropertyIndex(propertyIndex);
H A DBytecodeGenerator.cpp1424 unsigned propertyIndex = addConstant(property); local
1426 m_staticPropertyAnalyzer.putById(base->index(), propertyIndex);
1432 instructions().append(propertyIndex);
1454 unsigned propertyIndex = addConstant(property); local
1456 m_staticPropertyAnalyzer.putById(base->index(), propertyIndex);
1462 instructions().append(propertyIndex);
1476 unsigned propertyIndex = addConstant(property); local
1478 m_staticPropertyAnalyzer.putById(base->index(), propertyIndex);
1482 instructions().append(propertyIndex);
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLPropertiesCollection.cpp123 for (unsigned propertyIndex = 0; propertyIndex < itemProperty->length(); ++propertyIndex)
124 updatePropertyCache(itemProperty->item(propertyIndex));
/macosx-10.9.5/JavaScriptCore-7537.78.1/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.cpp344 JSValueRef JSObjectGetPropertyAtIndex(JSContextRef ctx, JSObjectRef object, unsigned propertyIndex, JSValueRef* exception) argument
355 JSValue jsValue = jsObject->get(exec, propertyIndex);
365 void JSObjectSetPropertyAtIndex(JSContextRef ctx, JSObjectRef object, unsigned propertyIndex, JSValueRef value, JSValueRef* exception) argument
377 jsObject->methodTable()->putByIndex(jsObject, exec, propertyIndex, jsValue, false);
H A DJSCallbackObjectFunctions.h297 void JSCallbackObject<Parent>::putByIndex(JSCell* cell, ExecState* exec, unsigned propertyIndex, JSValue value, bool shouldThrow) argument
304 Identifier propertyName = Identifier(exec, String::number(propertyIndex));
352 return Parent::putByIndex(thisObject, exec, propertyIndex, value, shouldThrow);
/macosx-10.9.5/WebCore-7537.78.1/page/animation/
H A DCompositeAnimation.cpp113 for (int propertyIndex = 0; propertyIndex < CSSPropertyAnimation::getNumProperties(); ++propertyIndex) {
117 prop = CSSPropertyAnimation::getPropertyAtIndex(propertyIndex, isShorthand);
/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DInspectorCSSAgent.h119 virtual void setPropertyText(ErrorString*, const RefPtr<InspectorObject>& styleId, int propertyIndex, const String& text, bool overwrite, RefPtr<TypeBuilder::CSS::CSSStyle>& result);
120 virtual void toggleProperty(ErrorString*, const RefPtr<InspectorObject>& styleId, int propertyIndex, bool disable, RefPtr<TypeBuilder::CSS::CSSStyle>& result);
H A DInspectorStyleSheet.h205 bool setPropertyText(const InspectorCSSId&, unsigned propertyIndex, const String& text, bool overwrite, String* oldPropertyText, ExceptionCode&);
206 bool toggleProperty(const InspectorCSSId&, unsigned propertyIndex, bool disable, ExceptionCode&);
H A DInspectorCSSAgent.cpp407 SetPropertyTextAction(InspectorStyleSheet* styleSheet, const InspectorCSSId& cssId, unsigned propertyIndex, const String& text, bool overwrite) argument
410 , m_propertyIndex(propertyIndex)
468 TogglePropertyAction(InspectorStyleSheet* styleSheet, const InspectorCSSId& cssId, unsigned propertyIndex, bool disable) argument
471 , m_propertyIndex(propertyIndex)
865 void InspectorCSSAgent::setPropertyText(ErrorString* errorString, const RefPtr<InspectorObject>& fullStyleId, int propertyIndex, const String& text, bool overwrite, RefPtr<TypeBuilder::CSS::CSSStyle>& result) argument
875 bool success = m_domAgent->history()->perform(adoptPtr(new SetPropertyTextAction(inspectorStyleSheet, compoundId, propertyIndex, text, overwrite)), ec);
881 void InspectorCSSAgent::toggleProperty(ErrorString* errorString, const RefPtr<InspectorObject>& fullStyleId, int propertyIndex, bool disable, RefPtr<TypeBuilder::CSS::CSSStyle>& result) argument
891 bool success = m_domAgent->history()->perform(adoptPtr(new TogglePropertyAction(inspectorStyleSheet, compoundId, propertyIndex, disable)), ec);
H A DInspectorStyleSheet.cpp726 int propertyIndex = 0; local
730 while (propertyIndex < propertyCount) {
731 const WebCore::CSSPropertySourceData& currentProperty = sourcePropertyData->at(propertyIndex++);
748 ++propertyIndex;
1129 bool InspectorStyleSheet::setPropertyText(const InspectorCSSId& id, unsigned propertyIndex, const String& text, bool overwrite, String* oldText, ExceptionCode& ec) argument
1137 bool success = inspectorStyle->setPropertyText(propertyIndex, text, overwrite, oldText, ec);
1143 bool InspectorStyleSheet::toggleProperty(const InspectorCSSId& id, unsigned propertyIndex, bool disable, ExceptionCode& ec) argument
1151 bool success = inspectorStyle->toggleProperty(propertyIndex, disable, ec);
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DCSSStyleModel.js622 var propertyIndex = 0;
631 this[propertyIndex] = name;
633 ++propertyIndex;
635 this.length = propertyIndex;

Completed in 215 milliseconds