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

1 2

  /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", 36, newList);
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/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;
  /external/chromium/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/icu4c/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;
  /libcore/luni/src/test/java/tests/org/w3c/dom/
GetElementsByTagNameNS.java 85 NodeList newList;
87 newList = doc.getElementsByTagNameNS(namespaceURI, localName);
89 assertEquals("throw_Size", 36, newList.getLength());
100 NodeList newList;
105 newList = doc.getElementsByTagNameNS("*", "employee");
106 assertEquals("employeeCount", 5, newList.getLength());
107 newElement = (Element) newList.item(3);
232 NodeList newList;
235 newList = docElem.getElementsByTagNameNS("*", "*");
236 assertEquals("listSize", 36, newList.getLength())
    [all...]
  /external/webkit/WebCore/css/
CSSValueList.cpp 99 PassRefPtr<CSSValueList> newList = m_isSpaceSeparated ? createSpaceSeparated() : createCommaSeparated();
101 newList->append(item(index));
102 return newList;
CSSParser.cpp     [all...]
  /dalvik/vm/
PointerSet.c 127 const void** newList;
134 newList = realloc(pSet->list, pSet->alloc * sizeof(const void*));
135 if (newList == NULL) {
139 pSet->list = newList;
Sync.c     [all...]
  /external/chromium/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/icu4c/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/webkit/WebCore/editing/
IndentOutdentCommand.cpp 93 RefPtr<Element> newList = document()->createElement(listNode->tagQName(), false);
94 insertNodeBefore(newList, selectedListItem);
96 moveParagraphWithClones(startOfParagraph(endOfCurrentParagraph), endOfCurrentParagraph, newList.get(), selectedListItem);
98 if (canMergeLists(previousList, newList.get()))
99 mergeIdenticalElements(previousList, newList);
100 if (canMergeLists(newList.get(), nextList))
101 mergeIdenticalElements(newList, nextList);
Editor.cpp 619 RefPtr<Node> newList = InsertListCommand::insertList(m_frame->document(), InsertListCommand::OrderedList);
621 return newList;
629 RefPtr<Node> newList = InsertListCommand::insertList(m_frame->document(), InsertListCommand::UnorderedList);
631 return newList;
649 RefPtr<Node> newList = IncreaseSelectionListLevelCommand::increaseSelectionListLevel(m_frame->document());
651 return newList;
659 RefPtr<Node> newList = IncreaseSelectionListLevelCommand::increaseSelectionListLevelOrdered(m_frame->document());
661 return newList.release();
669 RefPtr<Node> newList = IncreaseSelectionListLevelCommand::increaseSelectionListLevelUnordered(m_frame->document());
671 return newList.release()
    [all...]
  /external/webkit/WebKitTools/android/webkitmerge/
webkitmerge.cpp     [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
DeviceMonitor.java 315 private void updateDevices(ArrayList<Device> newList) {
337 int count = newList.size();
340 Device newDevice = newList.get(dd);
368 newList.remove(dd);
384 // at this point we should still have some new devices in newList, so we
386 for (Device newDevice : newList) {
410 newList.clear();
    [all...]
  /external/oauth/core/src/main/java/net/oauth/
OAuth.java 198 public static List<Parameter> newList(String... parameters) {
283 return addParameters(url, newList(parameters));
  /external/protobuf/java/src/main/java/com/google/protobuf/
FieldSet.java 178 final List newList = new ArrayList();
179 newList.addAll((List)value);
180 for (final Object element : newList) {
183 value = newList;
GeneratedMessage.java     [all...]
  /external/oauth/core/src/main/java/net/oauth/client/
OAuthClient.java 187 parameters = OAuth.newList(OAuth.OAUTH_TOKEN, accessor.requestToken);
  /external/chromium/third_party/icu/source/test/intltest/
ssearch.cpp 770 Order *newList = new Order[listMax];
772 uprv_memcpy(newList, list, listSize * sizeof(Order));
774 list = newList;
    [all...]
  /external/icu4c/test/intltest/
ssearch.cpp 763 Order *newList = new Order[listMax];
765 uprv_memcpy(newList, list, listSize * sizeof(Order));
767 list = newList;
    [all...]
  /dalvik/vm/oo/
Class.c 922 Object** newList;
924 newList = (Object**) realloc(loaderList->initiatingLoaders,
927 if (newList == NULL) {
932 loaderList->initiatingLoaders = newList;
    [all...]

Completed in 303 milliseconds

1 2