/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGPathSegList.idl | 36 [RaisesException] SVGPathSeg initialize(SVGPathSeg newItem); 39 [RaisesException] SVGPathSeg insertItemBefore(SVGPathSeg newItem, unsigned long index); 40 [RaisesException] SVGPathSeg replaceItem(SVGPathSeg newItem, unsigned long index); 42 [RaisesException] SVGPathSeg appendItem(SVGPathSeg newItem);
|
SVGPathSegListTearOff.h | 50 RefPtr<ItemTearOffType> newItem = passNewItem; 51 newItem->setContextElement(contextElement); 52 return newItem.release();
|
SVGStringList.cpp | 53 void SVGStringList::insertItemBefore(const String& newItem, size_t index) 61 m_values.insert(index, newItem); 74 void SVGStringList::appendItem(const String& newItem) 76 m_values.append(newItem); 79 void SVGStringList::replaceItem(const String& newItem, size_t index, ExceptionState& exceptionState) 85 m_values[index] = newItem;
|
/external/chromium_org/third_party/icu/source/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/icu/icu4c/source/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/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/chromium_org/third_party/WebKit/Source/core/html/parser/ |
HTMLFormattingElementList.cpp | 82 void HTMLFormattingElementList::swapTo(Element* oldElement, PassRefPtrWillBeRawPtr<HTMLStackItem> newItem, const Bookmark& bookmark) 85 ASSERT(!contains(newItem->element())); 88 bookmark.mark()->replaceElement(newItem); 93 m_entries.insert(index + 1, newItem); 126 void HTMLFormattingElementList::tryToEnsureNoahsArkConditionQuickly(HTMLStackItem* newItem, WillBeHeapVector<RawPtrWillBeMember<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) 164 tryToEnsureNoahsArkConditionQuickly(newItem, candidates) [all...] |
HTMLFormattingElementList.h | 119 void swapTo(Element* oldElement, PassRefPtrWillBeRawPtr<HTMLStackItem> newItem, const Bookmark&);
|
HTMLTreeBuilder.cpp | [all...] |
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/ |
SVGListPropertyHelper.h | 113 RefPtr<ItemPropertyType> newItem = passNewItem; 115 ASSERT(newItem); 116 m_values.append(newItem); 117 newItem->setOwnerList(this); 214 RefPtr<ItemPropertyType> newItem = passNewItem; 217 removeFromOldOwnerListAndAdjustIndex(newItem, 0); 221 append(newItem); 222 return newItem.release(); 243 RefPtr<ItemPropertyType> newItem = passNewItem; 245 // Spec: If newItem is already in a list, it is removed from its previous list before it is inserted into this list [all...] |
SVGListPropertyTearOffHelper.h | 49 RefPtr<ItemTearOffType> newItem = passNewItem; 51 // |newItem| is immutable, OR 52 // |newItem| belongs to a SVGElement, but it does not belong to an animated list 54 if (newItem->isImmutable() 55 || (newItem->contextElement() && !newItem->target()->ownerList())) { 56 // We have to copy the incoming |newItem|, 61 return newItem->target()->clone(); 64 newItem->attachToSVGElementAttribute(contextElement, attributeName); 65 return newItem->target() [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/ |
select_widget.js | 39 var newItem = document.createElement('p'); 40 newItem.innerHTML = item.innerHTML; 41 newItem.id = i; 42 newItem.setAttribute('role', 'menuitem'); 43 container.appendChild(newItem);
|
/external/chromium_org/ui/file_manager/file_manager/common/js/ |
progress_center_common.js | 175 var newItem = new ProgressCenterItem(); 176 newItem.id = this.id; 177 newItem.state = this.state; 178 newItem.message = this.message; 179 newItem.progressMax = this.progressMax; 180 newItem.progressValue = this.progressValue; 181 newItem.type = this.type; 182 newItem.single = this.single; 183 newItem.quiet = this.quiet; 184 newItem.cancelCallback = this.cancelCallback [all...] |
/external/chromium_org/content/renderer/ |
history_entry.h | 86 HistoryEntry* CloneAndReplace(const blink::WebHistoryItem& newItem,
|
/external/chromium_org/third_party/skia/tests/ |
LListTest.cpp | 236 Iter newItem(iter); 237 newItem.prev(); 238 REPORTER_ASSERT(reporter, newItem.get()->fID == id); 248 Iter newItem(iter); 249 newItem.next(); 250 REPORTER_ASSERT(reporter, newItem.get()->fID == id);
|
/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)
|
/cts/tests/tests/widget/src/android/widget/cts/ |
ListViewTest.java | 780 final View newItem = listView.getChildAt(2); 781 final CharSequence newText = ((TextView) newItem.findViewById(android.R.id.text1)) 817 final View newItem = listView.getChildAt(1); 818 final CharSequence newText = ((TextView) newItem.findViewById(android.R.id.text1)) 821 Assert.assertTrue(newItem.hasTransientState()); 823 Assert.assertEquals(tag, newItem.getTag());
|
/external/chromium_org/ui/file_manager/file_manager/foreground/js/ui/ |
progress_center_panel.js | 306 var newItem = targetGroup.getItem(item.id); 308 if (newItem) { 313 itemElement.update(newItem, targetGroup.isAnimated(item.id)); 337 var newItem = targetGroup.getItem(itemId); 339 if (!newItem && itemElement)
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.jface_3.6.1.M20100825-0800.jar | |
org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar | |
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar | |
org.eclipse.ui.ide_3.6.2.M20101117-0800.jar | |
/external/antlr/antlr-3.4/lib/ |
antlr-3.4-complete.jar | |