HomeSort by relevance Sort by last modified time
    Searched refs:newItem (Results 1 - 25 of 35) sorted by null

1 2

  /external/webkit/Source/WebCore/svg/properties/
SVGListProperty.h 89 ListItemType initializeValues(PropertyType& values, const ListItemType& newItem, ExceptionCode& ec)
95 processIncomingListItemValue(newItem, 0);
99 values.append(newItem);
102 return newItem;
120 RefPtr<ListItemTearOff> newItem = passNewItem;
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, unsigned index, ExceptionCode& ec
    [all...]
SVGStaticListPropertyTearOff.h 53 ListItemType initialize(const ListItemType& newItem, ExceptionCode& ec)
55 return Base::initializeValues(m_values, newItem, ec);
63 ListItemType insertItemBefore(const ListItemType& newItem, unsigned index, ExceptionCode& ec)
65 return Base::insertItemBeforeValues(m_values, newItem, index, ec);
68 ListItemType replaceItem(const ListItemType& newItem, unsigned index, ExceptionCode& ec)
70 return Base::replaceItemValues(m_values, newItem, index, ec);
78 ListItemType appendItem(const ListItemType& newItem, ExceptionCode& ec)
80 return Base::appendItemValues(m_values, newItem, ec);
SVGPathSegListPropertyTearOff.h 82 ListItemType newItem = passNewItem;
84 return Base::initializeValues(values, newItem, ec);
97 ListItemType newItem = passNewItem;
99 return Base::insertItemBeforeValues(values, newItem, index, ec);
110 ListItemType newItem = passNewItem;
112 return Base::replaceItemValues(values, newItem, index, ec);
125 ListItemType newItem = passNewItem;
127 return Base::appendItemValues(values, newItem, ec);
146 virtual void processIncomingListItemValue(const ListItemType& newItem, unsigned* indexToModify);
SVGPathSegListPropertyTearOff.cpp 75 void SVGPathSegListPropertyTearOff::processIncomingListItemValue(const ListItemType& newItem, unsigned* indexToModify)
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);
SVGListPropertyTearOff.h 143 virtual void processIncomingListItemWrapper(RefPtr<ListItemTearOff>& newItem, unsigned* indexToModify)
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.get(), livesInOtherList)
    [all...]
  /external/icu4c/common/
ulist.c 33 static void ulist_addFirstItem(UList *list, UListNode *newItem);
61 static void ulist_addFirstItem(UList *list, UListNode *newItem) {
62 newItem->next = NULL;
63 newItem->previous = NULL;
64 list->head = newItem;
65 list->tail = newItem;
70 UListNode *newItem = NULL;
76 newItem = (UListNode *)uprv_malloc(sizeof(UListNode));
77 if (newItem == NULL) {
81 newItem->data = (void *)(data)
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGPathSegList.idl 34 [StrictTypeChecking, RequiresAllArguments=Raise] SVGPathSeg initialize(in SVGPathSeg newItem)
38 [StrictTypeChecking, RequiresAllArguments=Raise] SVGPathSeg insertItemBefore(in SVGPathSeg newItem, in unsigned long index)
40 [StrictTypeChecking, RequiresAllArguments=Raise] SVGPathSeg replaceItem(in SVGPathSeg newItem, in unsigned long index)
44 [StrictTypeChecking, RequiresAllArguments=Raise] SVGPathSeg appendItem(in SVGPathSeg newItem)
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
Rule.java 59 public void addTestCase(TestCase newItem) {
60 this.addElement(newItem);
  /external/webkit/Source/WebCore/platform/win/
ContextMenuWin.cpp 96 UINT newItem = 0;
111 newItem = reinterpret_cast<UINT>(menuItem.hSubMenu);
114 newItem = menuItem.wID;
117 ::InsertMenuW(menu, i, flags, newItem, title);
  /external/webkit/Source/WebKit/android/jni/
WebHistory.cpp 169 RefPtr<WebCore::HistoryItem> newItem = WebCore::HistoryItem::create();
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, gWebHistoryItemClassic.mInit,
412 env->CallVoidMethod(list.get(), gWebBackForwardListClassic.mAddHistoryItem, newItem);
415 env->DeleteLocalRef(newItem);
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPUtilsImpl.java 324 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();
    [all...]
XMPNodeUtils.java 584 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/
LListTest.cpp 238 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/webkit/Source/WebKit2/UIProcess/
WebBackForwardList.cpp 60 void WebBackForwardList::addItem(WebBackForwardListItem* newItem)
91 m_entries.insert(m_current + 1, newItem);
95 m_page->didChangeBackForwardList(newItem, &removedItems);
  /external/oprofile/libpopt/
popt.c 1125 int poptAddItem(poptContext con, poptItem newItem, int flags)
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->option.argDescrip ? xstrdup(newItem->option.argDescrip) : NULL)
    [all...]
popt.h 344 * @param newItem alias/exec item to add
348 int poptAddItem(poptContext con, poptItem newItem, int flags)
  /external/oprofile/
popt.h 344 * @param newItem alias/exec item to add
348 int poptAddItem(poptContext con, poptItem newItem, int flags)
  /packages/apps/Settings/src/com/android/settings/applications/
RunningState.java 818 SparseArray<MergedItem> userItems, MergedItem newItem) {
819 MergedItem userItem = userItems.get(newItem.mUserId);
823 userItem = new MergedItem(newItem.mUserId);
824 userItems.put(newItem.mUserId, userItem);
829 if ((userItem.mUser=mUsers.get(newItem.mUserId)) == null) {
831 UserInfo info = mUm.getUserInfo(newItem.mUserId);
    [all...]
  /frameworks/base/media/libdrm/mobile1/src/jni/
drm1_jni.c 96 static DrmData * newItem(void)
579 drmInData = newItem();
928 drmInData = newItem();
  /external/chromium/chrome/browser/resources/bookmark_manager/js/
main.js     [all...]
  /external/webkit/Source/WebKit/win/
WebView.cpp     [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebView.mm     [all...]
  /prebuilts/devtools/tools/lib/
sdk-common.jar 
org-eclipse-jface-3.6.2.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jface_3.6.1.M20100825-0800.jar 

Completed in 565 milliseconds

1 2