Searched defs:newItem (Results 1 - 17 of 17) sorted by relevance

/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/webkit/Source/WebCore/platform/win/
H A DContextMenuWin.cpp96 UINT newItem = 0; local
111 newItem = reinterpret_cast<UINT>(menuItem.hSubMenu);
114 newItem = menuItem.wID;
117 ::InsertMenuW(menu, i, flags, newItem, title);
/external/webkit/Source/WebCore/svg/properties/
H A DSVGPathSegListPropertyTearOff.cpp75 void SVGPathSegListPropertyTearOff::processIncomingListItemValue(const ListItemType& newItem, unsigned* indexToModify) argument
77 SVGPathSegWithContext* newItemWithContext = static_cast<SVGPathSegWithContext*>(newItem.get());
86 // newItem belongs to a SVGPathElement, but its associated SVGAnimatedProperty is not an animated list tear off.
91 // Spec: If newItem is already in a list, it is removed from its previous list before it is inserted into this list.
92 // 'newItem' is already living in another list. If it's not our list, synchronize the other lists wrappers after the removal.
94 int removedIndex = static_cast<SVGAnimatedPathSegListPropertyTearOff*>(animatedPropertyOfItem)->removeItemFromList(newItem.get(), livesInOtherList);
H A DSVGStaticListPropertyTearOff.h53 ListItemType initialize(const ListItemType& newItem, ExceptionCode& ec) argument
55 return Base::initializeValues(m_values, newItem, ec);
63 ListItemType insertItemBefore(const ListItemType& newItem, unsigned index, ExceptionCode& ec) argument
65 return Base::insertItemBeforeValues(m_values, newItem, index, ec);
68 ListItemType replaceItem(const ListItemType& newItem, unsigned index, ExceptionCode& ec) argument
70 return Base::replaceItemValues(m_values, newItem, index, ec);
78 ListItemType appendItem(const ListItemType& newItem, ExceptionCode& ec) argument
80 return Base::appendItemValues(m_values, newItem, ec);
H A DSVGListPropertyTearOff.h143 virtual void processIncomingListItemWrapper(RefPtr<ListItemTearOff>& newItem, unsigned* indexToModify) argument
145 SVGAnimatedProperty* animatedPropertyOfItem = newItem->animatedProperty();
147 // newItem has been created manually, it doesn't belong to any SVGElement.
152 // newItem belongs to a SVGElement, but its associated SVGAnimatedProperty is not an animated list tear off.
155 // We have to copy the incoming newItem, as we're not allowed to insert this tear off as is into our wrapper cache.
160 newItem = ListItemTearOff::create(newItem->propertyReference());
164 // Spec: If newItem is already in a list, it is removed from its previous list before it is inserted into this list.
165 // 'newItem' is already living in another list. If it's not our list, synchronize the other lists wrappers after the removal.
167 int removedIndex = static_cast<AnimatedListPropertyTearOff*>(animatedPropertyOfItem)->removeItemFromList(newItem
[all...]
H A DSVGPathSegListPropertyTearOff.h82 ListItemType newItem = passNewItem; local
84 return Base::initializeValues(values, newItem, ec);
97 ListItemType newItem = passNewItem; local
99 return Base::insertItemBeforeValues(values, newItem, index, ec);
110 ListItemType newItem = passNewItem; local
112 return Base::replaceItemValues(values, newItem, index, ec);
125 ListItemType newItem = passNewItem; local
127 return Base::appendItemValues(values, newItem, ec);
146 virtual void processIncomingListItemValue(const ListItemType& newItem, unsigned* indexToModify);
H A DSVGListProperty.h89 ListItemType initializeValues(PropertyType& values, const ListItemType& newItem, ExceptionCode& ec) argument
95 processIncomingListItemValue(newItem, 0);
99 values.append(newItem);
102 return newItem;
120 RefPtr<ListItemTearOff> newItem = passNewItem; local
124 processIncomingListItemWrapper(newItem, 0);
130 values.append(newItem->propertyReference());
131 wrappers.append(newItem);
134 return newItem.release();
182 ListItemType insertItemBeforeValues(PropertyType& values, const ListItemType& newItem, unsigne argument
221 RefPtr<ListItemTearOff> newItem = passNewItem; local
252 replaceItemValues(PropertyType& values, const ListItemType& newItem, unsigned index, ExceptionCode& ec) argument
289 RefPtr<ListItemTearOff> newItem = passNewItem; local
365 appendItemValues(PropertyType& values, const ListItemType& newItem, ExceptionCode& ec) argument
395 RefPtr<ListItemTearOff> newItem = passNewItem; local
[all...]
/external/webkit/Source/WebKit2/UIProcess/
H A DWebBackForwardList.cpp60 void WebBackForwardList::addItem(WebBackForwardListItem* newItem) argument
91 m_entries.insert(m_current + 1, newItem);
95 m_page->didChangeBackForwardList(newItem, &removedItems);
/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/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...]
/external/webkit/Source/WebKit/android/jni/
H A DWebHistory.cpp169 RefPtr<WebCore::HistoryItem> newItem = WebCore::HistoryItem::create(); local
170 WebHistoryItem* bridge = new WebHistoryItem(newItem.get());
171 newItem->setBridge(bridge);
180 readItemRecursive(newItem.get(), &ptr, (int)size);
186 pFrame->page()->backForwardList()->addItem(newItem);
189 bridge->updateHistoryItem(newItem.get());
391 ALOG_ASSERT(item, "newItem must take a valid HistoryItem!");
403 jobject newItem = env->NewObject(clazz, gWebHistoryItem.mInit, local
412 env->CallVoidMethod(list.get(), gWebBackForwardList.mAddHistoryItem, newItem);
415 env->DeleteLocalRef(newItem);
698 readItemRecursive(WebCore::HistoryItem* newItem, const char** pData, int length) argument
[all...]
/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 ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
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 ...
H A Dorg.eclipse.ui.ide_3.6.2.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 184 milliseconds