/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;
|
/dalvik/libcore/xml/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...] |
/frameworks/base/awt/org/apache/harmony/awt/ |
ListenerList.java | 74 ArrayList<T> newList = new ArrayList<T>(userList); 75 newList.add(listener); 76 userList = newList; 94 ArrayList<T> newList = new ArrayList<T>(userList); 95 newList.remove(listener); 96 userList = (newList.size() > 0 ? newList : null);
|
/dalvik/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/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/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 | 126 const void** newList; 133 newList = realloc(pSet->list, pSet->alloc * sizeof(const void*)); 134 if (newList == NULL) { 138 pSet->list = newList;
|
Sync.c | [all...] |
/external/e2fsprogs/e2fsck/ |
profile_helpers.c | 90 char **newlist; local 95 newlist = realloc(list->list, newmax * sizeof(char *)); 96 if (newlist == 0) 99 list->list = 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...] |
/external/dnsmasq/src/ |
option.c | 1388 struct server *serv, *newlist = NULL; local [all...] |
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
DeviceMonitor.java | 309 private void updateDevices(ArrayList<Device> newList) { 327 int count = newList.size(); 330 Device newDevice = newList.get(dd); 358 newList.remove(dd); 374 // at this point we should still have some new devices in newList, so we 376 for (Device newDevice : newList) { 395 newList.clear();
|
/external/dhcpcd/ |
dhcpcd.c | 173 char **newlist; local 204 newlist = xrealloc(lst, sizeof(char *) * (i + 2)); 205 newlist[i] = xstrdup(value); 206 newlist[i + 1] = NULL; 207 options->environ = newlist; 209 return newlist[i];
|
/packages/apps/Settings/src/com/android/settings/ |
ManageApplications.java | 282 List<ApplicationInfo> newList = null; 286 newList = getInstalledApps(FILTER_APPS_ALL); 287 updateAppList(newList); 290 initAppList(newList, mFilterApps); 567 private boolean updateAppList(List<ApplicationInfo> newList) { 568 if ((newList == null) || mCache.isEmpty()) { 574 int N = newList.size(); 576 ApplicationInfo info = newList.get(i); 587 newList.remove(i); [all...] |
/packages/apps/Music/src/com/android/music/ |
MediaPlaybackService.java | 757 long [] newlist = new long[size * 2]; local 760 newlist[i] = mPlayList[i]; 762 mPlayList = newlist; [all...] |
/external/icu4c/test/intltest/ |
ssearch.cpp | 770 Order *newList = new Order[listMax]; 772 uprv_memcpy(newList, list, listSize * sizeof(Order)); 774 list = newList; [all...] |
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/ |
PinyinIME.java | [all...] |
/external/v8/src/ |
parser.cc | 830 template <typename T> ZoneListWrapper<T> NewList(int size) { [all...] |