Searched refs:newList (Results 1 - 25 of 40) sorted by relevance

12

/external/jmonkeyengine/engine/src/core/com/jme3/renderer/
H A DIDList.java43 public int[] newList = new int[16]; field in class:IDList
54 Arrays.fill(newList, 0);
69 if (newLen == 0 || newList[newLen-1] != idx)
70 // add item to newList first
71 newList[newLen++] = idx;
92 System.arraycopy(newList, 0, oldList, 0, newLen);
105 System.out.println(newList[i]);
107 System.out.print(newList[i]+", ");
/external/javassist/src/main/javassist/expr/
H A DExprEditor.java156 NewOp newList; field in class:ExprEditor.LoopContext
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
[all...]
/external/icu/icu4c/source/common/
H A Dulist.c36 UList *newList = NULL; local
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/tools/pkgdata/
H A Dpkgtypes.c137 CharList *newList; local
138 newList = uprv_malloc(sizeof(CharList));
141 if(newList == NULL) {
145 newList->str = str;
146 newList->next = l;
147 return newList;
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/util/
H A DULocaleCollationTest.java306 List<UiListItem> newList = names.getUiList(list, false, collator);
307 if (!expected.equals(newList)) {
308 if (expected.size() != newList.size()) {
309 errln(list.toString() + ": wrong size" + expected + ", " + newList);
313 assertEquals(i+"", expected.get(i), newList.get(i));
317 assertEquals(list.toString(), expected, newList);
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DNode.java532 List<T> newList = new ArrayList<T>();
533 if (getQuantity() < 1) return newList;
536 newList.add((T)child);
538 newList.addAll(((Node) child).descendantMatches(
541 return newList;
/external/javassist/src/main/javassist/bytecode/
H A DAttributeInfo.java242 ArrayList newList = new ArrayList();
246 newList.add(attr.copy(cp, null));
249 return newList;
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DOrderingTest.java921 List<T> newList = Lists.newArrayList(strictlyOrderedList);
922 T valueNotInList = newList.remove(1);
923 assertEquals(-2, ordering.binarySearch(newList, valueNotInList));
947 List<T> newList = Lists.newArrayList(scenario.strictlyOrderedList);
948 Collections.reverse(newList);
949 return new Scenario<T>(scenario.ordering.reverse(), newList, scenario.emptyArray);
955 List<T> newList = Lists.newArrayList((T) null);
958 newList.add(t);
961 return new Scenario<T>(scenario.ordering.nullsFirst(), newList, scenario.emptyArray);
966 List<T> newList
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DOrderingTest.java955 List<T> newList = Lists.newArrayList(strictlyOrderedList);
956 T valueNotInList = newList.remove(1);
957 assertEquals(-2, ordering.binarySearch(newList, valueNotInList));
981 List<T> newList = Lists.newArrayList(scenario.strictlyOrderedList);
982 Collections.reverse(newList);
983 return new Scenario<T>(scenario.ordering.reverse(), newList, scenario.emptyArray);
989 List<T> newList = Lists.newArrayList((T) null);
992 newList.add(t);
995 return new Scenario<T>(scenario.ordering.nullsFirst(), newList, scenario.emptyArray);
1000 List<T> newList
[all...]
/external/oauth/core/src/main/java/net/oauth/
H A DOAuth.java198 public static List<Parameter> newList(String... parameters) { method in class:OAuth
283 return addParameters(url, newList(parameters));
/external/deqp/modules/gles2/functional/
H A Des2fBufferWriteTests.cpp149 std::vector<tcu::IVec2> newList; local
154 newList.push_back(*oldListIter);
165 newList.push_back(curRange);
170 newList.push_back(*oldListIter);
172 DE_ASSERT(isRangeListValid(newList.begin(), newList.end()));
174 return newList;
/external/deqp/modules/gles3/functional/
H A Des3fBufferWriteTests.cpp149 std::vector<tcu::IVec2> newList; local
154 newList.push_back(*oldListIter);
165 newList.push_back(curRange);
170 newList.push_back(*oldListIter);
172 DE_ASSERT(isRangeListValid(newList.begin(), newList.end()));
174 return newList;
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DNestedMapData.java507 Map<String, String> newList = new HashMap<String, String>(attributeList.size());
513 newList.put(key, value);
515 attributeList = newList;
/external/clang/include/clang/Sema/
H A DAttributeList.h686 void addAll(AttributeList *newList) { argument
687 if (!newList) return;
689 AttributeList *lastInNewList = newList;
694 list = newList;
697 void set(AttributeList *newList) { argument
698 list = newList;
/external/mesa3d/src/mesa/main/
H A Dshaderapi.c356 struct gl_shader **newList; local
362 newList = (struct gl_shader **)
364 if (!newList) {
369 newList[j] = shProg->Shaders[j];
372 newList[j++] = shProg->Shaders[i];
375 shProg->Shaders = newList;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DStrings.java316 public static StringList newList() method in class:Strings
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DFieldSet.java246 final List newList = new ArrayList();
247 newList.addAll((List) value);
248 for (final Object element : newList) {
251 value = newList;
H A DGeneratedMessage.java2075 final List newList = new ArrayList();
2077 newList.add(invokeOrDie(getValueDescriptorMethod, element));
2079 return Collections.unmodifiableList(newList);
2085 final List newList = new ArrayList();
2087 newList.add(invokeOrDie(getValueDescriptorMethod, element));
2089 return Collections.unmodifiableList(newList);
/external/oauth/core/src/main/java/net/oauth/client/
H A DOAuthClient.java187 parameters = OAuth.newList(OAuth.OAUTH_TOKEN, accessor.requestToken);
/external/icu/icu4c/source/test/intltest/
H A Dssearch.cpp412 Order *newList = new Order[listMax]; local
414 uprv_memcpy(newList, list, listSize * sizeof(Order));
416 list = newList;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.runtime.compatibility_3.2.100.v20100505.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.databinding.observable_1.3.0.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/mesa3d/src/glx/
H A Dglxcmds.c1261 XVisualInfo *newList; local
1266 newList = XGetVisualInfo(dpy, VisualScreenMask | VisualIDMask,
1269 if (newList) {
1271 visualList = newList;
/external/littlemock/tests/com/google/testing/littlemock/
H A DLittleMockTest.java652 assertEquals(newList("whinny", "jessica"), mCaptureAnotherString.getAllValues());
1677 private static <T> List<T> newList(T... things) { method in class:LittleMockTest
/external/robolectric/lib/main/
H A Dxpp3-1.1.4c.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ META-INF/services/org. ...

Completed in 1204 milliseconds

12