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

1 2 3 4 5 6 7 8 910

  /libcore/ojluni/src/main/java/sun/security/jca/
Providers.java 163 public static void setProviderList(ProviderList newList) {
165 setSystemProviderList(newList);
167 changeThreadProviderList(newList);
181 ProviderList newList = list.removeInvalid();
182 if (newList != list) {
183 changeThreadProviderList(newList);
184 list = newList;
190 ProviderList newList = list.removeInvalid();
191 if (newList != list) {
192 setSystemProviderList(newList);
    [all...]
  /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);
  /packages/apps/Settings/src/com/android/settings/search2/
SearchResultDiffCallback.java 32 public SearchResultDiffCallback(List<SearchResult> oldList, List<SearchResult> newList) {
34 mNewList = newList;
  /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/protobuf/java/core/src/main/java/com/google/protobuf/
ProtobufArrayList.java 68 List<E> newList = new ArrayList<E>(capacity);
69 newList.addAll(list);
70 return new ProtobufArrayList<E>(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/icu/icu4c/source/common/
ulist.c 38 UList *newList = NULL;
44 newList = (UList *)uprv_malloc(sizeof(UList));
45 if (newList == NULL) {
50 newList->curr = NULL;
51 newList->head = NULL;
52 newList->tail = NULL;
53 newList->size = 0;
54 newList->currentIndex = -1;
56 return newList;
  /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);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/apps/specialaccess/
ManageApplications.java 126 final List<Preference> newList = new ArrayList<>(apps.size() + 1);
133 newList.add(bindPreference(recycle, entry));
140 if (newList.size() > 0) {
141 for (Preference prefToAdd : newList) {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
ULocaleCollationTest.java 308 List<UiListItem> newList = names.getUiList(list, false, collator);
309 if (!expected.equals(newList)) {
310 if (expected.size() != newList.size()) {
311 errln(list.toString() + ": wrong size" + expected + ", " + newList);
315 assertEquals(i+"", expected.get(i), newList.get(i));
319 assertEquals(list.toString(), expected, newList);
  /external/icu/icu4c/source/tools/pkgdata/
pkgtypes.c 139 CharList *newList;
140 newList = uprv_malloc(sizeof(CharList));
143 if(newList == NULL) {
147 newList->str = str;
148 newList->next = l;
149 return newList;
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/util/
ULocaleCollationTest.java 307 List<UiListItem> newList = names.getUiList(list, false, collator);
308 if (!expected.equals(newList)) {
309 if (expected.size() != newList.size()) {
310 errln(list.toString() + ": wrong size" + expected + ", " + newList);
314 assertEquals(i+"", expected.get(i), newList.get(i));
318 assertEquals(list.toString(), expected, newList);
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
LinkedNode.java 68 public static <T extends LinkedNode> List<T> newList() {
  /packages/apps/Messaging/src/com/android/messaging/ui/conversation/
SimSelectorView.java 137 public void bindData(final List<SubscriptionListEntry> newList) {
139 addAll(newList);
  /external/javassist/src/main/javassist/bytecode/
AttributeInfo.java 242 ArrayList newList = new ArrayList();
246 newList.add(attr.copy(cp, null));
249 return newList;
  /frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/util/
DiffUtilActivity.java 79 List<String> newList = createRandomCheeseList(oldList, 5);
81 new MyCallback(oldList, newList));
83 return new Pair(newList, diffResult);
  /packages/apps/TV/src/com/android/tv/onboarding/
SetupSourcesFragment.java 240 List<TvInputInfo> newList = new ArrayList<>(mInputs);
242 newList.remove(input);
244 if (newList.size() > 0 && mSetupUtils.isNewInput(newList.get(0).getId())) {
245 mNewlyAddedInputId = newList.get(0).getId();
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
OrderingTest.java     [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
OrderingTest.java     [all...]
  /libcore/ojluni/src/main/java/java/security/
Security.java 255 ProviderList newList = ProviderList.insertAt(list, provider, position - 1);
256 if (list == newList) {
260 Providers.setProviderList(newList);
261 return newList.getIndex(providerName) + 1;
336 ProviderList newList = ProviderList.remove(list, name);
337 Providers.setProviderList(newList);
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/fuzzers/
Fuzzer.java 352 List<Executor> newList = new ArrayList<Executor>();
353 newList.add(executor);
354 outputMap.put(output, newList);

Completed in 920 milliseconds

1 2 3 4 5 6 7 8 910