/external/chromium_org/chrome/common/extensions/docs/examples/extensions/imageinfo/imageinfo/ |
binaryajax.js | 21 this.getByteAt = function(iOffset) { 22 return data.charCodeAt(iOffset + dataOffset) & 0xFF; 27 this.getByteAt = function(iOffset) { 28 return IEBinary_getByteAt(data, iOffset + dataOffset); 36 this.getSByteAt = function(iOffset) { 37 var iByte = this.getByteAt(iOffset); 44 this.getShortAt = function(iOffset, bBigEndian) { 46 (this.getByteAt(iOffset) << 8) + this.getByteAt(iOffset + 1) 47 : (this.getByteAt(iOffset + 1) << 8) + this.getByteAt(iOffset [all...] |
exif.js | 332 var iOffset = 2; 334 while (iOffset < iLength) { 335 if (oFile.getByteAt(iOffset) != 0xFF) { 336 if (bDebug) console.log("Not a valid marker at offset " + iOffset + ", found: " + oFile.getByteAt(iOffset)); 340 var iMarker = oFile.getByteAt(iOffset+1); 347 return readEXIFData(oFile, iOffset + 4, oFile.getShortAt(iOffset+2, true)-2); 348 iOffset += 2 + oFile.getShortAt(iOffset+2, true) [all...] |
/external/chromium_org/third_party/sqlite/src/ext/fts1/ |
fts1_tokenizer1.c | 37 int iOffset; /* current position in pInput */ 123 c->iOffset = 0; /* start tokenizing at the beginning */ 159 while( c->iOffset<c->nBytes ){ 163 while( c->iOffset<c->nBytes && isDelim(t, p[c->iOffset]) ){ 164 c->iOffset++; 168 iStartOffset = c->iOffset; 169 while( c->iOffset<c->nBytes && !isDelim(t, p[c->iOffset]) ){ 170 c->iOffset++ [all...] |
fts1_porter.c | 50 int iOffset; /* current position in zInput */ 108 c->iOffset = 0; /* start tokenizing at the beginning */ 589 while( c->iOffset<c->nInput ){ 593 while( c->iOffset<c->nInput && isDelim(z[c->iOffset]) ){ 594 c->iOffset++; 598 iStartOffset = c->iOffset; 599 while( c->iOffset<c->nInput && !isDelim(z[c->iOffset]) ){ 600 c->iOffset++ [all...] |
fulltext.c | 366 * A merge is performed using an integer [iOffset] provided by the caller. 367 * [iOffset] is subtracted from each position in the on-disk doclist for the 377 int iOffset; 381 DocList *pIn, int iOffset, DocList *pOut){ 384 m->iOffset = iOffset; 401 if( block_pos-m->iOffset==in_pos ){ 411 } else if( in_pos==-1 || (block_pos!=-1 && block_pos-m->iOffset<in_pos) ){ 1062 * produce the doclist [out], using the given offset [iOffset] for phrase [all...] |
/external/chromium_org/third_party/sqlite/src/ext/fts2/ |
fts2_tokenizer1.c | 44 int iOffset; /* current position in pInput */ 132 c->iOffset = 0; /* start tokenizing at the beginning */ 168 while( c->iOffset<c->nBytes ){ 172 while( c->iOffset<c->nBytes && simpleDelim(t, p[c->iOffset]) ){ 173 c->iOffset++; 177 iStartOffset = c->iOffset; 178 while( c->iOffset<c->nBytes && !simpleDelim(t, p[c->iOffset]) ){ 179 c->iOffset++ [all...] |
fts2_porter.c | 49 int iOffset; /* current position in zInput */ 107 c->iOffset = 0; /* start tokenizing at the beginning */ 587 while( c->iOffset<c->nInput ){ 591 while( c->iOffset<c->nInput && isDelim(z[c->iOffset]) ){ 592 c->iOffset++; 596 iStartOffset = c->iOffset; 597 while( c->iOffset<c->nInput && !isDelim(z[c->iOffset]) ){ 598 c->iOffset++ [all...] |
/external/chromium_org/third_party/sqlite/src/ext/fts3/ |
fts3_tokenizer1.c | 45 int iOffset; /* current position in pInput */ 134 c->iOffset = 0; /* start tokenizing at the beginning */ 170 while( c->iOffset<c->nBytes ){ 174 while( c->iOffset<c->nBytes && simpleDelim(t, p[c->iOffset]) ){ 175 c->iOffset++; 179 iStartOffset = c->iOffset; 180 while( c->iOffset<c->nBytes && !simpleDelim(t, p[c->iOffset]) ){ 181 c->iOffset++ [all...] |
fts3_porter.c | 50 int iOffset; /* current position in zInput */ 110 c->iOffset = 0; /* start tokenizing at the beginning */ 590 while( c->iOffset<c->nInput ){ 594 while( c->iOffset<c->nInput && isDelim(z[c->iOffset]) ){ 595 c->iOffset++; 599 iStartOffset = c->iOffset; 600 while( c->iOffset<c->nInput && !isDelim(z[c->iOffset]) ){ 601 c->iOffset++ [all...] |
/external/chromium_org/third_party/sqlite/src/test/ |
incrblob2.test | 36 foreach iOffset [list 0 256 4094] { 37 do_test incrblob2-1.$iOffset.1 { 39 puts $fd "[string repeat x $iOffset]SQLite version 3.6.0" 43 do_test incrblob2-1.$iOffset.2 { 48 if {$iOffset != 0} { 49 seek $fd2 $iOffset start 50 seek $fd1 $iOffset start 55 do_test incrblob2-1.$iOffset.3 { 59 do_test incrblob2-1.$iOffset.4 { 60 seek $fd2 $iOffset star [all...] |
rollback.test | 110 set iOffset [expr (([file size testA.db-journal] + 511)/512)*512] 113 seek $fd $iOffset
|
select9.test | 71 for {set iOffset 0} {$iOffset < $iOffsetEnd} {incr iOffset $iOffsetIncr} { 75 if {$iOffset != 0} { 76 append ::compound_sql " OFFSET $iOffset" 79 set iStart [expr {$iOffset*$nCol}] 80 set iEnd [expr {($iOffset*$nCol) + ($iLimit*$nCol) -1}] 82 do_test $testname.limit=$iLimit.offset=$iOffset {
|
corrupt.test | 198 set iOffset [hexio_get_int [hexio_read test.db [expr 12+($iRoot-1)*1024] 2]] 200 hexio_write test.db [expr ($iRoot-1)*1024 + $iOffset] $data
|
/external/chromium_org/third_party/sqlite/src/src/ |
memjournal.c | 53 sqlite3_int64 iOffset; /* Offset from the beginning of the file */ 85 assert( iOfst+iAmt<=p->endpoint.iOffset ); 87 if( p->readpoint.iOffset!=iOfst || iOfst==0 ){ 108 p->readpoint.iOffset = iOfst+iAmt; 130 assert( iOfst==p->endpoint.iOffset ); 135 int iChunkOffset = (int)(p->endpoint.iOffset%JOURNAL_CHUNKSIZE); 158 p->endpoint.iOffset += iSpace; 209 *pSize = (sqlite_int64) p->endpoint.iOffset;
|
vdbeblob.c | 28 int iOffset; /* Byte offset of blob in cursor data */ 76 p->iOffset = v->apCsr[0]->aOffset[p->iCol]; 358 int iOffset, 371 if( n<0 || iOffset<0 || (iOffset+n)>p->nByte ){ 386 rc = xCall(p->pCsr, iOffset+p->iOffset, n, z); 404 int sqlite3_blob_read(sqlite3_blob *pBlob, void *z, int n, int iOffset){ 405 return blobReadWrite(pBlob, z, n, iOffset, sqlite3BtreeData); 411 int sqlite3_blob_write(sqlite3_blob *pBlob, const void *z, int n, int iOffset){ [all...] |
test6.c | 114 ** not xWrite(). In that case, iOffset is the size that the file is 118 i64 iOffset; /* Byte offset of the start of this write() */ 264 if( iSize==pWrite->iOffset ){ 280 pWrite->pFile, pWrite->zBuf, pWrite->nBuf, pWrite->iOffset 283 rc = sqlite3OsTruncate(pRealFile, pWrite->iOffset); 289 pWrite->nBuf, (int)pWrite->iOffset, pWrite->pFile->zName 301 pWrite->nBuf, (int)pWrite->iOffset, pWrite->pFile->zName 309 int iFirst = (pWrite->iOffset/g.iSectorSize); 310 int iLast = (pWrite->iOffset+pWrite->nBuf-1)/g.iSectorSize; 360 sqlite3_int64 iOffset, [all...] |
test_osinst.c | 119 sqlite3_int64 iOffset; /* Log file offset of start of write buffer */ 624 p->pLog->pMethods->xWrite(p->pLog, p->aBuf, p->nBuf, p->iOffset); 625 p->iOffset += p->nBuf; 739 p->iOffset = 0; 814 sqlite3_int64 iOffset; /* Offset of next record in file */ 966 if( pCsr->iOffset+nRead<=p->nByte ){ 968 rc = p->pFd->pMethods->xRead(p->pFd, pCsr->aBuf, nRead, pCsr->iOffset); 975 rc = p->pFd->pMethods->xRead(p->pFd, buf, 4, pCsr->iOffset+nRead); 980 rc = p->pFd->pMethods->xRead(p->pFd, zStr, nStr, pCsr->iOffset+nRead); 1003 pCsr->iOffset += nRead [all...] |
mem5.c | 460 int iOffset; /* An offset into mem5.aCtrl[] */ 491 iOffset = 0; 494 if( (iOffset+nAlloc)<=mem5.nBlock ){ 495 mem5.aCtrl[iOffset] = ii | CTRL_FREE; 496 memsys5Link(iOffset, ii); 497 iOffset += nAlloc; 499 assert((iOffset+nAlloc)>mem5.nBlock);
|
wal.c | [all...] |
select.c | 433 if( pSelect->iOffset ){ 434 iLimit = pSelect->iOffset+1; 456 if( p->iOffset && iContinue!=0 ){ 458 sqlite3VdbeAddOp2(v, OP_AddImm, p->iOffset, -1); 459 addr = sqlite3VdbeAddOp1(v, OP_IfNeg, p->iOffset); [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
tlogstg.h | 156 virtual HRESULT WINAPI GetRelativeEntry(int iOffset,ITravelLogEntry **ptle) = 0; 170 HRESULT (WINAPI *GetRelativeEntry)(ITravelLogStg *This,int iOffset,ITravelLogEntry **ptle); 186 #define ITravelLogStg_GetRelativeEntry(This,iOffset,ptle) (This)->lpVtbl->GetRelativeEntry(This,iOffset,ptle) 201 HRESULT WINAPI ITravelLogStg_GetRelativeEntry_Proxy(ITravelLogStg *This,int iOffset,ITravelLogEntry **ptle);
|
shdeprecated.h | 139 virtual HRESULT WINAPI Travel(IUnknown *punk,int iOffset) = 0; 140 virtual HRESULT WINAPI GetTravelEntry(IUnknown *punk,int iOffset,ITravelEntry **ppte) = 0; 142 virtual HRESULT WINAPI GetToolTipText(IUnknown *punk,int iOffset,int idsTemplate,LPWSTR pwzText,DWORD cchText) = 0; 157 HRESULT (WINAPI *Travel)(ITravelLog *This,IUnknown *punk,int iOffset); 158 HRESULT (WINAPI *GetTravelEntry)(ITravelLog *This,IUnknown *punk,int iOffset,ITravelEntry **ppte); 160 HRESULT (WINAPI *GetToolTipText)(ITravelLog *This,IUnknown *punk,int iOffset,int idsTemplate,LPWSTR pwzText,DWORD cchText); 177 #define ITravelLog_Travel(This,punk,iOffset) (This)->lpVtbl->Travel(This,punk,iOffset) 178 #define ITravelLog_GetTravelEntry(This,punk,iOffset,ppte) (This)->lpVtbl->GetTravelEntry(This,punk,iOffset,ppte [all...] |
/external/chromium_org/third_party/sqlite/src/ext/async/ |
sqlite3async.c | 417 ** The interpretation of the iOffset and nByte variables varies depending 424 ** iOffset -> Offset in file to write to. 431 ** iOffset -> Size to truncate file to. 435 ** iOffset -> Unused. 439 ** iOffset -> Contains the "syncDir" flag. 443 ** iOffset -> Value of "delflag". 458 sqlite_int64 iOffset; /* See above */ 554 pWrite->pFileData ? pWrite->pFileData->zName : "-", pWrite->iOffset)); 590 sqlite3_int64 iOffset, 609 p->iOffset = iOffset [all...] |
/external/pdfium/fpdfsdk/src/javascript/ |
util.cpp | 147 int iOffset = 0;
150 while(iOffset != -1)
152 iOffend = c_ConvChar.find(L"%",iOffset+1);
155 strSub = c_ConvChar.substr(iOffset);
157 strSub = c_ConvChar.substr(iOffset ,iOffend - iOffset);
159 iOffset = iOffend ;
|
/external/sonivox/jet_tools/JetCreator/ |
JetSegGraph.py | 324 iOffset = 0
326 iOffset = self.iMidiModeStart
331 dc.DrawRectangle(self.iEdges + iOffset, gHeight-6, till, 3)
346 iOffset = 0
348 iOffset = self.iMidiModeStart
356 dc.DrawRectangle(self.iEdges + iOffset, gHeight-6, till, 3)
|