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

12

/macosx-10.9.5/JavaScriptCore-7537.78.1/offlineasm/
H A Drisc.rb43 newList = []
64 newList << Instruction.new(node.codeOrigin, op, node.operands[0..-2], annotation)
65 newList << Instruction.new(node.codeOrigin, branch, [node.operands[-1]])
68 newList << Instruction.new(node.codeOrigin, "muli", node.operands[0..-2], annotation)
69 newList << Instruction.new(node.codeOrigin, "bti" + condition, [node.operands[-2], node.operands[-1]])
71 newList << node
74 newList << node
77 newList
93 newList = []
99 newList << Instructio
[all...]
H A Dmips.rb196 newList = []
230 newList << Instruction.new(node.codeOrigin, op, [node.operands[0], node.operands[1], tr], annotation)
231 newList << Instruction.new(node.codeOrigin, "xori", [node.operands[0], node.operands[1], tmp])
232 newList << Instruction.new(node.codeOrigin, "bilt", [tmp, MIPS_ZERO_REG, noFlowRef])
233 newList << Instruction.new(node.codeOrigin, "xori", [tr, node.operands[0], tmp])
234 newList << Instruction.new(node.codeOrigin, "bilt", [tmp, MIPS_ZERO_REG, node.operands[2]])
235 newList << noFlow
236 newList << Instruction.new(node.codeOrigin, "move", [tr, node.operands[1]])
249 newList << Instruction.new(node.codeOrigin, op, [node.operands[1], node.operands[0], tr], annotation)
250 newList << Instructio
[all...]
H A Dsh4.rb160 newList = []
178 newList << Instruction.new(node.codeOrigin, "sh#{type}#{direction}x", [maskedImm, node.operands[1]])
182 newList << Instruction.new(node.codeOrigin, "move", [maskedImm, tmp])
184 newList << Instruction.new(node.codeOrigin, "move", [Immediate.new(node.operands[0].codeOrigin, -1 * maskedImm.value), tmp])
186 newList << Instruction.new(node.codeOrigin, "sh#{type}d", [tmp, node.operands[1]])
190 newList << Instruction.new(node.codeOrigin, "move", [Immediate.new(node.operands[0].codeOrigin, 31), tmp])
191 newList << Instruction.new(node.codeOrigin, "andi", [node.operands[0], tmp])
193 newList << Instruction.new(node.codeOrigin, "negi", [tmp, tmp])
195 newList << Instruction.new(node.codeOrigin, "sh#{type}d", [tmp, node.operands[1]])
198 newList << nod
[all...]
H A Dbackends.rb116 newList = send("getModifiedList#{name}")
117 newList.each {
H A Dtransform.rb91 newList = []
96 newList += item.list
98 newList << item
101 Sequence.new(codeOrigin, newList)
175 newList = []
182 newList << item.substitute(myConstants)
185 Sequence.new(codeOrigin, newList)
209 newList = []
233 newList << Instruction.new(item.codeOrigin, "localAnnotation", [], item.annotation)
235 newList
[all...]
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGTextPositioningElement.cpp79 SVGLengthList newList; local
80 newList.parse(value, LengthModeWidth);
81 detachAnimatedXListWrappers(newList.size());
82 setXBaseValue(newList);
87 SVGLengthList newList; local
88 newList.parse(value, LengthModeHeight);
89 detachAnimatedYListWrappers(newList.size());
90 setYBaseValue(newList);
95 SVGLengthList newList; local
96 newList
103 SVGLengthList newList; local
111 SVGNumberList newList; local
[all...]
H A DSVGStyledTransformableElement.cpp109 SVGTransformList newList; local
110 newList.parse(value);
111 detachAnimatedTransformListWrappers(newList.size());
112 setTransformBaseValue(newList);
H A DSVGComponentTransferFunctionElement.cpp93 SVGNumberList newList; local
94 newList.parse(value);
95 detachAnimatedTableValuesListWrappers(newList.size());
96 setTableValuesBaseValue(newList);
H A DSVGFEColorMatrixElement.cpp90 SVGNumberList newList; local
91 newList.parse(value);
92 detachAnimatedValuesListWrappers(newList.size());
93 setValuesBaseValue(newList);
H A DSVGGradientElement.cpp93 SVGTransformList newList; local
94 newList.parse(value);
95 detachAnimatedGradientTransformListWrappers(newList.size());
96 setGradientTransformBaseValue(newList);
H A DSVGPolyElement.cpp89 SVGPointList newList; local
90 if (!pointsListFromSVGData(newList, value))
94 static_cast<SVGAnimatedPointList*>(wrapper)->detachListWrappers(newList.size());
96 m_points.value = newList;
H A DSVGTextElement.cpp75 SVGTransformList newList; local
76 newList.parse(value);
77 detachAnimatedTransformListWrappers(newList.size());
78 setTransformBaseValue(newList);
H A DSVGViewSpec.cpp117 SVGTransformList newList;
118 newList.parse(transform);
121 static_cast<SVGAnimatedTransformList*>(wrapper)->detachListWrappers(newList.size());
123 m_transform = newList;
H A DSVGFEConvolveMatrixElement.cpp158 SVGNumberList newList; local
159 newList.parse(value);
160 detachAnimatedKernelMatrixListWrappers(newList.size());
161 setKernelMatrixBaseValue(newList);
H A DSVGPatternElement.cpp130 SVGTransformList newList; local
131 newList.parse(value);
132 detachAnimatedPatternTransformListWrappers(newList.size());
133 setPatternTransformBaseValue(newList);
/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DDOMPatchSupport.cpp149 Vector<OwnPtr<Digest> > newList; local
151 newList.append(createDigest(child, 0));
157 newList.append(createDigest(child, &m_unusedNodesMap));
160 newList.append(createDigest(child, 0));
162 if (!innerPatchChildren(parentNode, oldList, newList, ec)) {
220 DOMPatchSupport::diff(const Vector<OwnPtr<Digest> >& oldList, const Vector<OwnPtr<Digest> >& newList) argument
222 ResultMap newMap(newList.size());
236 for (size_t i = 0; i < oldList.size() && i < newList.size() && oldList[i]->m_sha1 == newList[i]->m_sha1; ++i) {
239 newMap[i].first = newList[
307 innerPatchChildren(ContainerNode* parentNode, const Vector<OwnPtr<Digest> >& oldList, const Vector<OwnPtr<Digest> >& newList, ExceptionCode& ec) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DCSSValueList.cpp79 RefPtr<CSSValueList> newList; local
82 newList = createSpaceSeparated();
85 newList = createCommaSeparated();
88 newList = createSlashSeparated();
94 newList->append(m_values[index]);
95 return newList.release();
/macosx-10.9.5/ICU-511.35/icuSources/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;
/macosx-10.9.5/WebCore-7537.78.1/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.get());
83 if (canMergeLists(previousList.get(), newList.get()))
84 mergeIdenticalElements(previousList, newList);
85 if (canMergeLists(newList.get(), nextList.get()))
86 mergeIdenticalElements(newList, nextList);
H A DInsertListCommand.cpp218 RefPtr<HTMLElement> newList = createHTMLElement(document(), listTag); local
219 insertNodeBefore(newList, listNode);
224 moveParagraphWithClones(firstPositionInNode(listNode.get()), lastPositionInNode(listNode.get()), newList.get(), outerBlock);
232 newList = mergeWithNeighboringLists(newList);
236 if (rangeStartIsInList && newList)
237 currentSelection->setStart(newList, 0, IGNORE_EXCEPTION);
238 if (rangeEndIsInList && newList)
239 currentSelection->setEnd(newList, lastOffsetInNode(newList
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/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;
/macosx-10.9.5/WebKit2-7537.78.2/Platform/CoreIPC/
H A DArgumentEncoder.cpp201 Vector<Attachment> newList; local
202 newList.swap(m_attachments);
203 return newList;
/macosx-10.9.5/tcl-102/tcl/tcl/generic/
H A DtclThread.c164 char **newList;
186 newList = (char **) ckalloc(recPtr->max * sizeof(char *));
189 newList[j++] = recPtr->list[i];
195 recPtr->list = newList;
161 char **newList; local
/macosx-10.9.5/tcl-102/tcl84/tcl/generic/
H A DtclThread.c210 char **newList;
231 newList = (char **)ckalloc(recPtr->max * sizeof(char *));
234 newList[j++] = recPtr->list[i];
240 recPtr->list = newList;
206 char **newList; local
/macosx-10.9.5/Security-55471.14.18/include/security_cdsa_client/
H A Dmultidldb.cpp115 set<DLDbIdentifier> newList(mListRef->begin(), mListRef->end());
119 set_difference(oldList.begin(), oldList.end(), newList.begin(), newList.end(), ii);

Completed in 152 milliseconds

12