/external/jmonkeyengine/engine/src/core/com/jme3/light/ |
LightList.java | 51 private int listSize; 82 listSize = 0; 113 if (listSize == list.length) { 116 list[listSize] = l; 117 distToOwner[listSize++] = Float.NEGATIVE_INFINITY; 126 if (index >= listSize || index < 0) 129 listSize --; 130 if (index == listSize){ 131 list[listSize] = null; 135 for (int i = index; i < listSize; i++) [all...] |
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/ |
Collapser.java | 53 int listSize = list.size(); 55 for (int i = 0; i < listSize; i++) { 58 for (int j = i + 1; j < listSize; j++) {
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/ |
Collapser.java | 59 int listSize = list.size(); 61 if (listSize > MAX_LISTSIZE_TO_COLLAPSE) { 65 for (int i = 0; i < listSize; i++) { 68 for (int j = i + 1; j < listSize; j++) {
|
/frameworks/base/core/java/android/content/res/ |
ColorStateList.java | 182 int listSize = 0; 231 if (listSize == 0 || stateSpec.length == 0) { 235 if (listSize + 1 >= listAllocated) { 236 listAllocated = ArrayUtils.idealIntArraySize(listSize + 1); 239 System.arraycopy(colorList, 0, ncolor, 0, listSize); 242 System.arraycopy(stateSpecList, 0, nstate, 0, listSize); 248 colorList[listSize] = color; 249 stateSpecList[listSize] = stateSpec; 250 listSize++; 253 mColors = new int[listSize]; [all...] |
/external/icu4c/test/intltest/ |
colldata.h | 117 int32_t listSize; 181 int32_t listSize;
|
colldata.cpp | 39 : ces(NULL), listMax(CELIST_BUFFER_SIZE), listSize(0) 111 if (listSize >= listMax) { 120 uprv_memcpy(newCEs, ces, listSize * sizeof(uint32_t)); 130 ces[listSize++] = ce; 135 if (index >= 0 && index < listSize) { 149 if (other == NULL || listSize - offset < other->size()) { 164 return listSize; 168 : strings(NULL), listMax(STRING_LIST_BUFFER_SIZE), listSize(0) 192 if (listSize >= listMax) { 199 for (int32_t i=0; i<listSize; ++i) [all...] |
/external/srec/srec/Recognizer/include/ |
SR_RecognizerResult.h | 79 * @param listSize [in/out] Size of list. If the return code is ESR_BUFFER_OVERFLOW, the required size 85 LCHAR** list, size_t* listSize); 151 * @param listSize [in/out] Size of list. If the return code is ESR_BUFFER_OVERFLOW, the required size 159 size_t* listSize);
|
SR_RecognizerResultImpl.h | 101 size_t* listSize);
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
AnnotationsDirectoryItem.java | 277 int elementCount = listSize(fieldAnnotations) 278 + listSize(methodAnnotations) + listSize(parameterAnnotations); 287 int fieldsSize = listSize(fieldAnnotations); 288 int methodsSize = listSize(methodAnnotations); 289 int parametersSize = listSize(parameterAnnotations); 345 private static int listSize(ArrayList<?> list) {
|
CatchStructs.java | 150 int listSize = list.size(); 158 out.writeSignedLeb128(-(listSize - 1)); 159 listSize--; 161 out.writeSignedLeb128(listSize); 164 for (int i = 0; i < listSize; i++) { 172 out.writeUnsignedLeb128(list.get(listSize).getHandler());
|
/dalvik/dx/src/com/android/dx/dex/file/ |
AnnotationsDirectoryItem.java | 276 int elementCount = listSize(fieldAnnotations) 277 + listSize(methodAnnotations) + listSize(parameterAnnotations); 286 int fieldsSize = listSize(fieldAnnotations); 287 int methodsSize = listSize(methodAnnotations); 288 int parametersSize = listSize(parameterAnnotations); 344 private static int listSize(ArrayList<?> list) {
|
CatchStructs.java | 147 int listSize = list.size(); 155 out.writeSleb128(-(listSize - 1)); 156 listSize--; 158 out.writeSleb128(listSize); 161 for (int i = 0; i < listSize; i++) { 169 out.writeUleb128(list.get(listSize).getHandler());
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
AnnotationsDirectoryItem.java | 277 int elementCount = listSize(fieldAnnotations) 278 + listSize(methodAnnotations) + listSize(parameterAnnotations); 287 int fieldsSize = listSize(fieldAnnotations); 288 int methodsSize = listSize(methodAnnotations); 289 int parametersSize = listSize(parameterAnnotations); 345 private static int listSize(ArrayList<?> list) {
|
CatchStructs.java | 148 int listSize = list.size(); 156 out.writeSleb128(-(listSize - 1)); 157 listSize--; 159 out.writeSleb128(listSize); 162 for (int i = 0; i < listSize; i++) { 170 out.writeUleb128(list.get(listSize).getHandler());
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
PopupMenuClient.h | 58 virtual int listSize() const = 0;
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
ConversationPositionTracker.java | 178 final int listSize = cursor.getCount(); 179 if (!isDataLoaded(cursor) || listSize == 0) { 198 if (foundPosition >= listSize) { 200 newPosition = listSize - 1;
|
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/ |
Predictor.java | 121 int listSize = topApps.size(); 122 ArrayList<StringFloat> result = new ArrayList<StringFloat>(listSize); 123 for (int i = 0; i < listSize; ++i) {
|
/external/chromium_org/third_party/icu/source/i18n/unicode/ |
colldata.h | 151 int32_t listSize; 245 int32_t listSize;
|
/external/stlport/test/eh/ |
test_list.cpp | 67 size_t listSize = random_number(random_base); 69 while ( testList.size() < listSize )
|
/packages/apps/Nfc/nxp/jni/ |
com_android_nfc.cpp | 382 int addTechIfNeeded(int *techList, int* handleList, int* typeList, int listSize, 385 for (int i = 0; i < listSize; i++) { 391 if (!found && listSize < maxListSize) { 392 techList[listSize] = techToAdd; 393 handleList[listSize] = handleToAdd; 394 typeList[listSize] = typeToAdd; 395 return listSize + 1; 398 return listSize;
|
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/ |
SettingsActivity.java | 110 int listSize = list.size(); 111 if (listSize == 0)
|
/external/chromium_org/third_party/icu/source/test/perf/DateFmtPerf/ |
DateFmtPerf.h | 370 uint32_t listSize = sizeof(collation_strings_escaped)/sizeof(collation_strings_escaped[0]); 371 collation_strings = new UnicodeString[listSize]; 372 for(uint32_t k=0;k<listSize;k++) { 399 uint32_t listSize = sizeof(collation_strings_escaped)/sizeof(collation_strings_escaped[0]); 406 for(i=listSize-1; i>=1; i--) {
|
/external/icu4c/test/perf/DateFmtPerf/ |
DateFmtPerf.h | 434 uint32_t listSize = sizeof(collation_strings_escaped)/sizeof(collation_strings_escaped[0]); 435 collation_strings = new UnicodeString[listSize]; 436 for(uint32_t k=0;k<listSize;k++) { 463 uint32_t listSize = sizeof(collation_strings_escaped)/sizeof(collation_strings_escaped[0]); 470 for(i=listSize-1; i>=1; i--) {
|
/external/chromium_org/third_party/icu/source/i18n/ |
colldata.cpp | 50 : ces(NULL), listMax(CELIST_BUFFER_SIZE), listSize(0) 131 if (listSize >= listMax) { 135 _histogram[listSize / CELIST_BUFFER_SIZE] += 1; 145 uprv_memcpy(newCEs, ces, listSize * sizeof(uint32_t)); 155 ces[listSize++] = ce; 160 if (index >= 0 && index < listSize) { 174 if (other == NULL || listSize - offset < other->size()) { 189 return listSize; 201 : strings(NULL), listMax(STRING_LIST_BUFFER_SIZE), listSize(0) 235 if (listSize >= listMax) [all...] |
/dalvik/dx/src/com/android/dx/ssa/ |
SCCP.java | 551 int listSize = cfgWorklist.size() - 1; 552 SsaBasicBlock block = cfgWorklist.remove(listSize); 557 int listSize = cfgPhiWorklist.size() - 1; 558 SsaBasicBlock block = cfgPhiWorklist.remove(listSize); 563 int listSize = varyingWorklist.size() - 1; 564 SsaInsn insn = varyingWorklist.remove(listSize); 577 int listSize = ssaWorklist.size() - 1; 578 SsaInsn insn = ssaWorklist.remove(listSize);
|