/external/lzma/CPP/7zip/Common/ |
LockedStream.h | 17 HRESULT Read(UInt64 startPos, void *data, UInt32 size, UInt32 *processedSize);
27 void Init(CLockedInStream *lockedInStream, UInt64 startPos)
30 _pos = startPos;
|
LockedStream.cpp | 7 HRESULT CLockedInStream::Read(UInt64 startPos, void *data, UInt32 size,
11 RINOK(_stream->Seek(startPos, STREAM_SEEK_SET, NULL));
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/ |
ResizableIntArray.java | 112 public void append(final ResizableIntArray src, final int startPos, final int length) { 119 System.arraycopy(src.mArray, startPos, mArray, currentLength, length); 123 public void fill(final int value, final int startPos, final int length) { 124 if (startPos < 0 || length < 0) { 125 throw new IllegalArgumentException("startPos=" + startPos + "; length=" + length); 127 final int endPos = startPos + length; 129 Arrays.fill(mArray, startPos, endPos, value);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
InputPointers.java | 73 * @param startPos the starting index of the pointers in {@code src}. 77 void append(InputPointers src, int startPos, int length) { 81 mXCoordinates.append(src.mXCoordinates, startPos, length); 82 mYCoordinates.append(src.mYCoordinates, startPos, length); 83 mPointerIds.append(src.mPointerIds, startPos, length); 84 mTimes.append(src.mTimes, startPos, length); 94 * @param startPos the starting index of the data in {@code times} and etc. 98 ResizableIntArray yCoordinates, int startPos, int length) { 102 mXCoordinates.append(xCoordinates, startPos, length); 103 mYCoordinates.append(yCoordinates, startPos, length) [all...] |
/frameworks/wilhelm/src/itf/ |
ISeek.c | 52 SLmillisecond startPos, SLmillisecond endPos) 56 if (!(startPos < endPos)) { 62 if ((startPos != 0) && (endPos != SL_TIME_UNKNOWN)) { 97 thiz->mStartPos = startPos; 119 SLmillisecond startPos = thiz->mStartPos; 123 *pStartPos = startPos;
|
/frameworks/base/core/java/android/database/sqlite/ |
SQLiteQuery.java | 46 * @param startPos The start position for filling the window. 57 int fillWindow(CursorWindow window, int startPos, int requiredPos, boolean countAllRows) { 63 window, startPos, requiredPos, countAllRows, getConnectionFlags(),
|
SQLiteCursor.java | 143 int startPos = DatabaseUtils.cursorPickFillWindowStartPosition(requiredPos, 0); 144 mCount = mQuery.fillWindow(mWindow, startPos, requiredPos, true); 150 int startPos = DatabaseUtils.cursorPickFillWindowStartPosition(requiredPos, 152 mQuery.fillWindow(mWindow, startPos, requiredPos, false);
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
regex.c | 42 # define re_search(bufp, string, size, startpos, range, regs) \ 43 __re_search (bufp, string, size, startpos, range, regs) 47 # define re_search_2(bufp, st1, s1, st2, s2, startpos, range, regs, stop) \ 48 __re_search_2 (bufp, st1, s1, st2, s2, startpos, range, regs, stop)
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/signature/ |
RSASHA1Verify.java | 175 int startpos = 0; local 178 startpos++; 180 if ((v.length - startpos) != (rsa_block_len - 1)) 182 log.warning("ssh-rsa signature: (v.length - startpos) != (rsa_block_len - 1)"); 186 if (v[startpos] != 0x01) 188 log.warning("ssh-rsa signature: v[startpos] != 0x01"); 192 int pos = startpos + 1; 211 int num_pad = pos - (startpos + 1);
|
/external/lzma/CPP/7zip/Archive/7z/ |
7zItem.h | 173 UInt64 StartPos;
193 CUInt64DefVector StartPos;
207 StartPos.Clear();
222 StartPos.ReserveDown();
243 StartPos.CheckSize(size) &&
|
7zDecode.h | 52 UInt64 startPos,
|
/frameworks/base/core/jni/ |
android_database_SQLiteConnection.cpp | 575 sqlite3_stmt* statement, int numColumns, int startPos, int addedRows) { 579 LOG_WINDOW("Failed allocating fieldDir at startPos %d row %d, error=%d", 580 startPos, addedRows, status); 599 sizeIncludingNull, startPos + addedRows, i, status); 604 startPos + addedRows, i, sizeIncludingNull); 615 LOG_WINDOW("%d,%d is INTEGER 0x%016llx", startPos + addedRows, i, value); 626 LOG_WINDOW("%d,%d is FLOAT %lf", startPos + addedRows, i, value); 634 size, startPos + addedRows, i, status); 639 startPos + addedRows, i, size); 650 LOG_WINDOW("%d,%d is NULL", startPos + addedRows, i) [all...] |
/external/chromium_org/third_party/icu/source/test/intltest/ |
ustrtest.cpp | 716 int32_t startPos = 0; 718 startPos != -1 && startPos < test1.length(); 719 (startPos = test1.indexOf(test2, startPos)) != -1 ? (++occurrences, startPos += 4) : 0) 724 for ( occurrences = 0, startPos = 10; 725 startPos != -1 && startPos < test1.length(); 726 (startPos = test1.indexOf(test2, startPos)) != -1 ? (++occurrences, startPos += 4) : 0 [all...] |
/external/icu4c/test/intltest/ |
ustrtest.cpp | 718 int32_t startPos = 0; 720 startPos != -1 && startPos < test1.length(); 721 (startPos = test1.indexOf(test2, startPos)) != -1 ? (++occurrences, startPos += 4) : 0) 726 for ( occurrences = 0, startPos = 10; 727 startPos != -1 && startPos < test1.length(); 728 (startPos = test1.indexOf(test2, startPos)) != -1 ? (++occurrences, startPos += 4) : 0 [all...] |
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/ |
ResizableIntArrayTests.java | 259 final int startPos = srcLen / 3; 261 final int endPos = startPos + length; 262 assertTrue(startPos >= 1); 271 src.fill(value, startPos, -1); 277 src.fill(value, startPos, length); 282 if (i >= startPos && i < endPos) { 289 final int length2 = srcLen * 2 - startPos; 290 final int largeEnd = startPos + length2; 293 src.fill(value2, startPos, length2); 298 if (i >= startPos && i < largeEnd) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
XPathParser.cpp | 187 int startPos = m_nextPos + 1; 189 for (m_nextPos = startPos; m_nextPos < m_data.length(); ++m_nextPos) { 191 String value = m_data.substring(startPos, m_nextPos - startPos); 205 int startPos = m_nextPos; 221 return Token(NUMBER, m_data.substring(startPos, m_nextPos - startPos)); 226 int startPos = m_nextPos; 238 name = m_data.substring(startPos, m_nextPos - startPos); [all...] |
/frameworks/base/libs/hwui/ |
GradientCache.cpp | 266 float startPos = positions[0]; 267 float distance = positions[1] - startPos; 274 startPos = positions[currentPos]; 279 distance = positions[currentPos] - startPos; 282 float amount = (pos - startPos) / distance;
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
Python.g | 73 this.startPos = -1; 540 {if ( this.startPos==0 || this.implicitLineJoiningLevel>0 ) 545 WS : {this.startPos>0}?=> (' '|'\t')+ {$channel=HIDDEN;} 558 : {this.startPos==0}?=> 599 : {this.startPos==0}?=> (' '|'\t')* '#' (~'\n')* '\n'+ 600 | {this.startPos>0}?=> '#' (~'\n')* // let NEWLINE handle \n unless char pos==0 for '#'
|
/packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/ |
HtmlParser.java | 701 int startPos = pos; 733 X.assertTrue(pos > startPos); 751 X.assertTrue(pos > startPos); 836 * @param startPos Start of tag, including '<' 845 private void addStartTag(HTML.Element element, final int startPos, 849 X.assertTrue(startPos < startAttributesPos); 854 String beforeAttrs = html.substring(startPos, startAttributesPos); 867 X.assertTrue(html.charAt(startPos) == '<'); 869 String tagName = html.substring(startPos + 1, startAttributesPos); 904 * @param startPos Start of tag, including '<' [all...] |
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/ |
HtmlParser.java | 701 int startPos = pos; 733 X.assertTrue(pos > startPos); 751 X.assertTrue(pos > startPos); 836 * @param startPos Start of tag, including '<' 845 private void addStartTag(HTML.Element element, final int startPos, 849 X.assertTrue(startPos < startAttributesPos); 854 String beforeAttrs = html.substring(startPos, startAttributesPos); 867 X.assertTrue(html.charAt(startPos) == '<'); 869 String tagName = html.substring(startPos + 1, startAttributesPos); 904 * @param startPos Start of tag, including '<' [all...] |
/external/lzma/CPP/7zip/Archive/Common/ |
MultiStream.cpp | 90 _file.StartPos = 0;
110 _file.StartPos += _file.UnPackSize;
|
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/ |
drag_selector.js | 113 var startPos = DragSelector.getScrolledPosition(list, event); 114 if (!startPos) 116 this.startX_ = startPos.x; 117 this.startY_ = startPos.y;
|
/external/chromium_org/third_party/WebKit/Source/wtf/text/ |
WTFString.cpp | 696 unsigned startPos = 0; 698 while ((endPos = find(separator, startPos)) != kNotFound) { 699 if (allowEmptyEntries || startPos != endPos) 700 result.append(substring(startPos, endPos - startPos)); 701 startPos = endPos + separator.length(); 703 if (allowEmptyEntries || startPos != length()) 704 result.append(substring(startPos)); 711 unsigned startPos = 0; 713 while ((endPos = find(separator, startPos)) != kNotFound) [all...] |
/external/chromium_org/third_party/icu/source/common/ |
brkeng.h | 66 * @param startPos The start of the run within the supplied text. 75 int32_t startPos, 191 * @param startPos The start of the run within the supplied text. 200 int32_t startPos,
|
/external/icu4c/common/ |
brkeng.h | 66 * @param startPos The start of the run within the supplied text. 75 int32_t startPos, 191 * @param startPos The start of the run within the supplied text. 200 int32_t startPos,
|