Searched defs:iEnd (Results 1 - 21 of 21) sorted by relevance

/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2_tokenizer.c156 int iEnd; local
196 while( SQLITE_OK==p->xNext(pCsr, &zToken, &nToken, &iStart, &iEnd, &iPos) ){
200 nToken = iEnd-iStart;
H A Dfts2_icu.c187 int iEnd = 0; local
190 while( iStart==iEnd ){
194 iEnd = ubrk_next(pCsr->pIter);
195 if( iEnd==UBRK_DONE ){
199 while( iStart<iEnd ){
208 assert(iStart<=iEnd);
224 &pCsr->aChar[iStart], iEnd-iStart, /* Input vars */
232 *piEndOffset = pCsr->aOffset[iEnd];
H A Dfts2.c3273 int iBegin, iEnd, iPos; /* Offsets of beginning and end */ local
3295 rc = pTModule->xNext(pTCursor, &zToken, &nToken, &iBegin, &iEnd, &iPos);
3298 iRotorLen[iRotor&FTS2_ROTOR_MASK] = iEnd-iBegin;
3451 int iStart, iEnd; local
3499 iEnd = aMatch[i].iStart + aMatch[i].nByte + 40;
3500 iEnd = wordBoundary(iEnd, zDoc, nDoc, aMatch, nMatch, iCol);
3501 if( iEnd>=nDoc-10 ){
3502 iEnd = nDoc;
3508 while( iStart<iEnd ){
3738 int nToken, iBegin, iEnd, iPos; local
5489 sqlite_int64 iEnd = sqlite3_column_int64(s, 1); local
6636 sqlite_int64 iEnd = sqlite3_column_int64(s, 1); local
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_icu.c187 int iEnd = 0; local
190 while( iStart==iEnd ){
194 iEnd = ubrk_next(pCsr->pIter);
195 if( iEnd==UBRK_DONE ){
199 while( iStart<iEnd ){
208 assert(iStart<=iEnd);
224 &pCsr->aChar[iStart], iEnd-iStart, /* Input vars */
232 *piEndOffset = pCsr->aOffset[iEnd];
H A Dfts3_tokenizer.c262 int iEnd; local
302 while( SQLITE_OK==p->xNext(pCsr, &zToken, &nToken, &iStart, &iEnd, &iPos) ){
306 nToken = iEnd-iStart;
H A Dfts3_expr.c150 int nToken, iStart, iEnd, iPosition; local
154 rc = pModule->xNext(pCursor, &zToken, &nToken, &iStart, &iEnd, &iPosition);
170 if( iEnd<n && z[iEnd]=='*' ){
172 iEnd++;
178 nConsumed = iEnd;
233 int nToken, iBegin, iEnd, iPos; local
234 rc = pModule->xNext(pCursor, &zToken, &nToken, &iBegin, &iEnd, &iPos);
252 if( iEnd<nInput && zInput[iEnd]
[all...]
H A Dfts3_snippet.c331 int iEnd = 0x7FFFFFFF; local
335 if( pPhrase->pHead && pPhrase->iHead<iEnd ){
336 iEnd = pPhrase->iHead;
339 if( iEnd==0x7FFFFFFF ){
343 pIter->iCurrent = iStart = iEnd - pIter->nSnippet + 1;
346 fts3SnippetAdvance(&pPhrase->pHead, &pPhrase->iHead, iEnd+1);
664 int iEnd = 0; /* Byte offset of end of current token */ local
703 rc = fts3StringAppend(pOut, &zDoc[iEnd], -1);
734 if( iCurrent>iPos ) rc = fts3StringAppend(pOut, &zDoc[iEnd], iBegin-iEnd);
1488 int iEnd; local
[all...]
H A Dfts3_write.c530 int iEnd; local
553 && SQLITE_OK==(rc = xNext(pCsr, &zToken, &nToken, &iStart, &iEnd, &iPos))
/external/chromium_org/third_party/sqlite/src/tool/
H A Dshowwal.c306 int iStart, iEnd; local
318 iEnd = mxFrame;
320 iEnd = strtol(&zLeft[2], 0, 0);
339 iEnd = iStart;
341 if( iStart<1 || iEnd<iStart || iEnd>mxFrame ){
347 while( iStart<=iEnd ){
H A Dshowdb.c500 int iStart, iEnd; local
512 iEnd = mxPage;
514 iEnd = strtol(&zLeft[2], 0, 0);
542 iEnd = iStart;
544 if( iStart<1 || iEnd<iStart || iEnd>mxPage ){
550 while( iStart<=iEnd ){
/external/chromium_org/third_party/sqlite/src/src/
H A Dbackup.c221 const i64 iEnd = (i64)iSrcPg*(i64)nSrcPgsz; local
266 for(iOff=iEnd-(i64)nSrcPgsz; rc==SQLITE_OK && iOff<iEnd; iOff+=nDestPgsz){
460 i64 iEnd; local
477 iEnd = MIN(PENDING_BYTE + pgszDest, iSize);
480 rc==SQLITE_OK && iOff<iEnd;
H A Dinsert.c139 int iEnd = sqlite3VdbeCurrentAddr(v); local
144 for(i=iStartAddr; i<iEnd; i++){
H A Dtest_quota.c405 sqlite3_int64 iEnd = iOfst+iAmt; local
410 if( pFile->iSize<iEnd ){
413 szNew = pGroup->iSize - pFile->iSize + iEnd;
425 pFile->iSize = iEnd;
H A Dselect.c3725 int iEnd; /* Address of the end of the query */ local
3899 iEnd = sqlite3VdbeMakeLabel(v);
3901 computeLimitRegisters(pParse, p, iEnd);
4347 sqlite3VdbeResolveLabel(v, iEnd);
/external/javassist/src/main/javassist/bytecode/
H A DCodeIterator.java957 private static int copyGapBytes(byte[] newcode, int j, byte[] code, int i, int iEnd) { argument
958 switch (iEnd - i) {
/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfulltext.c261 int iStart, iEnd; local
263 pReader->p += getVarint32(pReader->p, &iEnd);
H A Dfts1.c447 int iStart, iEnd; local
449 pReader->p += getVarint32(pReader->p, &iEnd);
2230 int iBegin, iEnd, iPos; /* Offsets of beginning and end */ local
2252 rc = pTModule->xNext(pTCursor, &zToken, &nToken, &iBegin, &iEnd, &iPos);
2255 iRotorLen[iRotor&FTS1_ROTOR_MASK] = iEnd-iBegin;
2425 int iStart, iEnd; local
2473 iEnd = aMatch[i].iStart + aMatch[i].nByte + 40;
2474 iEnd = wordBoundary(iEnd, zDoc, nDoc, aMatch, nMatch, iCol);
2475 if( iEnd>
2689 int nToken, iBegin, iEnd, iPos; local
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c55663 const i64 iEnd = (i64)iSrcPg*(i64)nSrcPgsz; local
55902 i64 iEnd; local
84829 int iEnd = sqlite3VdbeCurrentAddr(v); local
93854 int iEnd; /* Address of the end of the query */ local
117577 int nToken, iStart, iEnd, iPosition; local
117660 int nToken, iBegin, iEnd, iPos; local
119646 int iEnd; local
120638 int iEnd; local
123166 int iEnd = 0x7FFFFFFF; local
123499 int iEnd = 0; /* Byte offset of end of current token */ local
124323 int iEnd; local
128383 int iEnd = 0; local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c57855 const i64 iEnd = (i64)iSrcPg*(i64)nSrcPgsz; local
58097 i64 iEnd; local
89101 int iEnd = sqlite3VdbeCurrentAddr(v); local
98276 int iEnd; /* Address of the end of the query */ local
122474 int nToken, iStart, iEnd, iPosition; local
122589 int nByte, iBegin, iEnd, iPos; local
124589 int iEnd; local
125750 int iEnd; local
128889 int iEnd = 0x7FFFFFFF; local
129223 int iEnd = 0; /* Byte offset of end of current token */ local
129974 int iEnd; local
134086 int iEnd = 0; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c57883 const i64 iEnd = (i64)iSrcPg*(i64)nSrcPgsz; local
58125 i64 iEnd; local
89137 int iEnd = sqlite3VdbeCurrentAddr(v); local
98312 int iEnd; /* Address of the end of the query */ local
122522 int nToken, iStart, iEnd, iPosition; local
122637 int nByte, iBegin, iEnd, iPos; local
124637 int iEnd; local
125798 int iEnd; local
128937 int iEnd = 0x7FFFFFFF; local
129271 int iEnd = 0; /* Byte offset of end of current token */ local
130022 int iEnd; local
134134 int iEnd = 0; local
[all...]
/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...

Completed in 993 milliseconds