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

1 2 3

  /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/dexmaker/src/dx/java/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 306 int toAdd = borderAndPaddingWidth();
307 m_minPreferredLogicalWidth += toAdd;
308 m_maxPreferredLogicalWidth += toAdd;
RenderTableSection.cpp 454 int RenderTableSection::layoutRows(int toAdd)
521 if (toAdd && totalRows && (m_rowPos[totalRows] || !nextSibling())) {
522 int totalHeight = m_rowPos[totalRows] + toAdd;
524 int dh = toAdd;
540 int toAdd = min(dh, static_cast<int>((totalHeight * m_grid[r].logicalHeight.percent() / 100) - rh));
541 // If toAdd is negative, then we don't want to shrink the row (this bug
543 toAdd = max(0, toAdd);
544 add += toAdd;
545 dh -= toAdd;
    [all...]
RenderFlexibleBox.cpp 323 int toAdd = borderBottom() + paddingBottom() + horizontalScrollbarHeight();
393 setHeight(height() + toAdd);
607 int toAdd = borderBottom() + paddingBottom() + horizontalScrollbarHeight();
633 int minHeight = height() + toAdd;
695 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;
  /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);
  /external/dexmaker/src/dx/java/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...]
  /external/dexmaker/src/dx/java/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)));
  /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);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.reconciler.dropins_1.1.2.R36x_v20101111-1430.jar 
org.eclipse.equinox.launcher.jar 
org.eclipse.equinox.launcher_1.1.0.v20100507.jar 
org.eclipse.equinox.p2.director.app_1.0.201.R36x_v20100823.jar 
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
BufferUtils.java 388 * @param toAdd
396 public static void addInBuffer(Vector3f toAdd, FloatBuffer buf, int index) {
400 tempVec3.addLocal(toAdd);
593 * @param toAdd
601 public static void addInBuffer(Vector2f toAdd, FloatBuffer buf, int index) {
605 tempVec2.addLocal(toAdd);
    [all...]

Completed in 2021 milliseconds

1 2 3