Searched refs:newItem (Results 1 - 25 of 30) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/svg/properties/
H A DSVGListProperty.h126 ListItemType initializeValues(const ListItemType& newItem, ExceptionState& es) argument
132 processIncomingListItemValue(newItem, 0);
136 m_values->append(newItem);
139 return newItem;
154 RefPtr<ListItemTearOff> newItem = passNewItem; local
158 processIncomingListItemWrapper(newItem, 0);
164 m_values->append(newItem->propertyReference());
165 m_wrappers->append(newItem);
168 return newItem.release();
213 ListItemType insertItemBeforeValues(const ListItemType& newItem, unsigne argument
252 RefPtr<ListItemTearOff> newItem = passNewItem; local
284 replaceItemValues(const ListItemType& newItem, unsigned index, ExceptionState& es) argument
322 RefPtr<ListItemTearOff> newItem = passNewItem; local
397 appendItemValues(const ListItemType& newItem, ExceptionState& es) argument
424 RefPtr<ListItemTearOff> newItem = passNewItem; local
[all...]
H A DSVGStaticListPropertyTearOff.h52 ListItemType initialize(const ListItemType& newItem, ExceptionState& es) argument
54 return Base::initializeValues(newItem, es);
62 ListItemType insertItemBefore(const ListItemType& newItem, unsigned index, ExceptionState& es) argument
64 return Base::insertItemBeforeValues(newItem, index, es);
67 ListItemType replaceItem(const ListItemType& newItem, unsigned index, ExceptionState& es) argument
69 return Base::replaceItemValues(newItem, index, es);
77 ListItemType appendItem(const ListItemType& newItem, ExceptionState& es) argument
79 return Base::appendItemValues(newItem, es);
H A DSVGPathSegListPropertyTearOff.h80 ListItemType newItem = passNewItem; local
81 return Base::initializeValues(newItem, es);
94 ListItemType newItem = passNewItem; local
95 return Base::insertItemBeforeValues(newItem, index, es);
110 ListItemType newItem = passNewItem; local
111 return Base::appendItemValues(newItem, es);
149 virtual bool processIncomingListItemValue(const ListItemType& newItem, unsigned* indexToModify) OVERRIDE;
H A DSVGPathSegListPropertyTearOff.cpp76 ListItemType newItem = passNewItem; local
77 return Base::replaceItemValues(newItem, index, es);
95 bool SVGPathSegListPropertyTearOff::processIncomingListItemValue(const ListItemType& newItem, unsigned* indexToModify) argument
97 SVGPathSegWithContext* newItemWithContext = static_cast<SVGPathSegWithContext*>(newItem.get());
106 // newItem belongs to a SVGPathElement, but its associated SVGAnimatedProperty is not an animated list tear off.
111 // Spec: If newItem is already in a list, it is removed from its previous list before it is inserted into this list.
112 // 'newItem' is already living in another list. If it's not our list, synchronize the other lists wrappers after the removal.
115 int indexToRemove = propertyTearOff->findItem(newItem.get());
118 // Do not remove newItem if already in this list at the target index.
H A DSVGListPropertyTearOff.h159 virtual bool processIncomingListItemWrapper(RefPtr<ListItemTearOff>& newItem, unsigned* indexToModify) argument
161 SVGAnimatedProperty* animatedPropertyOfItem = newItem->animatedProperty();
163 // newItem has been created manually, it doesn't belong to any SVGElement.
168 // newItem belongs to a SVGElement, but its associated SVGAnimatedProperty is not an animated list tear off.
171 // We have to copy the incoming newItem, as we're not allowed to insert this tear off as is into our wrapper cache.
176 newItem = ListItemTearOff::create(newItem->propertyReference());
180 // Spec: If newItem is already in a list, it is removed from its previous list before it is inserted into this list.
181 // 'newItem' is already living in another list. If it's not our list, synchronize the other lists wrappers after the removal.
184 int indexToRemove = propertyTearOff->findItem(newItem
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathSegList.idl31 [StrictTypeChecking, RaisesException] SVGPathSeg initialize(SVGPathSeg newItem);
33 [StrictTypeChecking, RaisesException] SVGPathSeg insertItemBefore(SVGPathSeg newItem, unsigned long index);
34 [StrictTypeChecking, RaisesException] SVGPathSeg replaceItem(SVGPathSeg newItem, unsigned long index);
36 [StrictTypeChecking, RaisesException] SVGPathSeg appendItem(SVGPathSeg newItem);
/external/chromium_org/third_party/icu/source/common/
H A Dulist.c33 static void ulist_addFirstItem(UList *list, UListNode *newItem);
61 static void ulist_addFirstItem(UList *list, UListNode *newItem) { argument
62 newItem->next = NULL;
63 newItem->previous = NULL;
64 list->head = newItem;
65 list->tail = newItem;
70 UListNode *newItem = NULL; local
76 newItem = (UListNode *)uprv_malloc(sizeof(UListNode));
77 if (newItem == NULL) {
81 newItem
97 UListNode *newItem = NULL; local
[all...]
/external/icu4c/common/
H A Dulist.c33 static void ulist_addFirstItem(UList *list, UListNode *newItem);
61 static void ulist_addFirstItem(UList *list, UListNode *newItem) { argument
62 newItem->next = NULL;
63 newItem->previous = NULL;
64 list->head = newItem;
65 list->tail = newItem;
70 UListNode *newItem = NULL; local
76 newItem = (UListNode *)uprv_malloc(sizeof(UListNode));
77 if (newItem == NULL) {
81 newItem
97 UListNode *newItem = NULL; local
[all...]
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
H A DRule.java59 public void addTestCase(TestCase newItem) { argument
60 this.addElement(newItem);
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLFormattingElementList.cpp82 void HTMLFormattingElementList::swapTo(Element* oldElement, PassRefPtr<HTMLStackItem> newItem, const Bookmark& bookmark) argument
85 ASSERT(!contains(newItem->element()));
88 bookmark.mark()->replaceElement(newItem);
93 m_entries.insert(index + 1, newItem);
126 void HTMLFormattingElementList::tryToEnsureNoahsArkConditionQuickly(HTMLStackItem* newItem, Vector<HTMLStackItem*>& remainingCandidates)
137 size_t newItemAttributeCount = newItem->attributes().size();
147 if (newItem->localName() != candidate->localName() || newItem->namespaceURI() != candidate->namespaceURI())
161 void HTMLFormattingElementList::ensureNoahsArkCondition(HTMLStackItem* newItem) argument
164 tryToEnsureNoahsArkConditionQuickly(newItem, candidate
[all...]
H A DHTMLFormattingElementList.h115 void swapTo(Element* oldElement, PassRefPtr<HTMLStackItem> newItem, const Bookmark&);
H A DHTMLTreeBuilder.cpp1568 RefPtr<HTMLStackItem> newItem = m_tree.createElementFromSavedToken(node->stackItem().get()); local
1571 nodeEntry->replaceElement(newItem);
1572 node->replaceElement(newItem.release());
1585 RefPtr<HTMLStackItem> newItem = m_tree.createElementFromSavedToken(formattingElementRecord->stackItem().get()); local
1587 m_tree.takeAllChildren(newItem.get(), furthestBlock);
1589 m_tree.reparent(furthestBlock, newItem.get());
1591 m_tree.activeFormattingElements()->swapTo(formattingElement, newItem, bookmark);
1594 m_tree.openElements()->insertAbove(newItem, furthestBlock);
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPUtilsImpl.java324 XMPNode newItem = null;
327 newItem = new XMPNode(ARRAY_ITEM_NAME, itemValue, null);
328 arrayNode.addChild(newItem);
1068 StringBuffer newItem = new StringBuffer(item.length() + 2);
1079 newItem.append(openQuote).append(item.substring(0, splitPoint));
1083 newItem.append(item.charAt(charOffset));
1087 newItem.append(item.charAt(charOffset));
1091 newItem.append(closeQuote);
1093 item = newItem.toString();
H A DXMPNodeUtils.java584 XMPNode newItem = new XMPNode(ARRAY_ITEM_NAME, null);
585 newItem.setImplicit(true);
586 arrayNode.addChild(newItem);
780 XMPNode newItem = new XMPNode(ARRAY_ITEM_NAME, itemValue, null);
782 newItem.addQualifier(langQual);
786 arrayNode.addChild(newItem);
790 arrayNode.addChild(1, newItem);
/external/skia/tests/
H A DLListTest.cpp238 Iter newItem(iter);
239 newItem.prev();
240 REPORTER_ASSERT(reporter, newItem.get()->fID == id);
250 Iter newItem(iter);
251 newItem.next();
252 REPORTER_ASSERT(reporter, newItem.get()->fID == id);
/external/oprofile/libpopt/
H A Dpopt.c1125 int poptAddItem(poptContext con, poptItem newItem, int flags) argument
1151 (newItem->option.longName ? xstrdup(newItem->option.longName) : NULL);
1152 item->option.shortName = newItem->option.shortName;
1153 item->option.argInfo = newItem->option.argInfo;
1154 item->option.arg = newItem->option.arg;
1155 item->option.val = newItem->option.val;
1157 (newItem->option.descrip ? xstrdup(newItem->option.descrip) : NULL);
1159 (newItem
[all...]
H A Dpopt.h344 * @param newItem alias/exec item to add
348 int poptAddItem(poptContext con, poptItem newItem, int flags)
/external/chromium/chrome/browser/resources/bookmark_manager/js/bmm/
H A Dbookmark_tree.js191 var newItem = new BookmarkTreeItem(bookmarkNode);
192 addTreeItem(parentItem, newItem);
/external/chromium_org/chrome/browser/resources/bookmark_manager/js/bmm/
H A Dbookmark_tree.js188 var newItem = new BookmarkTreeItem(bookmarkNode);
189 addTreeItem(parentItem, newItem);
/external/chromium/chrome/browser/resources/ntp/
H A Dmost_visited.js142 var newItem;
145 newItem = data[i];
150 if (!newItem) {
159 oldData.splice(oldIndex, 1, newItem);
/external/oprofile/
H A Dpopt.h344 * @param newItem alias/exec item to add
348 int poptAddItem(poptContext con, poptItem newItem, int flags)
/external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/js/cr/ui/
H A Dlist.js971 var newItem = cachedItems[currentIndex] || self.createItem(dataItem);
972 newItem.listIndex = currentIndex;
973 newCachedItems[currentIndex] = newItem;
974 self.insertBefore(newItem, item);
/external/chromium_org/ui/webui/resources/js/cr/ui/
H A Dlist.js944 var newItem = self.cachedItems_[currentIndex] ||
946 newItem.listIndex = currentIndex;
947 self.cachedItems_[currentIndex] = newItem;
948 self.insertBefore(newItem, item);
/external/chromium/chrome/browser/resources/bookmark_manager/js/
H A Dmain.js1382 var newItem;
1384 newItem = bmm.treeLookup[newNode.id];
1385 tree.selectedItem = newItem;
1386 newItem.editing = true;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 3102 milliseconds

12