Home
last modified time | relevance | path

Searched refs:toAdd (Results 1 – 17 of 17) sorted by relevance

/external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
DAnnotations.java192 public void addAll(Annotations toAdd) { in addAll() argument
195 if (toAdd == null) { in addAll()
199 for (Annotation a : toAdd.annotations.values()) { in addAll()
/external/dexmaker/src/dx/java/com/android/dx/ssa/
DSsaBasicBlock.java616 NormalSsaInsn toAdd = new NormalSsaInsn( in addMoveToEnd() local
620 insns.add(insns.size() - 1, toAdd); in addMoveToEnd() local
639 NormalSsaInsn toAdd = new NormalSsaInsn( in addMoveToBeginning() local
643 insns.add(getCountPhiInsns(), toAdd); in addMoveToBeginning() local
758 NormalSsaInsn toAdd = new NormalSsaInsn( in scheduleUseBeforeAssigned() local
764 toSchedule.add(insertPlace++, toAdd); in scheduleUseBeforeAssigned()
950 NormalSsaInsn toAdd = new NormalSsaInsn( in scheduleMovesFromPhis() local
963 insns.set(movesFromPhisAtBeginning + 1, toAdd); in scheduleMovesFromPhis()
/external/webkit/Source/WebCore/rendering/
DRenderSlider.cpp96 int toAdd = borderAndPaddingWidth(); in computePreferredLogicalWidths() local
97 m_minPreferredLogicalWidth += toAdd; in computePreferredLogicalWidths()
98 m_maxPreferredLogicalWidth += toAdd; in computePreferredLogicalWidths()
DRenderDataGrid.cpp120 int toAdd = borderAndPaddingWidth(); in computePreferredLogicalWidths() local
121 m_minPreferredLogicalWidth += toAdd; in computePreferredLogicalWidths()
122 m_maxPreferredLogicalWidth += toAdd; in computePreferredLogicalWidths()
DRenderTableSection.cpp454 int RenderTableSection::layoutRows(int toAdd) in setCellLogicalWidths() argument
521 if (toAdd && totalRows && (m_rowPos[totalRows] || !nextSibling())) { in setCellLogicalWidths()
522 int totalHeight = m_rowPos[totalRows] + toAdd; in setCellLogicalWidths()
524 int dh = toAdd; in setCellLogicalWidths()
540 …int toAdd = min(dh, static_cast<int>((totalHeight * m_grid[r].logicalHeight.percent() / 100) - rh)… in setCellLogicalWidths() local
543 toAdd = max(0, toAdd); in setCellLogicalWidths()
544 add += toAdd; in setCellLogicalWidths()
545 dh -= toAdd; in setCellLogicalWidths()
558 int toAdd = dh / numAuto; in setCellLogicalWidths() local
559 add += toAdd; in setCellLogicalWidths()
[all …]
DRenderFileUploadControl.cpp306 int toAdd = borderAndPaddingWidth(); in computePreferredLogicalWidths() local
307 m_minPreferredLogicalWidth += toAdd; in computePreferredLogicalWidths()
308 m_maxPreferredLogicalWidth += toAdd; in computePreferredLogicalWidths()
DRenderListBox.cpp196 int toAdd = borderAndPaddingWidth(); in computePreferredLogicalWidths() local
197 m_minPreferredLogicalWidth += toAdd; in computePreferredLogicalWidths()
198 m_maxPreferredLogicalWidth += toAdd; in computePreferredLogicalWidths()
229 int toAdd = borderAndPaddingHeight(); in computeLogicalHeight() local
232 setHeight(itemHeight * size() - rowSpacing + toAdd); in computeLogicalHeight()
DRenderFlexibleBox.cpp323 int toAdd = borderBottom() + paddingBottom() + horizontalScrollbarHeight(); in layoutHorizontalBox() local
393 setHeight(height() + toAdd); in layoutHorizontalBox()
607 int toAdd = borderBottom() + paddingBottom() + horizontalScrollbarHeight(); in layoutVerticalBox() local
633 int minHeight = height() + toAdd; in layoutVerticalBox()
695 setHeight(height() + toAdd); in layoutVerticalBox()
DRenderMenuList.cpp274 int toAdd = borderAndPaddingWidth(); in computePreferredLogicalWidths() local
275 m_minPreferredLogicalWidth += toAdd; in computePreferredLogicalWidths()
276 m_maxPreferredLogicalWidth += toAdd; in computePreferredLogicalWidths()
DRenderTextControl.cpp593 int toAdd = borderAndPaddingWidth(); in computePreferredLogicalWidths() local
595 m_minPreferredLogicalWidth += toAdd; in computePreferredLogicalWidths()
596 m_maxPreferredLogicalWidth += toAdd; in computePreferredLogicalWidths()
DRenderBlock.cpp1289 int toAdd = borderAfter() + paddingAfter() + scrollbarLogicalHeight(); in layoutBlock() local
1290 … if (lowestFloatLogicalBottom() > (logicalHeight() - toAdd) && expandsToEncloseOverhangingFloats()) in layoutBlock()
1291 setLogicalHeight(lowestFloatLogicalBottom() + toAdd); in layoutBlock()
/external/icu4c/common/
Dcaniter.cpp469 UnicodeString *toAdd = new UnicodeString(prefix); in getEquivalents2() local
471 if (toAdd == 0) { in getEquivalents2()
475 *toAdd += item; in getEquivalents2()
476 fillinResult->put(*toAdd, toAdd, status); in getEquivalents2()
Duresbund.c773 static void ures_appendResPath(UResourceBundle *resB, const char* toAdd, int32_t lenToAdd, UErrorCo… in ures_appendResPath() argument
800 uprv_strcpy(resB->fResPath + resPathLenOrig, toAdd); in ures_appendResPath()
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/
DRegisterAllocator.java164 SsaInsn toAdd = SsaInsn.makeFromRop( in insertMoveBefore() local
169 insns.add(insnIndex, toAdd); in insertMoveBefore()
/external/jmonkeyengine/engine/src/core/com/jme3/util/
DBufferUtils.java396 public static void addInBuffer(Vector3f toAdd, FloatBuffer buf, int index) { in addInBuffer() argument
400 tempVec3.addLocal(toAdd); in addInBuffer()
601 public static void addInBuffer(Vector2f toAdd, FloatBuffer buf, int index) { in addInBuffer() argument
605 tempVec2.addLocal(toAdd); in addInBuffer()
/external/webkit/Source/WebCore/
DChangeLog-2002-12-036166 Start using khtml's 'toAdd' parameter to justify text.
6179 Pass additional 'toAdd' parameter.
DChangeLog-2011-02-1615972 (WebCore::InlineBox::expansion): Renamed toAdd() to this.