/external/jmonkeyengine/engine/src/core/com/jme3/light/ |
H A D | LightList.java | 51 private int listSize; field in class:LightList 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; [all...] |
/external/srec/srec/Recognizer/include/ |
H A D | 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);
|
H A D | SR_RecognizerResultImpl.h | 101 size_t* listSize);
|
/external/icu4c/test/intltest/ |
H A D | 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; [all...] |
H A D | colldata.h | 117 int32_t listSize; member in class:CEList 181 int32_t listSize; member in class:StringList
|
H A D | ssearch.cpp | 350 int32_t listSize; member in class:OrderList 354 : list(NULL), listMax(16), listSize(0) 360 : list(NULL), listMax(16), listSize(0) 409 if (listSize >= listMax) { 414 uprv_memcpy(newList, list, listSize * sizeof(Order)); 419 list[listSize].order = order; 420 list[listSize].lowOffset = low; 421 list[listSize].highOffset = high; 423 listSize += 1; 428 if (index >= listSize) { [all...] |
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
H A D | 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) { method in class:AnnotationsDirectoryItem
|
H A D | 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/icu/source/i18n/unicode/ |
H A D | colldata.h | 151 int32_t listSize; member in class:CEList 245 int32_t listSize; member in class:StringList
|
/external/stlport/test/eh/ |
H A D | test_list.cpp | 67 size_t listSize = random_number(random_base); local 69 while ( testList.size() < listSize )
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
H A D | PopupMenuClient.h | 58 virtual int listSize() const = 0;
|
/external/chromium_org/third_party/icu/source/test/perf/DateFmtPerf/ |
H A D | DateFmtPerf.h | 370 uint32_t listSize = sizeof(collation_strings_escaped)/sizeof(collation_strings_escaped[0]); local 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]); local 406 for(i=listSize-1; i>=1; i--) {
|
/external/chromium_org/third_party/icu/source/i18n/ |
H A D | 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 > [all...] |
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
H A D | SCCP.java | 552 int listSize = cfgWorklist.size() - 1; 553 SsaBasicBlock block = cfgWorklist.remove(listSize); 558 int listSize = cfgPhiWorklist.size() - 1; 559 SsaBasicBlock block = cfgPhiWorklist.remove(listSize); 564 int listSize = varyingWorklist.size() - 1; 565 SsaInsn insn = varyingWorklist.remove(listSize); 578 int listSize = ssaWorklist.size() - 1; 579 SsaInsn insn = ssaWorklist.remove(listSize);
|
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
H A D | FileInputType.cpp | 367 unsigned listSize = fileList->length(); local 368 if (!listSize) { 373 for (size_t i = 0; i < listSize; ++i) { 375 if (i != listSize - 1)
|
/external/icu4c/test/perf/DateFmtPerf/ |
H A D | DateFmtPerf.h | 434 uint32_t listSize = sizeof(collation_strings_escaped)/sizeof(collation_strings_escaped[0]); local 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]); local 470 for(i=listSize-1; i>=1; i--) {
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
H A D | ssearch.cpp | 701 int32_t listSize; member in class:OrderList 705 : list(NULL), listMax(16), listSize(0) 711 : list(NULL), listMax(16), listSize(0) 760 if (listSize >= listMax) { 765 uprv_memcpy(newList, list, listSize * sizeof(Order)); 770 list[listSize].order = order; 771 list[listSize].lowOffset = low; 772 list[listSize].highOffset = high; 774 listSize += 1; 779 if (index >= listSize) { 1109 int32_t listSize; member in class:PCEList [all...] |
/external/jmonkeyengine/engine/src/desktop/com/jme3/app/state/ |
H A D | MjpegFileWriter.java | 140 public int listSize = 200; field in class:MjpegFileWriter.RIFFHeader 152 baos.write(intBytes(swapInt(listSize))); 378 public int listSize = 0; field in class:MjpegFileWriter.AVIMovieList 388 baos.write(intBytes(swapInt(listSize)));
|
/external/chromium_org/third_party/icu/source/common/ |
H A D | icuplug.c | 61 * @param listSize the number of entries in the list 66 static int32_t uplug_removeEntryAt(void *list, int32_t listSize, int32_t memberSize, int32_t itemToRemove) { argument 70 if(listSize<1) { 71 return listSize; 75 if(listSize > itemToRemove+1) { 79 return listSize-1;
|
/external/icu4c/common/ |
H A D | icuplug.c | 65 * @param listSize the number of entries in the list 70 static int32_t uplug_removeEntryAt(void *list, int32_t listSize, int32_t memberSize, int32_t itemToRemove) { argument 74 if(listSize<1) { 75 return listSize; 79 if(listSize > itemToRemove+1) { 83 return listSize-1;
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
H A D | RenderMenuList.h | 92 virtual int listSize() const OVERRIDE;
|
/external/chromium_org/third_party/WebKit/Source/web/ |
H A D | AutofillPopupMenuClient.h | 89 virtual int listSize() const { return getSuggestionsCount(); } function in class:blink::AutofillPopupMenuClient
|
H A D | ExternalPopupMenu.cpp | 165 int itemCount = m_popupMenuClient->listSize();
|
/external/srec/srec/Recognizer/src/ |
H A D | RecognizerResultImpl.c | 125 const size_t nbest, LCHAR** list, size_t* listSize) 140 CHKLOG(rc, result->getKeyList(result, list, listSize)); 124 SR_RecognizerResult_GetKeyList(const SR_RecognizerResult* self, const size_t nbest, LCHAR** list, size_t* listSize) argument
|
/external/srec/srec_jni/ |
H A D | android_speech_srec_Recognizer.cpp | 498 size_t listSize = sizeof(list) / sizeof(list[0]); local 499 ESR_ReturnCode esr_status = SR_RecognizerResultGetKeyList(((SR_RecognizerImpl*)recognizer)->result, nbest, list, &listSize); 508 jobjectArray array = env->NewObjectArray(listSize, stringClass, NULL); 512 for (size_t i = 0; i < listSize; i++) {
|