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

1 2 3 4

  /libcore/luni/src/main/java/libcore/net/event/
NetworkEventDispatcher.java 47 public void addListener(NetworkEventListener toAdd) {
48 if (toAdd == null) {
49 throw new NullPointerException("toAdd == null");
51 listeners.add(toAdd);
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsBounds.h 32 void add(const SkPathOpsBounds& toAdd) {
33 add(toAdd.fLeft, toAdd.fTop, toAdd.fRight, toAdd.fBottom);
  /external/skia/src/pathops/
SkPathOpsBounds.h 32 void add(const SkPathOpsBounds& toAdd) {
33 add(toAdd.fLeft, toAdd.fTop, toAdd.fRight, toAdd.fBottom);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderSlider.cpp 84 LayoutUnit toAdd = borderAndPaddingWidth();
85 m_minPreferredLogicalWidth += toAdd;
86 m_maxPreferredLogicalWidth += toAdd;
RenderFileUploadControl.cpp 193 int toAdd = borderAndPaddingWidth();
194 m_minPreferredLogicalWidth += toAdd;
195 m_maxPreferredLogicalWidth += toAdd;
RenderTextControl.cpp 278 LayoutUnit toAdd = borderAndPaddingLogicalWidth();
280 m_minPreferredLogicalWidth += toAdd;
281 m_maxPreferredLogicalWidth += toAdd;
RenderTableSection.cpp 335 int toAdd = (tableHeight * m_grid[row].logicalHeight.percent() / 100) - rowsHeight[row - rowIndex];
339 toAdd = std::min(toAdd, extraRowSpanningHeight);
340 accumulatedPositionIncrease += toAdd;
341 extraRowSpanningHeight -= toAdd;
    [all...]
RenderDeprecatedFlexibleBox.cpp 328 LayoutUnit toAdd = borderBottom() + paddingBottom() + horizontalScrollbarHeight();
398 setHeight(height() + toAdd);
619 LayoutUnit toAdd = borderBottom() + paddingBottom() + horizontalScrollbarHeight();
645 LayoutUnit minHeight = height() + toAdd;
714 setHeight(height() + toAdd);
    [all...]
RenderMenuList.cpp 366 LayoutUnit toAdd = borderAndPaddingWidth();
367 m_minPreferredLogicalWidth += toAdd;
368 m_maxPreferredLogicalWidth += toAdd;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/bluetooth/
PairingUtils.java 205 * @param toAdd The string to add
208 public static ByteBuffer putString(ByteBuffer buffer, String toAdd) {
209 buffer.putInt(toAdd.length());
210 buffer.put(toAdd.getBytes());
  /external/chromium_org/third_party/icu/source/common/unicode/
enumset.h 36 inline void add(T toAdd) { set(toAdd, 1); }
  /external/icu/icu4c/source/common/unicode/
enumset.h 38 inline void add(T toAdd) { set(toAdd, 1); }
  /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 188 * @param toAdd {@code non-null;} the annotations to add
191 public void addAll(Annotations toAdd) {
194 if (toAdd == null) {
195 throw new NullPointerException("toAdd == null");
198 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()) {
  /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 615 NormalSsaInsn toAdd = new NormalSsaInsn(
619 insns.add(insns.size() - 1, toAdd);
638 NormalSsaInsn toAdd = new NormalSsaInsn(
642 insns.add(getCountPhiInsns(), toAdd);
757 NormalSsaInsn toAdd = new NormalSsaInsn(
763 toSchedule.add(insertPlace++, toAdd);
949 NormalSsaInsn toAdd = new NormalSsaInsn(
962 insns.set(movesFromPhisAtBeginning + 1, toAdd);
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/back/
RegisterAllocator.java 162 SsaInsn toAdd = SsaInsn.makeFromRop(
167 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 109 NodeList toAdd = newChild.getChildNodes();
110 for (int i = 0; i < toAdd.getLength(); i++) {
111 insertChildAt(toAdd.item(i), index + i);
  /external/chromium_org/third_party/icu/source/common/
caniter.cpp 470 UnicodeString *toAdd = new UnicodeString(prefix);
472 if (toAdd == 0) {
476 *toAdd += item;
477 fillinResult->put(*toAdd, toAdd, status);
479 //if (PROGRESS) printf("Adding: %s\n", UToS(Tr(*toAdd)));
  /external/icu/icu4c/source/common/
caniter.cpp 470 UnicodeString *toAdd = new UnicodeString(prefix);
472 if (toAdd == 0) {
476 *toAdd += item;
477 fillinResult->put(*toAdd, toAdd, status);
479 //if (PROGRESS) printf("Adding: %s\n", UToS(Tr(*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 

Completed in 1031 milliseconds

1 2 3 4