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

1 2 3 4

  /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/apps/Contacts/src/com/android/contacts/
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/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++) {
  /external/webkit/Source/JavaScriptCore/bytecode/
StructureStubInfo.h 84 void initGetByIdSelfList(PolymorphicAccessStructureList* structureList, int listSize)
89 u.getByIdProtoList.listSize = listSize;
92 void initGetByIdProtoList(PolymorphicAccessStructureList* structureList, int listSize)
97 u.getByIdProtoList.listSize = listSize;
148 int listSize;
152 int listSize;
StructureStubInfo.cpp 82 polymorphicStructures->markAggregate(markStack, u.getByIdSelfList.listSize);
87 polymorphicStructures->markAggregate(markStack, u.getByIdProtoList.listSize);
  /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...]
  /frameworks/compile/libbcc/lib/ExecutionEngine/
MCCacheWriter.cpp 140 size_t listSize = sizeof(MCO_PragmaList) +
143 MCO_PragmaList *list = (MCO_PragmaList *)malloc(listSize);
151 mpHeaderSection->pragma_list_size = listSize;
219 size_t listSize = sizeof(MCO_String_Ptr) + sizeof(size_t) * varCount;
221 MCO_String_Ptr *list = (MCO_String_Ptr*)malloc(listSize);
229 mpHeaderSection->export_var_name_list_size = listSize;
243 size_t listSize = sizeof(MCO_String_Ptr) + sizeof(size_t) * funcCount;
245 MCO_String_Ptr *list = (MCO_String_Ptr*)malloc(listSize);
253 mpHeaderSection->export_func_name_list_size = listSize;
267 size_t listSize = sizeof(MCO_String_Ptr) + sizeof(size_t) * forEachCount
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebRenderLayer.mm 179 size_t listSize = negZOrderList->size();
181 if (listSize) {
187 for (size_t i = 0; i < listSize; ++i) {
199 size_t listSize = normalFlowList->size();
201 if (listSize) {
207 for (size_t i = 0; i < listSize; ++i) {
219 size_t listSize = posZOrderList->size();
221 if (listSize) {
227 for (size_t i = 0; i < listSize; ++i) {
  /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);
  /external/webkit/Source/WebCore/rendering/
RenderLayerCompositor.cpp 506 size_t listSize = negZOrderList->size();
507 for (size_t i = 0; i < listSize; ++i) {
517 size_t listSize = posZOrderList->size();
518 for (size_t i = 0; i < listSize; ++i) {
528 size_t listSize = normalFlowList->size();
529 for (size_t i = 0; i < listSize; ++i) {
627 int listSize = list->size();
637 for (int i = 0; i < listSize; ++i) {
645 for (int j = i + 1; j < listSize; ++j) {
659 for (int j = 0; j < listSize; ++j)
    [all...]
  /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 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/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/webkit/Source/WebCore/platform/
PopupMenuClient.h 56 virtual int listSize() const = 0;
  /external/icu4c/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/jni/
com_android_nfc.cpp 430 int addTechIfNeeded(int *techList, int* handleList, int* typeList, int listSize,
433 for (int i = 0; i < listSize; i++) {
439 if (!found && listSize < maxListSize) {
440 techList[listSize] = techToAdd;
441 handleList[listSize] = handleToAdd;
442 typeList[listSize] = typeToAdd;
443 return listSize + 1;
446 return listSize;
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
SettingsActivity.java 110 int listSize = list.size();
111 if (listSize == 0)
  /external/icu4c/test/perf/DateFmtPerf/
DateFmtPerf.h 371 uint32_t listSize = sizeof(collation_strings_escaped)/sizeof(collation_strings_escaped[0]);
372 collation_strings = new UnicodeString[listSize];
373 for(uint32_t k=0;k<listSize;k++) {
400 uint32_t listSize = sizeof(collation_strings_escaped)/sizeof(collation_strings_escaped[0]);
407 for(i=listSize-1; i>=1; i--) {
  /external/icu4c/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...]
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
domstringlistgetlength01.js 95 var listSize;
107 listSize = paramList.length;
109 assert("domstringlistgetlength01_notZero",0 != listSize);

Completed in 748 milliseconds

1 2 3 4