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

123

/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/protobuf/java/core/src/main/java/com/google/protobuf/
H A DProtobufArrayList.java68 List<E> newList = new ArrayList<E>(capacity);
69 newList.addAll(list);
70 return new ProtobufArrayList<E>(newList);
H A DLazyStringArrayList.java108 ArrayList<Object> newList = new ArrayList<Object>(capacity);
109 newList.addAll(list);
110 return new LazyStringArrayList(newList);
H A DFieldSet.java265 final List newList = new ArrayList();
266 newList.addAll((List) value);
267 for (final Object element : newList) {
270 value = newList;
H A DGeneratedMessage.java2613 final List newList = new ArrayList();
2616 newList.add(getRepeated(message, i));
2618 return Collections.unmodifiableList(newList);
2624 final List newList = new ArrayList();
2627 newList.add(getRepeated(builder, i));
2629 return Collections.unmodifiableList(newList);
/external/icu/icu4c/source/common/
H A Dulist.c38 UList *newList = NULL; local
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;
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
H A DULocaleCollationTest.java308 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/
H A Dpkgtypes.c139 CharList *newList; local
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/
H A DULocaleCollationTest.java307 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);
/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.h737 void addAll(AttributeList *newList) {
738 if (!newList) return;
740 AttributeList *lastInNewList = newList;
745 list = newList;
748 void set(AttributeList *newList) {
749 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/dng_sdk/source/
H A Ddng_xmp.cpp3121 dng_string_list newList; local
3199 newList.Append (ss);
3235 newList.Append (ss);
3244 newList.Clear ();
3246 newList.Append (exif.fArtist);
3252 newList,
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DStrings.java351 public static StringList newList() method in class:Strings
/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.cpp411 Order *newList = new Order[listMax]; local
413 uprv_memcpy(newList, list, listSize * sizeof(Order));
415 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 ...
/external/mesa3d/src/glx/
H A Dglxcmds.c1261 XVisualInfo *newList; local
1266 newList = XGetVisualInfo(dpy, VisualScreenMask | VisualIDMask,
1269 if (newList) {
1271 visualList = newList;
/external/swiftshader/src/OpenGL/libGL/
H A DContext.h707 void newList(GLuint list, GLenum mode);

Completed in 735 milliseconds

123