Searched defs:itemCount (Results 1 - 3 of 3) sorted by relevance
/openjdk7/jdk/src/macosx/classes/com/apple/laf/ |
H A D | AquaComboBoxPopup.java | 231 final int itemCount = comboBox.getModel().getSize(); 303 return computePopupBoundsForMenu(px, py, pw, ph, itemCount, scrBounds); 321 // The one to use when itemCount <= maxRowCount. Size never adjusts for arrows 323 protected Rectangle computePopupBoundsForMenu(final int px, final int py, final int pw, final int ph, final int itemCount, final Rectangle scrBounds) { argument 325 //System.err.println("itemCount: " +itemCount +" src: "+ scrBounds); 327 if (list != null && itemCount > 0) {
|
/openjdk7/jdk/src/windows/native/sun/windows/ |
H A D | awt_Choice.cpp | 596 int itemCount = env->GetArrayLength(items); local 597 if (itemCount > 0) { 599 for (i = 0; i < itemCount; i++)
|
H A D | awt_List.cpp | 608 int itemCount = env->GetArrayLength(items); local 609 if (itemCount > 0) 613 for (jsize i=0; i < itemCount; i++)
|
Completed in 36 milliseconds