Home
last modified time | relevance | path

Searched refs:newList (Results 1 – 25 of 30) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/inspector/
DDOMPatchSupport.cpp147 Vector<OwnPtr<Digest> > newList; in patchNode() local
149 newList.append(createDigest(child, 0)); in patchNode()
155 newList.append(createDigest(child, &m_unusedNodesMap)); in patchNode()
158 newList.append(createDigest(child, 0)); in patchNode()
160 if (!innerPatchChildren(parentNode, oldList, newList, exceptionState)) { in patchNode()
213 …MPatchSupport::diff(const Vector<OwnPtr<Digest> >& oldList, const Vector<OwnPtr<Digest> >& newList) in diff() argument
215 ResultMap newMap(newList.size()); in diff()
229 …for (size_t i = 0; i < oldList.size() && i < newList.size() && oldList[i]->m_sha1 == newList[i]->m… in diff()
232 newMap[i].first = newList[i].get(); in diff()
235 …ze_t i = 0; i < oldList.size() && i < newList.size() && oldList[oldList.size() - i - 1]->m_sha1 ==… in diff()
[all …]
/external/chromium_org/ui/file_manager/file_manager/foreground/js/
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.push(entryToModelItem(shortcutEntry));
[all …]
/external/javassist/src/main/javassist/expr/
DExprEditor.java156 NewOp newList; field in ExprEditor.LoopContext
163 newList = null; in LoopContext()
201 context.newList = new NewOp(context.newList, pos, in loopBody()
205 NewOp newList = context.newList; in loopBody() local
206 if (newList != null in loopBody()
207 && minfo.getConstPool().isConstructor(newList.type, in loopBody()
210 newList.type, newList.pos); in loopBody()
212 context.newList = newList.next; in loopBody()
/external/chromium_org/third_party/icu/source/common/
Dulist.c36 UList *newList = NULL; in ulist_createEmptyList() local
42 newList = (UList *)uprv_malloc(sizeof(UList)); in ulist_createEmptyList()
43 if (newList == NULL) { in ulist_createEmptyList()
48 newList->curr = NULL; in ulist_createEmptyList()
49 newList->head = NULL; in ulist_createEmptyList()
50 newList->tail = NULL; in ulist_createEmptyList()
51 newList->size = 0; in ulist_createEmptyList()
52 newList->currentIndex = -1; in ulist_createEmptyList()
54 return newList; in ulist_createEmptyList()
/external/icu/icu4c/source/common/
Dulist.c36 UList *newList = NULL; in ulist_createEmptyList() local
42 newList = (UList *)uprv_malloc(sizeof(UList)); in ulist_createEmptyList()
43 if (newList == NULL) { in ulist_createEmptyList()
48 newList->curr = NULL; in ulist_createEmptyList()
49 newList->head = NULL; in ulist_createEmptyList()
50 newList->tail = NULL; in ulist_createEmptyList()
51 newList->size = 0; in ulist_createEmptyList()
52 newList->currentIndex = -1; in ulist_createEmptyList()
54 return newList; in ulist_createEmptyList()
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSValueList.cpp67 RefPtrWillBeRawPtr<CSSValueList> newList = nullptr; in copy() local
70 newList = createSpaceSeparated(); in copy()
73 newList = createCommaSeparated(); in copy()
76 newList = createSlashSeparated(); in copy()
82 newList->append(m_values[index]); in copy()
83 return newList.release(); in copy()
/external/chromium_org/third_party/WebKit/Source/core/editing/
DIndentOutdentCommand.cpp79 …RefPtrWillBeRawPtr<HTMLElement> newList = toHTMLElement(document().createElement(listElement->tagQ… in tryIndentingAsListItem() local
80 insertNodeBefore(newList, selectedListItem.get()); in tryIndentingAsListItem()
86 …moveParagraphWithClones(VisiblePosition(start), VisiblePosition(end), newList.get(), selectedListI… in tryIndentingAsListItem()
88 …art), VisiblePosition(positionAfterNode(selectedListItem->lastChild())), newList.get(), selectedLi… in tryIndentingAsListItem()
92 if (canMergeLists(previousList.get(), newList.get())) in tryIndentingAsListItem()
93 mergeIdenticalElements(previousList.get(), newList.get()); in tryIndentingAsListItem()
94 if (canMergeLists(newList.get(), nextList.get())) in tryIndentingAsListItem()
95 mergeIdenticalElements(newList.get(), nextList.get()); in tryIndentingAsListItem()
DInsertListCommand.cpp231 RefPtrWillBeRawPtr<HTMLElement> newList = createHTMLElement(document(), listTag); in doApplyForSingleParagraph() local
232 insertNodeBefore(newList, listElement); in doApplyForSingleParagraph()
237 …Element.get())), VisiblePosition(lastPositionInNode(listElement.get())), newList.get(), outerBlock… in doApplyForSingleParagraph()
245 newList = mergeWithNeighboringLists(newList); in doApplyForSingleParagraph()
249 if (rangeStartIsInList && newList) in doApplyForSingleParagraph()
250 currentSelection.setStart(newList, 0, IGNORE_EXCEPTION); in doApplyForSingleParagraph()
251 if (rangeEndIsInList && newList) in doApplyForSingleParagraph()
252 currentSelection.setEnd(newList, lastOffsetInNode(newList.get()), IGNORE_EXCEPTION); in doApplyForSingleParagraph()
254 setEndingSelection(VisiblePosition(firstPositionInNode(newList.get()))); in doApplyForSingleParagraph()
/external/chromium_org/third_party/icu/source/tools/pkgdata/
Dpkgtypes.c137 CharList *newList; in pkg_prependToList() local
138 newList = uprv_malloc(sizeof(CharList)); in pkg_prependToList()
141 if(newList == NULL) { in pkg_prependToList()
145 newList->str = str; in pkg_prependToList()
146 newList->next = l; in pkg_prependToList()
147 return newList; in pkg_prependToList()
/external/icu/icu4c/source/tools/pkgdata/
Dpkgtypes.c137 CharList *newList; in pkg_prependToList() local
138 newList = uprv_malloc(sizeof(CharList)); in pkg_prependToList()
141 if(newList == NULL) { in pkg_prependToList()
145 newList->str = str; in pkg_prependToList()
146 newList->next = l; in pkg_prependToList()
147 return newList; in pkg_prependToList()
/external/srec/srec/ca/
Drec_nbes.c43 CA_NBestList *newList; in CA_PrepareNBestList() local
48 newList = (CA_NBestList*)srec_nbest_prepare_list(hRecog->recm, num, bestScore); in CA_PrepareNBestList()
49 return newList; in CA_PrepareNBestList()
/external/guava/guava-tests/test/com/google/common/collect/
DCollections2Test.java196 protected abstract <E> List<E> newList();
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() {
324 @Override protected <E> List<E> newList() {
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 = Lists.newArrayList();
[all …]
/external/javassist/src/main/javassist/bytecode/
DAttributeInfo.java242 ArrayList newList = new ArrayList(); in copyAll()
246 newList.add(attr.copy(cp, null)); in copyAll()
249 return newList; in copyAll()
/external/deqp/modules/gles3/functional/
Des3fBufferWriteTests.cpp149 std::vector<tcu::IVec2> newList; in addRangeToList() local
154 newList.push_back(*oldListIter); in addRangeToList()
165 newList.push_back(curRange); in addRangeToList()
170 newList.push_back(*oldListIter); in addRangeToList()
172 DE_ASSERT(isRangeListValid(newList.begin(), newList.end())); in addRangeToList()
174 return newList; in addRangeToList()
/external/deqp/modules/gles2/functional/
Des2fBufferWriteTests.cpp149 std::vector<tcu::IVec2> newList; in addRangeToList() local
154 newList.push_back(*oldListIter); in addRangeToList()
165 newList.push_back(curRange); in addRangeToList()
170 newList.push_back(*oldListIter); in addRangeToList()
172 DE_ASSERT(isRangeListValid(newList.begin(), newList.end())); in addRangeToList()
174 return newList; in addRangeToList()
/external/clang/include/clang/Sema/
DAttributeList.h685 void addAll(AttributeList *newList) { in addAll() argument
686 if (!newList) return; in addAll()
688 AttributeList *lastInNewList = newList; in addAll()
693 list = newList; in addAll()
696 void set(AttributeList *newList) { in set() argument
697 list = newList; in set()
/external/protobuf/java/src/main/java/com/google/protobuf/
DFieldSet.java178 final List newList = new ArrayList(); in setField() local
179 newList.addAll((List)value); in setField()
180 for (final Object element : newList) { in setField()
183 value = newList; in setField()
DGeneratedMessage.java1220 final List newList = new ArrayList(); in get() local
1222 newList.add(invokeOrDie(getValueDescriptorMethod, element)); in get()
1224 return Collections.unmodifiableList(newList); in get()
/external/oauth/core/src/main/java/net/oauth/
DOAuth.java198 public static List<Parameter> newList(String... parameters) { in newList() method in OAuth
283 return addParameters(url, newList(parameters)); in addParameters()
/external/jsilver/src/com/google/clearsilver/jsilver/data/
DNestedMapData.java507 Map<String, String> newList = new HashMap<String, String>(attributeList.size()); in optimize() local
513 newList.put(key, value); in optimize()
515 attributeList = newList; in optimize()
/external/chromium_org/third_party/mesa/src/src/mesa/main/
Dshaderapi.c356 struct gl_shader **newList; in detach_shader() local
362 newList = (struct gl_shader **) in detach_shader()
364 if (!newList) { in detach_shader()
369 newList[j] = shProg->Shaders[j]; in detach_shader()
372 newList[j++] = shProg->Shaders[i]; in detach_shader()
375 shProg->Shaders = newList; in detach_shader()
/external/mesa3d/src/mesa/main/
Dshaderapi.c356 struct gl_shader **newList; in detach_shader() local
362 newList = (struct gl_shader **) in detach_shader()
364 if (!newList) { in detach_shader()
369 newList[j] = shProg->Shaders[j]; in detach_shader()
372 newList[j++] = shProg->Shaders[i]; in detach_shader()
375 shProg->Shaders = newList; in detach_shader()
/external/chromium_org/chrome/browser/resources/chromeos/network_configuration/js/
Dnetwork_status.js58 function updateDataModel(uiList, newList) { argument
61 var diff = differenceBy(dataModelToArray(dataModel), newList,
/external/oauth/core/src/main/java/net/oauth/client/
DOAuthClient.java187 parameters = OAuth.newList(OAuth.OAUTH_TOKEN, accessor.requestToken); in getAccessToken()

12