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

1 2 3 4

  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
getElementsByTagNameNS01.java 70 NodeList newList;
72 newList = doc.getElementsByTagNameNS(namespaceURI, localName);
73 assertSize("throw_Size", 37, newList);
getElementsByTagNameNS08.java 67 NodeList newList;
70 newList = docElem.getElementsByTagNameNS("*", "*");
71 assertSize("listSize", 35, newList); // 36 on the RI, which supports entity references
getElementsByTagNameNS02.java 76 NodeList newList;
81 newList = doc.getElementsByTagNameNS("*", "employee");
82 assertSize("employeeCount", 5, newList);
83 newElement = (Element) newList.item(3);
getElementsByTagNameNS09.java 78 NodeList newList;
85 newList = docElem.getElementsByTagNameNS("*", "employee");
86 assertSize("employeeCount", 5, newList);
87 newElement = (Element) newList.item(3);
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSValueList.cpp 67 RefPtrWillBeRawPtr<CSSValueList> newList = nullptr;
70 newList = createSpaceSeparated();
73 newList = createCommaSeparated();
76 newList = createSlashSeparated();
82 newList->append(m_values[index]);
83 return newList.release();
  /external/javassist/src/main/javassist/expr/
ExprEditor.java 156 NewOp newList;
163 newList = null;
201 context.newList = new NewOp(context.newList, pos,
205 NewOp newList = context.newList;
206 if (newList != null
207 && minfo.getConstPool().isConstructor(newList.type,
210 newList.type, newList.pos)
    [all...]
  /external/srec/srec/ca/
rec_nbes.c 43 CA_NBestList *newList;
48 newList = (CA_NBestList*)srec_nbest_prepare_list(hRecog->recm, num, bestScore);
49 return newList;
  /libcore/luni/src/test/java/tests/org/w3c/dom/
GetElementsByTagNameNS.java 73 NodeList newList;
75 newList = doc.getElementsByTagNameNS(namespaceURI, localName);
77 assertEquals("throw_Size", 36, newList.getLength());
82 NodeList newList;
87 newList = doc.getElementsByTagNameNS("*", "employee");
88 assertEquals("employeeCount", 5, newList.getLength());
89 newElement = (Element) newList.item(3);
178 NodeList newList;
181 newList = docElem.getElementsByTagNameNS("*", "*");
182 assertEquals("listSize", 35, newList.getLength())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
DOMPatchSupport.cpp 147 Vector<OwnPtr<Digest> > newList;
149 newList.append(createDigest(child, 0));
155 newList.append(createDigest(child, &m_unusedNodesMap));
158 newList.append(createDigest(child, 0));
160 if (!innerPatchChildren(parentNode, oldList, newList, exceptionState)) {
213 DOMPatchSupport::diff(const Vector<OwnPtr<Digest> >& oldList, const Vector<OwnPtr<Digest> >& newList)
215 ResultMap newMap(newList.size());
229 for (size_t i = 0; i < oldList.size() && i < newList.size() && oldList[i]->m_sha1 == newList[i]->m_sha1; ++i) {
232 newMap[i].first = newList[i].get()
    [all...]
  /frameworks/base/core/java/android/service/fingerprint/
FingerprintUtils.java 64 int[] newList = Arrays.copyOf(fingerIds, fingerIds.length + 1);
65 newList[fingerIds.length] = fingerId;
67 Arrays.toString(newList), userId);
  /external/chromium_org/third_party/icu/source/common/
ulist.c 36 UList *newList = NULL;
42 newList = (UList *)uprv_malloc(sizeof(UList));
43 if (newList == NULL) {
48 newList->curr = NULL;
49 newList->head = NULL;
50 newList->tail = NULL;
51 newList->size = 0;
52 newList->currentIndex = -1;
54 return newList;
  /external/icu/icu4c/source/common/
ulist.c 36 UList *newList = NULL;
42 newList = (UList *)uprv_malloc(sizeof(UList));
43 if (newList == NULL) {
48 newList->curr = NULL;
49 newList->head = NULL;
50 newList->tail = NULL;
51 newList->size = 0;
52 newList->currentIndex = -1;
54 return newList;
  /external/chromium_org/third_party/WebKit/Source/core/editing/
IndentOutdentCommand.cpp 79 RefPtrWillBeRawPtr<HTMLElement> newList = toHTMLElement(document().createElement(listElement->tagQName(), false).get());
80 insertNodeBefore(newList, selectedListItem.get());
86 moveParagraphWithClones(VisiblePosition(start), VisiblePosition(end), newList.get(), selectedListItem.get());
88 moveParagraphWithClones(VisiblePosition(start), VisiblePosition(positionAfterNode(selectedListItem->lastChild())), newList.get(), selectedListItem.get());
92 if (canMergeLists(previousList.get(), newList.get()))
93 mergeIdenticalElements(previousList.get(), newList.get());
94 if (canMergeLists(newList.get(), nextList.get()))
95 mergeIdenticalElements(newList.get(), nextList.get());
InsertListCommand.cpp 231 RefPtrWillBeRawPtr<HTMLElement> newList = createHTMLElement(document(), listTag);
232 insertNodeBefore(newList, listElement);
237 moveParagraphWithClones(VisiblePosition(firstPositionInNode(listElement.get())), VisiblePosition(lastPositionInNode(listElement.get())), newList.get(), outerBlock);
245 newList = mergeWithNeighboringLists(newList);
249 if (rangeStartIsInList && newList)
250 currentSelection.setStart(newList, 0, IGNORE_EXCEPTION);
251 if (rangeEndIsInList && newList)
252 currentSelection.setEnd(newList, lastOffsetInNode(newList.get()), IGNORE_EXCEPTION)
    [all...]
  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/
CheckableListAdapter.java 104 ArrayList<CheckableItem> newList = new ArrayList<CheckableItem>();
107 newList.add(item);
122 addAll(newList);
  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiUtils.java 219 List<T> newList = new ArrayList<>();
220 newList.addAll(a);
221 newList.addAll(b);
222 return Collections.unmodifiableList(newList);
  /external/chromium_org/third_party/icu/source/tools/pkgdata/
pkgtypes.c 137 CharList *newList;
138 newList = uprv_malloc(sizeof(CharList));
141 if(newList == NULL) {
145 newList->str = str;
146 newList->next = l;
147 return newList;
  /external/icu/icu4c/source/tools/pkgdata/
pkgtypes.c 137 CharList *newList;
138 newList = uprv_malloc(sizeof(CharList));
141 if(newList == NULL) {
145 newList->str = str;
146 newList->next = l;
147 return newList;
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
navigation_list_model.js 137 var newList = [];
142 newList[event.permutation[i]] = this.volumeList_[i];
147 if (!newList[i]) {
148 newList[i] = volumeInfoToModelItem(
152 this.volumeList_ = newList;
174 var newList = [];
189 permutation.push(newList.length + this.volumeList_.length);
190 newList.push(this.shortcutList_[oldListIndex]);
194 newList.push(entryToModelItem(shortcutEntry));
202 newList.push(entryToModelItem(shortcutEntry))
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
LinkedNode.java 68 public static <T extends LinkedNode> List<T> newList() {
  /external/guava/guava-tests/test/com/google/common/collect/
Collections2Test.java 196 protected abstract <E> List<E> newList();
199 List<String> unfiltered = newList();
220 List<String> unfiltered = newList();
269 List<String> unfiltered = newList();
289 List<String> unfiltered = newList();
318 @Override protected <E> List<E> newList() {
324 @Override protected <E> List<E> newList() {
OrderingTest.java 740 List<T> newList = Lists.newArrayList(strictlyOrderedList);
741 T valueNotInList = newList.remove(1);
742 assertEquals(-2, ordering.binarySearch(newList, valueNotInList));
755 List<T> newList = Lists.newArrayList(scenario.strictlyOrderedList);
756 Collections.reverse(newList);
757 return new Scenario<T>(scenario.ordering.reverse(), newList);
763 List<T> newList = Lists.newArrayList((T) null);
766 newList.add(t);
769 return new Scenario<T>(scenario.ordering.nullsFirst(), newList);
774 List<T> newList = Lists.newArrayList()
    [all...]
  /external/javassist/src/main/javassist/bytecode/
AttributeInfo.java 242 ArrayList newList = new ArrayList();
246 newList.add(attr.copy(cp, null));
249 return newList;
  /frameworks/base/tests/SmokeTest/tests/src/com/android/smoketest/
ProcessErrorsTest.java 269 List<ProcessErrorStateInfo> newList = new ArrayList<ProcessErrorStateInfo>(errList.size());
271 newList.add(err.info);
273 return reportListContents(newList);
  /external/oauth/core/src/main/java/net/oauth/
OAuth.java 198 public static List<Parameter> newList(String... parameters) {
283 return addParameters(url, newList(parameters));

Completed in 3616 milliseconds

1 2 3 4