/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;
|
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...] |
RenderFileUploadControl.cpp | 299 int toAdd = borderAndPaddingWidth(); 300 m_minPreferredLogicalWidth += toAdd; 301 m_maxPreferredLogicalWidth += toAdd;
|
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;
|
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...] |
RenderTextControl.cpp | 593 int toAdd = borderAndPaddingWidth(); 595 m_minPreferredLogicalWidth += toAdd; 596 m_maxPreferredLogicalWidth += toAdd;
|
RenderBlock.cpp | [all...] |
/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);
|
/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...] |
/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)));
|
uresimp.h | 102 /*U_CFUNC void ures_appendResPath(UResourceBundle *resB, const char* toAdd, int32_t lenToAdd);*/ 103 /*U_CFUNC void ures_setResPath(UResourceBundle *resB, const char* 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);
|
/external/openssl/crypto/engine/ |
eng_openssl.c | 185 ENGINE *toadd = engine_openssl(); local 186 if(!toadd) return; 187 ENGINE_add(toadd); 190 ENGINE_free(toadd);
|
eng_dyn.c | 289 ENGINE *toadd = engine_dynamic(); local 290 if(!toadd) return; 291 ENGINE_add(toadd); 294 ENGINE_free(toadd);
|
/dalvik/dx/src/com/android/dx/ssa/back/ |
RegisterAllocator.java | 164 SsaInsn toAdd = SsaInsn.makeFromRop( 169 insns.add(insnIndex, toAdd);
|
/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...] |
/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/elfutils/src/ |
i386_ld.c | 148 Elf32_Word toadd; local 156 toadd = file->scninfo[xndx].offset; 157 if (toadd != 0) 159 toadd);
|
/prebuilt/common/netbeans-visual/ |
org-openide-util.jar | |
/external/webkit/Source/WebCore/ |
ChangeLog-2002-12-03 | [all...] |