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

123

/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSValueList.cpp67 RefPtrWillBeRawPtr<CSSValueList> newList = nullptr; local
70 newList = createSpaceSeparated();
73 newList = createCommaSeparated();
76 newList = createSlashSeparated();
82 newList->append(m_values[index]);
83 return newList.release();
/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/srec/srec/ca/
H A Drec_nbes.c43 CA_NBestList *newList; local
48 newList = (CA_NBestList*)srec_nbest_prepare_list(hRecog->recm, num, bestScore);
49 return newList;
/external/chromium_org/ui/file_manager/file_manager/foreground/js/
H A Dnavigation_list_model.js137 var newList = [];
142 newList[event.permutation[i]] = this.volumeList_[i];
147 if (!newList[i]) {
148 newList[i] = volumeInfoToModelItem(
152 this.volumeList_ = newList;
174 var newList = [];
189 permutation.push(newList.length + this.volumeList_.length);
190 newList.push(this.shortcutList_[oldListIndex]);
194 newList.push(entryToModelItem(shortcutEntry));
202 newList
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DDOMPatchSupport.cpp147 Vector<OwnPtr<Digest> > newList; local
149 newList.append(createDigest(child, 0));
155 newList.append(createDigest(child, &m_unusedNodesMap));
158 newList.append(createDigest(child, 0));
160 if (!innerPatchChildren(parentNode, oldList, newList, exceptionState)) {
213 DOMPatchSupport::diff(const Vector<OwnPtr<Digest> >& oldList, const Vector<OwnPtr<Digest> >& newList) argument
215 ResultMap newMap(newList.size());
229 for (size_t i = 0; i < oldList.size() && i < newList.size() && oldList[i]->m_sha1 == newList[i]->m_sha1; ++i) {
232 newMap[i].first = newList[
298 innerPatchChildren(ContainerNode* parentNode, const Vector<OwnPtr<Digest> >& oldList, const Vector<OwnPtr<Digest> >& newList, ExceptionState& exceptionState) argument
[all...]
/external/chromium_org/third_party/icu/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/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/chromium_org/third_party/WebKit/Source/core/editing/
H A DIndentOutdentCommand.cpp79 RefPtrWillBeRawPtr<HTMLElement> newList = toHTMLElement(document().createElement(listElement->tagQName(), false).get()); local
80 insertNodeBefore(newList, selectedListItem.get());
86 moveParagraphWithClones(VisiblePosition(start), VisiblePosition(end), newList.get(), selectedListItem.get());
88 moveParagraphWithClones(VisiblePosition(start), VisiblePosition(positionAfterNode(selectedListItem->lastChild())), newList.get(), selectedListItem.get());
92 if (canMergeLists(previousList.get(), newList.get()))
93 mergeIdenticalElements(previousList.get(), newList.get());
94 if (canMergeLists(newList.get(), nextList.get()))
95 mergeIdenticalElements(newList.get(), nextList.get());
H A DInsertListCommand.cpp231 RefPtrWillBeRawPtr<HTMLElement> newList = createHTMLElement(document(), listTag); local
232 insertNodeBefore(newList, listElement);
237 moveParagraphWithClones(VisiblePosition(firstPositionInNode(listElement.get())), VisiblePosition(lastPositionInNode(listElement.get())), newList.get(), outerBlock);
245 newList = mergeWithNeighboringLists(newList);
249 if (rangeStartIsInList && newList)
250 currentSelection.setStart(newList, 0, IGNORE_EXCEPTION);
251 if (rangeEndIsInList && newList)
252 currentSelection.setEnd(newList, lastOffsetInNode(newList
[all...]
/external/chromium_org/third_party/icu/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/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/guava/guava-tests/test/com/google/common/collect/
H A DCollections2Test.java196 protected abstract <E> List<E> newList(); method in class:Collections2Test.FilterChangeTest
199 List<String> unfiltered = newList();
220 List<String> unfiltered = newList();
269 List<String> unfiltered = newList();
289 List<String> unfiltered = newList();
318 @Override protected <E> List<E> newList() { method in class:Collections2Test.ArrayListFilterChangeTest
324 @Override protected <E> List<E> newList() { method in class:Collections2Test.LinkedListFilterChangeTest
H A DOrderingTest.java740 List<T> newList = Lists.newArrayList(strictlyOrderedList);
741 T valueNotInList = newList.remove(1);
742 assertEquals(-2, ordering.binarySearch(newList, valueNotInList));
755 List<T> newList = Lists.newArrayList(scenario.strictlyOrderedList);
756 Collections.reverse(newList);
757 return new Scenario<T>(scenario.ordering.reverse(), newList);
763 List<T> newList = Lists.newArrayList((T) null);
766 newList.add(t);
769 return new Scenario<T>(scenario.ordering.nullsFirst(), newList);
774 List<T> newList
[all...]
/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/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/protobuf/java/src/main/java/com/google/protobuf/
H A DFieldSet.java178 final List newList = new ArrayList();
179 newList.addAll((List)value);
180 for (final Object element : newList) {
183 value = newList;
H A DGeneratedMessage.java1220 final List newList = new ArrayList();
1222 newList.add(invokeOrDie(getValueDescriptorMethod, element));
1224 return Collections.unmodifiableList(newList);
/external/clang/include/clang/Sema/
H A DAttributeList.h685 void addAll(AttributeList *newList) { argument
686 if (!newList) return;
688 AttributeList *lastInNewList = newList;
693 list = newList;
696 void set(AttributeList *newList) { argument
697 list = newList;
/external/chromium_org/third_party/mesa/src/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/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/chromium_org/chrome/browser/resources/chromeos/network_configuration/js/
H A Dnetwork_status.js53 * Updates the data model of |uiList| to |newList|. Ensures that unchanged
54 * entries are not touched. Doesn't preserve the order of |newList|.
56 * @param {Array} newList .
58 function updateDataModel(uiList, newList) {
61 var diff = differenceBy(dataModelToArray(dataModel), newList,
/external/oauth/core/src/main/java/net/oauth/client/
H A DOAuthClient.java187 parameters = OAuth.newList(OAuth.OAUTH_TOKEN, accessor.requestToken);

Completed in 3342 milliseconds

123