/dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/text/ |
BreakIterator.java | 40 int index, index2; local 46 index2 = locale.lastIndexOf('_'); 50 } else if(index > 0 && index == index2) { 54 } else if(index > 0 && index2 > index) { 57 locale.substring(index+1,index2), 58 locale.substring(index2+1));
|
Collator.java | 406 int index, index2; local 412 index2 = locale.lastIndexOf('_'); 416 } else if(index == 2 && index == index2) { 420 } else if(index == 2 && index2 > index) { 423 locale.substring(index + 1,index2), 424 locale.substring(index2 + 1));
|
/external/webkit/WebCore/platform/graphics/ |
GlyphBuffer.h | 93 void swap(int index1, int index2) 96 m_fontData[index1] = m_fontData[index2]; 97 m_fontData[index2] = f; 100 m_glyphs[index1] = m_glyphs[index2]; 101 m_glyphs[index2] = g; 104 m_advances[index1] = m_advances[index2]; 105 m_advances[index2] = s; 109 m_offsets[index1] = m_offsets[index2]; 110 m_offsets[index2] = offset;
|
/external/quake/quake/src/QW/client/ |
d_polyse.c | 186 finalvert_t *pfv, *index0, *index1, *index2; local 198 index2 = pfv + ptri[i].vertindex[2]; 201 (index0->v[0]-index2->v[0]) - 203 (index0->v[1]-index2->v[1])) >= 0) 212 D_PolysetRecursiveTriangle(index0->v, index1->v, index2->v); 220 s2 = index2->v[2]; 226 if (index2->flags & ALIAS_ONSEAM) 227 index2->v[2] += r_affinetridesc.seamfixupX16; 229 D_PolysetRecursiveTriangle(index0->v, index1->v, index2->v); 233 index2->v[2] = s2 247 finalvert_t *pfv, *index0, *index1, *index2; local [all...] |
d_polysa.s | 1124 // finalvert_t *pfv, *index0, *index1, *index2; 1139 // index2 = pfv + ptri[i].vertindex[2]; 1155 // (index0->v[0]-index2->v[0]) - 1156 // (index0->v[0]-index1->v[0])*(index0->v[1]-index2->v[1])) >= 0) [all...] |
/external/freetype/src/pshinter/ |
pshrec.c | 376 FT_Int index2 ) 379 PS_Mask mask2 = table->masks + index2; 408 FT_Int index2, 415 /* swap index1 and index2 so that index1 < index2 */ 416 if ( index1 > index2 ) 419 index1 = index2; 420 index2 = temp; 423 if ( index1 < index2 && index1 >= 0 && index2 < (FT_Int)table->num_masks 501 FT_Int index1, index2; local [all...] |
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/ |
ViewHierarchyLoader.java | 163 int index2 = data.indexOf(',', index + 1); local 164 int length = Integer.parseInt(data.substring(index + 1, index2)); 165 start = index2 + 1 + length; 166 property.value = data.substring(index2 + 1, index2 + 1 + length);
|
/frameworks/base/awt/org/apache/harmony/awt/gl/ |
MultiRectAreaOp.java | 585 int index2 = 1; local 594 System.arraycopy(right, index2, dst, count, count2 - index2); 595 count += count2 - index2; 598 if (index2 >= count2) { 615 pos2 = index2; 617 index2 += 4; 618 } while (index2 < count2 && (top2 = right[index2 + 1]) < top1); 619 System.arraycopy(right, pos2, dst, count, index2 - pos2) [all...] |
/external/quake/quake/src/WinQuake/ |
d_polyse.cpp | 186 finalvert_t *pfv, *index0, *index1, *index2;
local 198 index2 = pfv + ptri[i].vertindex[2];
201 (index0->v[0]-index2->v[0]) -
203 (index0->v[1]-index2->v[1])) >= 0)
212 D_PolysetRecursiveTriangle(index0->v, index1->v, index2->v);
220 s2 = index2->v[2];
226 if (index2->flags & ALIAS_ONSEAM)
227 index2->v[2] += r_affinetridesc.seamfixupX16;
229 D_PolysetRecursiveTriangle(index0->v, index1->v, index2->v);
233 index2->v[2] = s2; 247 finalvert_t *pfv, *index0, *index1, *index2; local [all...] |
d_polysa.s | 1124 // finalvert_t *pfv, *index0, *index1, *index2; 1139 // index2 = pfv + ptri[i].vertindex[2]; 1155 // (index0->v[0]-index2->v[0]) - 1156 // (index0->v[0]-index1->v[0])*(index0->v[1]-index2->v[1])) >= 0) [all...] |
/external/proguard/src/proguard/ |
InputReader.java | 157 for (int index2 = 0; index2 < outputClassPath.size(); index2++) 159 ClassPathEntry entry2 = outputClassPath.get(index2);
|
Initializer.java | 389 for (int index2 = 0; index2 < memberSpecifications.size(); index2++) 392 (MemberSpecification)memberSpecifications.get(index2);
|
/external/icu4c/common/ |
utrie2_builder.c | 164 newTrie->index2[i]=j; 192 newTrie->index2[i]=UNEWTRIE2_DATA_NULL_OFFSET; 200 newTrie->index2[UNEWTRIE2_INDEX_GAP_OFFSET+i]=-1; 205 newTrie->index2[UNEWTRIE2_INDEX_2_NULL_OFFSET+i]=UNEWTRIE2_DATA_NULL_OFFSET; 253 uprv_memcpy(trie->index2, other->index2, other->index2Length*4); 469 block=trie->index2[i2]; 479 if(newTop>LENGTHOF(trie->index2)) { 488 uprv_memcpy(trie->index2+newBlock, trie->index2+trie->index2NullOffset, UTRIE2_INDEX_2_BLOCK_LENGTH*4) [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
AnnotationItem.java | 74 int index2 = item2.type.getIndex(); local 76 if (index1 < index2) { 78 } else if (index1 > index2) {
|
/packages/apps/Phone/src/com/android/phone/ |
BluetoothAtPhonebook.java | 181 // AT+CPBR=<index1>[,<index2>] 185 int index2; 193 index2 = index1; 197 index2 = (Integer)args[1]; 215 if (pbr.cursor.getCount() == 0 || index1 <= 0 || index2 < index1 || 216 index2 > pbr.cursor.getCount() || index1 > pbr.cursor.getCount()) { 224 for (int index = index1; index <= index2; index++) {
|
/external/freetype/src/psaux/ |
afmparse.c | 670 FT_ULong index1 = KERN_INDEX( kp1->index1, kp1->index2 ); 671 FT_ULong index2 = KERN_INDEX( kp2->index1, kp2->index2 ); local 674 if ( index1 > index2 ) 676 else if ( index1 < index2 ) 737 kp->index2 = shared_vals[1].u.i;
|
/dalvik/libcore/luni/src/main/java/java/net/ |
URI.java | 309 int index, index1, index2, index3; local 324 index2 = temp.indexOf('/'); 329 if (index != -1 && (index2 >= index || index2 == -1) 360 validateQuery(uri, query, index2 + 1 + index); 392 if (index2 > -1) { 393 pathIndex += index2; 401 validateSsp(uri, schemespecificpart, index2 + 2 + index); 642 int index2; local 650 index2 = host.indexOf('.', index + 1) 1326 int index2 = 0; local [all...] |
/external/libxml2/ |
xpointer.c | 210 * @index2: the second index 218 xmlXPtrCmpPoints(xmlNodePtr node1, int index1, xmlNodePtr node2, int index2) { 225 if (index1 < index2) 227 if (index1 > index2) 281 range->user2, range->index2); 287 range->index = range->index2; 288 range->index2 = tmp; 317 if (range1->index2 != range2->index2) 357 ret->index2 = endindex 1436 int index1, index2; local [all...] |
/packages/apps/Contacts/src/com/android/contacts/model/ |
EntitySet.java | 205 int index2, int[] backRefs) { 217 Long rawContactId2 = get(index2).getValues().getAsLong(RawContacts._ID); 221 builder.withValueBackReference(AggregationExceptions.RAW_CONTACT_ID2, backRefs[index2]);
|
/external/freetype/include/freetype/internal/ |
t1types.h | 172 FT_Int index2; member in struct:AFM_KernPairRec_
|
/packages/apps/Music/src/com/android/music/ |
MediaPlaybackService.java | [all...] |
/external/openssl/crypto/rc4/ |
rrc4.doc | 48 unsigned char index2; 58 index2 = 0; 61 index2 = (key_data_ptr[index1] + state[counter] + 62 index2) % 256; 63 swap_byte(&state[counter], &state[index2]);
|
/frameworks/base/awt/java/awt/ |
MenuComponent.java | 650 * index2. 654 * @param index2 658 final MultiRectArea getUpdateClip(int index1, int index2) { 663 if (index2 >= 0) { 664 clip.add(getItemRect(index2));
|
/development/cmds/monkey/src/com/android/commands/monkey/ |
MonkeySourceScript.java | 355 int index2 = line.indexOf(')'); local 357 if (index1 < 0 || index2 < 0) { 361 String[] args = line.substring(index1 + 1, index2).split(",");
|
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/ |
DOM2Helper.java | 237 int index2 = ((DOMOrder) node2).getUid(); local 239 return index1 <= index2;
|