HomeSort by relevance Sort by last modified time
    Searched refs:toAdd (Results 1 - 23 of 23) sorted by null

  /dalvik/dexgen/src/com/android/dexgen/rop/annotation/
Annotations.java 189 * @param toAdd {@code non-null;} the annotations to add
192 public void addAll(Annotations toAdd) {
195 if (toAdd == null) {
196 throw new NullPointerException("toAdd == null");
199 for (Annotation a : toAdd.annotations.values()) {
  /dalvik/dx/src/com/android/dx/rop/annotation/
Annotations.java 189 * @param toAdd {@code non-null;} the annotations to add
192 public void addAll(Annotations toAdd) {
195 if (toAdd == null) {
196 throw new NullPointerException("toAdd == null");
199 for (Annotation a : toAdd.annotations.values()) {
  /external/webkit/Source/WebCore/rendering/
RenderSlider.cpp 96 int toAdd = borderAndPaddingWidth();
97 m_minPreferredLogicalWidth += toAdd;
98 m_maxPreferredLogicalWidth += toAdd;
RenderDataGrid.cpp 120 int toAdd = borderAndPaddingWidth();
121 m_minPreferredLogicalWidth += toAdd;
122 m_maxPreferredLogicalWidth += toAdd;
RenderFileUploadControl.cpp 299 int toAdd = borderAndPaddingWidth();
300 m_minPreferredLogicalWidth += toAdd;
301 m_maxPreferredLogicalWidth += toAdd;
RenderTableSection.cpp 448 int RenderTableSection::layoutRows(int toAdd)
515 if (toAdd && totalRows && (m_rowPos[totalRows] || !nextSibling())) {
516 int totalHeight = m_rowPos[totalRows] + toAdd;
518 int dh = toAdd;
534 int toAdd = min(dh, static_cast<int>((totalHeight * m_grid[r].logicalHeight.percent() / 100) - rh));
535 // If toAdd is negative, then we don't want to shrink the row (this bug
537 toAdd = max(0, toAdd);
538 add += toAdd;
539 dh -= toAdd;
    [all...]
RenderFlexibleBox.cpp 331 int toAdd = borderBottom() + paddingBottom() + horizontalScrollbarHeight();
408 setHeight(height() + toAdd);
646 int toAdd = borderBottom() + paddingBottom() + horizontalScrollbarHeight();
674 int minHeight = height() + toAdd;
740 setHeight(height() + toAdd);
    [all...]
RenderListBox.cpp 196 int toAdd = borderAndPaddingWidth();
197 m_minPreferredLogicalWidth += toAdd;
198 m_maxPreferredLogicalWidth += toAdd;
229 int toAdd = borderAndPaddingHeight();
232 setHeight(itemHeight * size() - rowSpacing + toAdd);
RenderMenuList.cpp 274 int toAdd = borderAndPaddingWidth();
275 m_minPreferredLogicalWidth += toAdd;
276 m_maxPreferredLogicalWidth += toAdd;
RenderTextControl.cpp 593 int toAdd = borderAndPaddingWidth();
595 m_minPreferredLogicalWidth += toAdd;
596 m_maxPreferredLogicalWidth += toAdd;
RenderBlock.cpp     [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
CopyOnWriteArrayList.java 287 Object[] toAdd = collection.toArray();
288 Object[] newElements = new Object[elements.length + toAdd.length];
290 System.arraycopy(toAdd, 0, newElements, index, toAdd.length);
292 newElements, index + toAdd.length, elements.length - index);
294 return toAdd.length > 0;
307 Object[] toAdd = collection.toArray();
308 Object[] newElements = new Object[elements.length + toAdd.length];
311 for (Object o : toAdd) {
316 if (addedCount < toAdd.length)
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
SsaBasicBlock.java 616 NormalSsaInsn toAdd = new NormalSsaInsn(
620 insns.add(insns.size() - 1, toAdd);
639 NormalSsaInsn toAdd = new NormalSsaInsn(
643 insns.add(getCountPhiInsns(), toAdd);
758 NormalSsaInsn toAdd = new NormalSsaInsn(
764 toSchedule.add(insertPlace++, toAdd);
950 NormalSsaInsn toAdd = new NormalSsaInsn(
963 insns.set(movesFromPhisAtBeginning + 1, toAdd);
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/back/
RegisterAllocator.java 164 SsaInsn toAdd = SsaInsn.makeFromRop(
169 insns.add(insnIndex, toAdd);
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
InnerNodeImpl.java 105 NodeList toAdd = newChild.getChildNodes();
106 for (int i = 0; i < toAdd.getLength(); i++) {
107 insertChildAt(toAdd.item(i), index + i);
  /external/icu4c/common/
caniter.cpp 469 UnicodeString *toAdd = new UnicodeString(prefix);
471 if (toAdd == 0) {
475 *toAdd += item;
476 fillinResult->put(*toAdd, toAdd, status);
478 //if (PROGRESS) printf("Adding: %s\n", UToS(Tr(*toAdd)));
uresbund.c 740 U_CFUNC void ures_setResPath(UResourceBundle *resB, const char* toAdd) {
745 resB->fResPathLen = uprv_strlen(toAdd);
753 uprv_strcpy(resB->fResPath, toAdd);
756 static void ures_appendResPath(UResourceBundle *resB, const char* toAdd, int32_t lenToAdd, UErrorCode *status) {
783 uprv_strcpy(resB->fResPath + resPathLenOrig, toAdd);
    [all...]
  /sdk/monkeyrunner/src/com/android/monkeyrunner/
MonkeyRunnerHelp.java 116 for (Class<?> toAdd : clz.getClasses()) {
117 if (haventSeen.apply(toAdd)) {
118 newClasses.add(toAdd);
  /libcore/luni/src/test/java/libcore/java/util/concurrent/
CopyOnWriteArrayListTest.java 191 List<Object> toAdd = Arrays.asList(new Object[1000]);
193 list.addAll(toAdd);
  /prebuilt/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 
  /prebuilt/common/ecj/
ecj.jar 
  /prebuilt/common/ant/
ant.jar 
  /prebuilt/common/jfreechart/
jfreechart-1.0.9.jar 

Completed in 1102 milliseconds