Home
last modified time | relevance | path

Searched refs:newItem (Results 1 – 23 of 23) sorted by relevance

/external/webkit/Source/WebCore/svg/properties/
DSVGListProperty.h89 …ListItemType initializeValues(PropertyType& values, const ListItemType& newItem, ExceptionCode& ec) in initializeValues() argument
95 processIncomingListItemValue(newItem, 0); in initializeValues()
99 values.append(newItem); in initializeValues()
102 return newItem; in initializeValues()
120 RefPtr<ListItemTearOff> newItem = passNewItem; in initializeValuesAndWrappers() local
124 processIncomingListItemWrapper(newItem, 0); in initializeValuesAndWrappers()
130 values.append(newItem->propertyReference()); in initializeValuesAndWrappers()
131 wrappers.append(newItem); in initializeValuesAndWrappers()
134 return newItem.release(); in initializeValuesAndWrappers()
182 …ListItemType insertItemBeforeValues(PropertyType& values, const ListItemType& newItem, unsigned in… in insertItemBeforeValues() argument
[all …]
DSVGStaticListPropertyTearOff.h53 ListItemType initialize(const ListItemType& newItem, ExceptionCode& ec) in initialize() argument
55 return Base::initializeValues(m_values, newItem, ec); in initialize()
63 ListItemType insertItemBefore(const ListItemType& newItem, unsigned index, ExceptionCode& ec) in insertItemBefore() argument
65 return Base::insertItemBeforeValues(m_values, newItem, index, ec); in insertItemBefore()
68 ListItemType replaceItem(const ListItemType& newItem, unsigned index, ExceptionCode& ec) in replaceItem() argument
70 return Base::replaceItemValues(m_values, newItem, index, ec); in replaceItem()
78 ListItemType appendItem(const ListItemType& newItem, ExceptionCode& ec) in appendItem() argument
80 return Base::appendItemValues(m_values, newItem, ec); in appendItem()
DSVGPathSegListPropertyTearOff.h82 ListItemType newItem = passNewItem; in initialize() local
84 return Base::initializeValues(values, newItem, ec); in initialize()
97 ListItemType newItem = passNewItem; in insertItemBefore() local
99 return Base::insertItemBeforeValues(values, newItem, index, ec); in insertItemBefore()
110 ListItemType newItem = passNewItem; in replaceItem() local
112 return Base::replaceItemValues(values, newItem, index, ec); in replaceItem()
125 ListItemType newItem = passNewItem; in appendItem() local
127 return Base::appendItemValues(values, newItem, ec); in appendItem()
146 virtual void processIncomingListItemValue(const ListItemType& newItem, unsigned* indexToModify);
DSVGListPropertyTearOff.h143 …virtual void processIncomingListItemWrapper(RefPtr<ListItemTearOff>& newItem, unsigned* indexToMod… in processIncomingListItemWrapper() argument
145 SVGAnimatedProperty* animatedPropertyOfItem = newItem->animatedProperty(); in processIncomingListItemWrapper()
160 newItem = ListItemTearOff::create(newItem->propertyReference()); in processIncomingListItemWrapper()
167 …nimatedListPropertyTearOff*>(animatedPropertyOfItem)->removeItemFromList(newItem.get(), livesInOth… in processIncomingListItemWrapper()
DSVGPathSegListPropertyTearOff.cpp75 void SVGPathSegListPropertyTearOff::processIncomingListItemValue(const ListItemType& newItem, unsig… in processIncomingListItemValue() argument
77 SVGPathSegWithContext* newItemWithContext = static_cast<SVGPathSegWithContext*>(newItem.get()); in processIncomingListItemValue()
94 …PathSegListPropertyTearOff*>(animatedPropertyOfItem)->removeItemFromList(newItem.get(), livesInOth… in processIncomingListItemValue()
/external/icu4c/common/
Dulist.c33 static void ulist_addFirstItem(UList *list, UListNode *newItem);
61 static void ulist_addFirstItem(UList *list, UListNode *newItem) { in ulist_addFirstItem() argument
62 newItem->next = NULL; in ulist_addFirstItem()
63 newItem->previous = NULL; in ulist_addFirstItem()
64 list->head = newItem; in ulist_addFirstItem()
65 list->tail = newItem; in ulist_addFirstItem()
70 UListNode *newItem = NULL; in ulist_addItemEndList() local
76 newItem = (UListNode *)uprv_malloc(sizeof(UListNode)); in ulist_addItemEndList()
77 if (newItem == NULL) { in ulist_addItemEndList()
81 newItem->data = (void *)(data); in ulist_addItemEndList()
[all …]
/external/webkit/Source/WebKit/android/jni/
DWebHistory.cpp169 RefPtr<WebCore::HistoryItem> newItem = WebCore::HistoryItem::create(); in WebHistoryInflate() local
170 WebHistoryItem* bridge = new WebHistoryItem(newItem.get()); in WebHistoryInflate()
171 newItem->setBridge(bridge); in WebHistoryInflate()
180 readItemRecursive(newItem.get(), &ptr, (int)size); in WebHistoryInflate()
186 pFrame->page()->backForwardList()->addItem(newItem); in WebHistoryInflate()
189 bridge->updateHistoryItem(newItem.get()); in WebHistoryInflate()
403 jobject newItem = env->NewObject(clazz, gWebHistoryItemClassic.mInit, in AddItem() local
412 env->CallVoidMethod(list.get(), gWebBackForwardListClassic.mAddHistoryItem, newItem); in AddItem()
415 env->DeleteLocalRef(newItem); in AddItem()
701 static bool readItemRecursive(WebCore::HistoryItem* newItem, in readItemRecursive() argument
[all …]
/external/webkit/Source/WebCore/platform/win/
DContextMenuWin.cpp96 UINT newItem = 0; in createNativeMenuFromItems() local
111 newItem = reinterpret_cast<UINT>(menuItem.hSubMenu); in createNativeMenuFromItems()
114 newItem = menuItem.wID; in createNativeMenuFromItems()
117 ::InsertMenuW(menu, i, flags, newItem, title); in createNativeMenuFromItems()
/external/webkit/Source/WebCore/svg/
DSVGPathSegList.idl34 … [StrictTypeChecking, RequiresAllArguments=Raise] SVGPathSeg initialize(in SVGPathSeg newItem)
38 …g, RequiresAllArguments=Raise] SVGPathSeg insertItemBefore(in SVGPathSeg newItem, in unsigned long…
40 …ecking, RequiresAllArguments=Raise] SVGPathSeg replaceItem(in SVGPathSeg newItem, in unsigned long…
44 … [StrictTypeChecking, RequiresAllArguments=Raise] SVGPathSeg appendItem(in SVGPathSeg newItem)
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
DRule.java59 public void addTestCase(TestCase newItem) { in addTestCase() argument
60 this.addElement(newItem); in addTestCase()
/external/skia/tests/
DLListTest.cpp238 Iter newItem(iter); in TestTLList() local
239 newItem.prev(); in TestTLList()
240 REPORTER_ASSERT(reporter, newItem.get()->fID == id); in TestTLList()
250 Iter newItem(iter); in TestTLList() local
251 newItem.next(); in TestTLList()
252 REPORTER_ASSERT(reporter, newItem.get()->fID == id); in TestTLList()
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
DXMPUtilsImpl.java324 XMPNode newItem = null; in separateArrayItems() local
327 newItem = new XMPNode(ARRAY_ITEM_NAME, itemValue, null); in separateArrayItems()
328 arrayNode.addChild(newItem); in separateArrayItems()
1068 StringBuffer newItem = new StringBuffer(item.length() + 2); in applyQuotes() local
1079 newItem.append(openQuote).append(item.substring(0, splitPoint)); in applyQuotes()
1083 newItem.append(item.charAt(charOffset)); in applyQuotes()
1087 newItem.append(item.charAt(charOffset)); in applyQuotes()
1091 newItem.append(closeQuote); in applyQuotes()
1093 item = newItem.toString(); in applyQuotes()
DXMPNodeUtils.java584 XMPNode newItem = new XMPNode(ARRAY_ITEM_NAME, null); in findIndexedItem() local
585 newItem.setImplicit(true); in findIndexedItem()
586 arrayNode.addChild(newItem); in findIndexedItem()
780 XMPNode newItem = new XMPNode(ARRAY_ITEM_NAME, itemValue, null); in appendLangItem() local
782 newItem.addQualifier(langQual); in appendLangItem()
786 arrayNode.addChild(newItem); in appendLangItem()
790 arrayNode.addChild(1, newItem); in appendLangItem()
/external/oprofile/libpopt/
Dpopt.c1125 int poptAddItem(poptContext con, poptItem newItem, int flags) in poptAddItem() argument
1151 (newItem->option.longName ? xstrdup(newItem->option.longName) : NULL); in poptAddItem()
1152 item->option.shortName = newItem->option.shortName; in poptAddItem()
1153 item->option.argInfo = newItem->option.argInfo; in poptAddItem()
1154 item->option.arg = newItem->option.arg; in poptAddItem()
1155 item->option.val = newItem->option.val; in poptAddItem()
1157 (newItem->option.descrip ? xstrdup(newItem->option.descrip) : NULL); in poptAddItem()
1159 (newItem->option.argDescrip ? xstrdup(newItem->option.argDescrip) : NULL); in poptAddItem()
1160 item->argc = newItem->argc; in poptAddItem()
1161 item->argv = newItem->argv; in poptAddItem()
Dpopt.h348 int poptAddItem(poptContext con, poptItem newItem, int flags)
/external/webkit/Source/WebKit2/UIProcess/
DWebBackForwardList.cpp60 void WebBackForwardList::addItem(WebBackForwardListItem* newItem) in addItem() argument
91 m_entries.insert(m_current + 1, newItem); in addItem()
95 m_page->didChangeBackForwardList(newItem, &removedItems); in addItem()
/external/chromium/chrome/browser/resources/bookmark_manager/js/bmm/
Dbookmark_tree.js191 var newItem = new BookmarkTreeItem(bookmarkNode);
192 addTreeItem(parentItem, newItem);
/external/chromium/chrome/browser/resources/ntp/
Dmost_visited.js142 var newItem;
145 newItem = data[i];
150 if (!newItem) {
159 oldData.splice(oldIndex, 1, newItem);
/external/oprofile/
Dpopt.h348 int poptAddItem(poptContext con, poptItem newItem, int flags)
/external/chromium/chrome/browser/resources/bookmark_manager/js/
Dmain.js1382 var newItem;
1384 newItem = bmm.treeLookup[newNode.id];
1385 tree.selectedItem = newItem;
1386 newItem.editing = true;
/external/clang/test/Analysis/
Dmalloc.mm182 void *newItem = malloc(4);
183 OSAtomicEnqueue(pool, newItem, 4);
/external/webkit/Source/WebKit/win/
DWebView.cpp5176 RefPtr<HistoryItem> newItem = otherBackForwardList->itemAtIndex(i)->copy(); in loadBackForwardListFromOtherView() local
5178 newItemToGoTo = newItem.get(); in loadBackForwardListFromOtherView()
5179 backForwardList->addItem(newItem.release()); in loadBackForwardListFromOtherView()
/external/webkit/Source/WebKit/mac/WebView/
DWebView.mm1360 RefPtr<HistoryItem> newItem = otherBackForwardList->itemAtIndex(i)->copy();
1362 newItemToGoTo = newItem.get();
1363 backForwardList->addItem(newItem.release());