Searched refs:passNewItem (Results 1 – 3 of 3) sorted by relevance
/external/webkit/Source/WebCore/svg/properties/ |
D | SVGPathSegListPropertyTearOff.h | 74 PassListItemType initialize(PassListItemType passNewItem, ExceptionCode& ec) in initialize() argument 77 if (!passNewItem) { in initialize() 82 ListItemType newItem = passNewItem; in initialize() 89 … PassListItemType insertItemBefore(PassListItemType passNewItem, unsigned index, ExceptionCode& ec) in insertItemBefore() argument 92 if (!passNewItem) { in insertItemBefore() 97 ListItemType newItem = passNewItem; in insertItemBefore() 102 PassListItemType replaceItem(PassListItemType passNewItem, unsigned index, ExceptionCode& ec) in replaceItem() argument 105 if (!passNewItem) { in replaceItem() 110 ListItemType newItem = passNewItem; in replaceItem() 117 PassListItemType appendItem(PassListItemType passNewItem, ExceptionCode& ec) in appendItem() argument [all …]
|
D | SVGListPropertyTearOff.h | 82 PassListItemTearOff initialize(PassListItemTearOff passNewItem, ExceptionCode& ec) in initialize() argument 84 return Base::initializeValuesAndWrappers(m_animatedProperty.get(), passNewItem, ec); in initialize() 92 …PassListItemTearOff insertItemBefore(PassListItemTearOff passNewItem, unsigned index, ExceptionCod… in insertItemBefore() argument 94 … return Base::insertItemBeforeValuesAndWrappers(m_animatedProperty.get(), passNewItem, index, ec); in insertItemBefore() 97 …PassListItemTearOff replaceItem(PassListItemTearOff passNewItem, unsigned index, ExceptionCode& ec) in replaceItem() argument 99 return Base::replaceItemValuesAndWrappers(m_animatedProperty.get(), passNewItem, index, ec); in replaceItem() 107 PassListItemTearOff appendItem(PassListItemTearOff passNewItem, ExceptionCode& ec) in appendItem() argument 109 return Base::appendItemValuesAndWrappers(m_animatedProperty.get(), passNewItem, ec); in appendItem()
|
D | SVGListProperty.h | 105 …rappers(AnimatedListPropertyTearOff* animatedList, PassListItemTearOff passNewItem, ExceptionCode&… in initializeValuesAndWrappers() argument 112 if (!passNewItem) { in initializeValuesAndWrappers() 120 RefPtr<ListItemTearOff> newItem = passNewItem; in initializeValuesAndWrappers() 202 …rappers(AnimatedListPropertyTearOff* animatedList, PassListItemTearOff passNewItem, unsigned index… in insertItemBeforeValuesAndWrappers() argument 209 if (!passNewItem) { in insertItemBeforeValuesAndWrappers() 221 RefPtr<ListItemTearOff> newItem = passNewItem; in insertItemBeforeValuesAndWrappers() 274 …rappers(AnimatedListPropertyTearOff* animatedList, PassListItemTearOff passNewItem, unsigned index… in replaceItemValuesAndWrappers() argument 282 if (!passNewItem) { in replaceItemValuesAndWrappers() 289 RefPtr<ListItemTearOff> newItem = passNewItem; in replaceItemValuesAndWrappers() 380 …rappers(AnimatedListPropertyTearOff* animatedList, PassListItemTearOff passNewItem, ExceptionCode&… in appendItemValuesAndWrappers() argument [all …]
|