HomeSort by relevance Sort by last modified time
    Searched defs:index2 (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/chromium/chrome/browser/autofill/crypto/
rc4_decryptor.h 63 uint8 index2 = 0; local
74 index2 = (key_data[index1] + state[counter] + index2) % kKeyDataSize;
75 SwapByte(&state[counter], &state[index2]);
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DOM2Helper.java 237 int index2 = ((DOMOrder) node2).getUid(); local
239 return index1 <= index2;
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogGroupBuilder.java 146 int index2 = number2.indexOf('@'); local
149 if (index2 != -1) {
150 userinfo2 = number2.substring(0, index2);
151 rest2 = number2.substring(index2);
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
AnnotationItem.java 74 int index2 = item2.type.getIndex(); local
76 if (index1 < index2) {
78 } else if (index1 > index2) {
  /dalvik/dx/src/com/android/dx/dex/file/
AnnotationItem.java 72 int index2 = item2.type.getIndex(); local
74 if (index1 < index2) {
76 } else if (index1 > index2) {
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
AnnotationItem.java 72 int index2 = item2.type.getIndex(); local
74 if (index1 < index2) {
76 } else if (index1 > index2) {
  /external/icu4c/common/
utrie2_impl.h 144 int32_t index2[UNEWTRIE2_MAX_INDEX_2_LENGTH]; member in struct:UNewTrie2
  /external/javassist/src/main/javassist/bytecode/
CodeAnalyzer.java 108 int target, index2; local
156 index2 = (index & ~3) + 4;
157 target = index + ci.s32bitAt(index2);
160 int npairs = ci.s32bitAt(index2 + 4);
161 index2 += 12;
163 target = index + ci.s32bitAt(index2);
166 index2 += 8;
170 int low = ci.s32bitAt(index2 + 4);
171 int high = ci.s32bitAt(index2 + 8);
173 index2 += 12
    [all...]
AnnotationsAttribute.java 448 int index2 = cpool.addUtf8Info(newName); local
449 ByteArray.write16bit(index2, info, pos);
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ViewHierarchyLoader.java 168 int index2 = data.indexOf(',', index + 1); local
169 int length = Integer.parseInt(data.substring(index + 1, index2));
170 start = index2 + 1 + length;
171 property.value = data.substring(index2 + 1, index2 + 1 + length);
  /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...]
  /external/chromium/base/
file_path.cc 1073 int index2 = 0; local
    [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_model_unittest.cc 63 int index2) {
67 this->index2 = index2;
73 int index2) {
77 ASSERT_EQ(index2, this->index2);
83 int index2; member in struct:BookmarkModelTest::ObserverDetails
    [all...]
  /external/freetype/include/freetype/internal/
t1types.h 161 FT_Int index2; member in struct:AFM_KernPairRec_
  /external/hyphenation/
hyphen.c 366 char * index2 = strchr(index + 1, ','); local
368 if (index2) {
369 *index2 = '\0';
371 replcut = (signed char) atoi(index2 + 1);
    [all...]
  /external/opencv/cv/src/
cvconvhull.cpp 610 int index1, index2, index3; local
618 CV_CALL( index2 = cvSeqElemIdx( ptseq, pos ));
626 index2 = *CV_SEQ_ELEM( hull, int, 1 );
630 sign += (index2 > index1) ? 1 : 0;
631 sign += (index3 > index2) ? 1 : 0;
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
AtPhonebook.java 301 // AT+CPBR=<index1>[,<index2>]
311 int index2; local
324 index2 = index1;
326 index2 = Integer.parseInt(indices[1]);
335 mCpbrIndex2 = index2;
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceScript.java 781 int index2 = line.indexOf(')'); local
783 if (index1 < 0 || index2 < 0) {
787 String[] args = line.substring(index1 + 1, index2).split(",");
    [all...]
  /external/freetype/src/psaux/
afmparse.c 667 FT_ULong index1 = KERN_INDEX( kp1->index1, kp1->index2 );
668 FT_ULong index2 = KERN_INDEX( kp2->index1, kp2->index2 ); local
671 if ( index1 > index2 )
673 else if ( index1 < index2 )
734 kp->index2 = shared_vals[1].u.i;
  /external/libxml2/include/libxml/
xpath.h 122 int index2; member in struct:_xmlXPathObject
  /external/libxml2/
xinclude.c 915 int index1, index2; local
933 index2 = range->index2;
973 len = index2;
978 len = index2;
1009 if (index2 > 1) {
1010 end = xmlXIncludeGetNthChild(cur, index2 - 1);
1011 index2 = 0;
    [all...]
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
1446 int index1, index2; local
    [all...]
  /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...]
  /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...]
  /external/webkit/Source/WebCore/accessibility/
AccessibilityObject.cpp 682 int index2 = index(positionRange.end); local
683 if (index1 < 0 || index2 < 0 || index1 > index2)
686 return PlainTextRange(index1, index2 - index1);
    [all...]

Completed in 1301 milliseconds

1 2 3