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

12

/external/webkit/Source/WebCore/svg/
H A DSVGTextPositioningElement.cpp50 SVGLengthList newList; local
51 newList.parse(attr->value(), LengthModeWidth);
52 detachAnimatedXListWrappers(newList.size());
53 setXBaseValue(newList);
55 SVGLengthList newList; local
56 newList.parse(attr->value(), LengthModeHeight);
57 detachAnimatedYListWrappers(newList.size());
58 setYBaseValue(newList);
60 SVGLengthList newList; local
61 newList
65 SVGLengthList newList; local
70 SVGNumberList newList; local
[all...]
H A DSVGStyledTransformableElement.cpp75 SVGTransformList newList; local
76 if (!SVGTransformable::parseTransformAttribute(newList, attr->value()))
77 newList.clear();
78 detachAnimatedTransformListWrappers(newList.size());
79 setTransformBaseValue(newList);
H A DSVGTextElement.cpp53 SVGTransformList newList; local
54 if (!SVGTransformable::parseTransformAttribute(newList, attr->value()))
55 newList.clear();
57 detachAnimatedTransformListWrappers(newList.size());
58 setTransformBaseValue(newList);
H A DSVGPolyElement.cpp49 SVGPointList newList; local
50 if (!pointsListFromSVGData(newList, value))
54 list->detachListWrappers(newList.size());
56 m_points.value = newList;
H A DSVGGradientElement.cpp62 SVGTransformList newList; local
63 if (!SVGTransformable::parseTransformAttribute(newList, attr->value()))
64 newList.clear();
66 detachAnimatedGradientTransformListWrappers(newList.size());
67 setGradientTransformBaseValue(newList);
H A DSVGComponentTransferFunctionElement.cpp66 SVGNumberList newList; local
67 newList.parse(value);
68 detachAnimatedTableValuesListWrappers(newList.size());
69 setTableValuesBaseValue(newList);
H A DSVGFEColorMatrixElement.cpp64 SVGNumberList newList; local
65 newList.parse(value);
66 detachAnimatedValuesListWrappers(newList.size());
67 setValuesBaseValue(newList);
H A DSVGPatternElement.cpp87 SVGTransformList newList; local
88 if (!SVGTransformable::parseTransformAttribute(newList, attr->value()))
89 newList.clear();
91 detachAnimatedPatternTransformListWrappers(newList.size());
92 setPatternTransformBaseValue(newList);
H A DSVGFEConvolveMatrixElement.cpp104 SVGNumberList newList; local
105 newList.parse(value);
106 detachAnimatedKernelMatrixListWrappers(newList.size());
107 setKernelMatrixBaseValue(newList);
H A DSVGPathElement.cpp216 SVGPathSegList newList(PathSegUnalteredRole);
218 factory->buildSVGPathSegListFromByteStream(m_pathByteStream.get(), this, newList, UnalteredParsing);
219 m_pathSegList.value = newList;
/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/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/webkit/Source/WebCore/css/
H A DCSSValueList.cpp99 PassRefPtr<CSSValueList> newList = m_isSpaceSeparated ? createSpaceSeparated() : createCommaSeparated(); local
101 newList->append(item(index));
102 return newList;
/external/icu4c/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/webkit/Source/WebCore/editing/
H A DIndentOutdentCommand.cpp78 RefPtr<Element> newList = document()->createElement(listNode->tagQName(), false); local
79 insertNodeBefore(newList, selectedListItem);
81 moveParagraphWithClones(start, end, newList.get(), selectedListItem);
83 if (canMergeLists(previousList, newList.get()))
84 mergeIdenticalElements(previousList, newList);
85 if (canMergeLists(newList.get(), nextList))
86 mergeIdenticalElements(newList, nextList);
H A DInsertListCommand.cpp217 RefPtr<HTMLElement> newList = createHTMLElement(document(), listTag); local
218 insertNodeBefore(newList, listNode);
223 moveParagraphWithClones(firstPositionInNode(listNode.get()), lastPositionInNode(listNode.get()), newList.get(), outerBlock);
231 newList = mergeWithNeighboringLists(newList);
236 if (rangeStartIsInList && newList)
237 currentSelection->setStart(newList, 0, ec);
238 if (rangeEndIsInList && newList)
239 currentSelection->setEnd(newList, lastOffsetInNode(newList
[all...]
/external/webkit/Source/WebKit2/Platform/CoreIPC/
H A DArgumentEncoder.cpp154 Vector<Attachment> newList; local
155 newList.swap(m_attachments);
156 return newList;
/external/icu4c/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/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/webkit/Tools/android/webkitmerge/
H A Dwebkitmerge.cpp984 char* newList = GetFile(updateMakeStr);
1010 size_t newListLen = strlen(newList);
1016 if (startLen == newListLen && strncmp(newList, start, startLen) == 0)
1017 newList += newListLen + 1;
1027 compare = strncmp(newList, start, startLen);
1030 if (newList[0] == '\0' || compare >= 0)
1034 MatchLen(lastFileName, newList, lastFileNameLen) >
1035 MatchLen(start, newList, startLen)) {
1040 SedEscape(lastFileName).c_str(), newList,
1042 lastFileName = 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/clang/include/clang/Sema/
H A DAttributeList.h615 void addAll(AttributeList *newList) {
616 if (!newList) return;
618 AttributeList *lastInNewList = newList;
623 list = newList;
626 void set(AttributeList *newList) {
627 list = newList;

Completed in 731 milliseconds

12