HomeSort by relevance Sort by last modified time
    Searched full:startpos (Results 1 - 25 of 304) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/tests/src/com/android/inputmethod/latin/utils/
ResizableIntArrayTests.java 234 final int startPos = 0;
235 dst.append(src, startPos, 0 /* length */);
238 assertIntArrayEquals("values after append zero", dstCopy.getPrimitiveArray(), startPos,
239 dst.getPrimitiveArray(), startPos, dstLength);
241 dst.append(src, startPos, srcLength);
246 assertIntArrayEquals("original values after append", dstCopy.getPrimitiveArray(), startPos,
247 dst.getPrimitiveArray(), startPos, dstLength);
248 assertIntArrayEquals("appended values after append", src.getPrimitiveArray(), startPos,
251 dst.append(src, startPos, srcLength);
257 dstCopy.getPrimitiveArray(), startPos, dst.getPrimitiveArray(), startPos
    [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;
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
InputPointersTests.java 177 final int startPos = 0;
179 startPos, 0 /* length */);
182 dstCopy.getXCoordinates(), startPos, dst.getXCoordinates(), startPos, dstLength);
184 dstCopy.getYCoordinates(), startPos, dst.getYCoordinates(), startPos, dstLength);
186 dstCopy.getPointerIds(), startPos, dst.getPointerIds(), startPos, dstLength);
188 dstCopy.getTimes(), startPos, dst.getTimes(), startPos, dstLength)
    [all...]
  /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/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...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
InputPointers.java 99 * @param startPos the starting index of the data in {@code times} and etc.
103 ResizableIntArray yCoordinates, int startPos, int length) {
107 mXCoordinates.append(xCoordinates, startPos, length);
108 mYCoordinates.append(yCoordinates, startPos, length);
110 mTimes.append(times, startPos, length);
  /external/chromium_org/third_party/icu/source/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...]
  /external/icu/icu4c/source/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...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathParser.cpp 185 int startPos = m_nextPos + 1;
187 for (m_nextPos = startPos; m_nextPos < m_data.length(); ++m_nextPos) {
189 String value = m_data.substring(startPos, m_nextPos - startPos);
203 int startPos = m_nextPos;
220 return Token(NUMBER, m_data.substring(startPos, m_nextPos - startPos));
225 int startPos = m_nextPos;
238 name = m_data.substring(startPos, m_nextPos - startPos);
    [all...]
  /frameworks/base/libs/hwui/
GradientCache.cpp 265 float startPos = positions[0];
266 float distance = positions[1] - startPos;
273 startPos = positions[currentPos];
278 distance = positions[currentPos] - startPos;
281 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/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/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/chromium_org/ui/file_manager/file_manager/foreground/js/
drag_selector.js 110 var startPos = DragSelector.getScrolledPosition(list, event);
111 if (!startPos)
113 this.startX_ = startPos.x;
114 this.startY_ = startPos.y;
  /external/icu/icu4c/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/pdfium/fpdfsdk/src/
fpdfdoc.cpp 168 DLLEXPORT FPDF_BOOL STDCALL FPDFLink_Enumerate(FPDF_PAGE page, int* startPos, FPDF_LINK* linkAnnot)
170 if(!page || !startPos || !linkAnnot)
176 for (int i = *startPos; i < (int)pAnnots->GetCount(); i ++) {
181 *startPos = i+1;

Completed in 1870 milliseconds

1 2 3 4 5 6 7 8 91011>>