HomeSort by relevance Sort by last modified time
    Searched refs:endPos (Results 1 - 25 of 223) sorted by null

1 2 3 4 5 6 7 8 9

  /external/lzma/CPP/7zip/Common/
FilterCoder.cpp 55 UInt32 endPos = bufferPos + (UInt32)processedSize;
57 bufferPos = Filter->Filter(_buffer, endPos);
58 if (bufferPos > endPos)
60 for (; endPos < bufferPos; endPos++)
61 _buffer[endPos] = 0;
62 bufferPos = Filter->Filter(_buffer, endPos);
67 if (endPos == 0)
69 return WriteWithLimit(outStream, endPos);
77 while (bufferPos < endPos)
    [all...]
  /frameworks/wilhelm/src/itf/
ISeek.c 52 SLmillisecond startPos, SLmillisecond endPos)
56 if (!(startPos < endPos)) {
62 if ((startPos != 0) && (endPos != SL_TIME_UNKNOWN)) {
98 thiz->mEndPos = endPos;
120 SLmillisecond endPos = thiz->mEndPos;
124 *pEndPos = endPos;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
ResizableIntArray.java 127 final int endPos = startPos + length;
128 ensureCapacity(endPos);
129 Arrays.fill(mArray, startPos, endPos, value);
130 if (mLength < endPos) {
131 mLength = endPos;
  /external/chromium_org/third_party/icu/source/common/
brkeng.h 67 * @param endPos The end of the run within the supplied text.
76 int32_t endPos,
192 * @param endPos The end of the run within the supplied text.
201 int32_t endPos,
rbbi.cpp     [all...]
  /external/fonttools/MetaTools/
buildTableList.py 51 endPos = doc.find(end)
53 doc = doc[:beginPos] + ", ".join(tables[:-1]) + " and " + tables[-1] + "\n" + doc[endPos:]
  /external/icu/icu4c/source/common/
brkeng.h 67 * @param endPos The end of the run within the supplied text.
76 int32_t endPos,
192 * @param endPos The end of the run within the supplied text.
201 int32_t endPos,
rbbi.cpp     [all...]
  /frameworks/base/services/core/jni/
com_android_server_am_BatteryStatsService.cpp 120 char* endPos;
122 int irq = (int)strtol(pos, &endPos, 10);
123 if (pos == endPos) {
128 pos = endPos;
134 char* endpos = pos; local
135 while (*endpos != 0) {
136 if (*endpos == '\n') {
137 *endpos = 0;
140 endpos++;
  /external/srec/portable/src/
pstream.c 306 PortFile->endPos = PortFile->curPos + end;
308 /* set the PortFile->endPos */
322 PortFile->endPos = curFrame->buffer + end;
401 if (PortFile->endPos == PortFile->curPos) /* end of file */
412 cbAvail = PortFile->endPos - PortFile->curPos;
424 if (PortFile->curPos == PortFile->endPos)
478 PortFile->curPos = PortFile->endPos = nextFrame->buffer;
499 if (curFrame == PortFile->endFrame && PortFile->endPos < PortFile->curPos)
500 PortFile->endPos = PortFile->curPos;
527 PortFile->curPos = PortFile->endPos;
    [all...]
  /frameworks/base/core/jni/
com_android_internal_net_NetworkStatsFactory.cpp 130 char* endPos;
132 idx = (int)strtol(pos, &endPos, 10);
134 if (pos == endPos) {
145 pos = endPos;
183 endPos = pos;
184 while (*endPos != ' ') endPos++;
187 if (endPos - pos == 3) {
201 pos = endPos;
  /external/fonttools/Lib/fontTools/ttLib/tables/
G_P_K_G_.py 26 endPos = (self.numGMAPs+1) * 4
27 GMAPoffsets.fromstring(newData[:endPos])
35 pos = endPos
36 endPos = pos + (self.numGlyplets + 1)*4
38 glyphletOffsets.fromstring(newData[pos:endPos])
  /external/protobuf/java/src/main/java/com/google/protobuf/nano/
ExtendableMessageNano.java 133 int endPos = input.getPosition();
134 byte[] bytes = input.getData(startPos, endPos - startPos);
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
SmsMessageBodyTest.java 271 int endPos = (asciiCharsLen - startPos > addCount) ?
273 sb.append(sAsciiChars, startPos, endPos);
274 startPos = (endPos == asciiCharsLen) ? 0 : endPos;
305 int endPos = (unicodeCharsLen - startPos > addCount) ?
307 sb.append(sUnicodeChars, startPos, endPos);
308 startPos = (endPos == unicodeCharsLen) ? 0 : endPos;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
TreeSetTest.java 269 final int endPos = 3 * objArray.length / 4;
270 SortedSet aSubSet = ts.subSet(objArray[startPos], objArray[endPos]);
272 aSubSet.size() == (endPos - startPos));
273 for (int counter = startPos; counter < endPos; counter++)
  /libcore/luni/src/test/java/libcore/java/util/
OldTreeSetTest.java 183 final int endPos = 3 * objArray.length / 4;
184 SortedSet aSubSet = ts.subSet(objArray[startPos], objArray[endPos]);
186 aSubSet.size() == (endPos - startPos));
187 for (int counter = startPos; counter < endPos; counter++)
  /external/lzma/CPP/7zip/Compress/
Bcj2Coder.cpp 124 UInt32 endPos = bufferPos + processedSize;
126 if (endPos < 5)
129 for (bufferPos = 0; bufferPos < endPos; bufferPos++)
153 UInt32 limit = endPos - 5;
247 while(bufferPos < endPos)
  /external/chromium_org/v8/tools/
csvparser.js 59 var endPos = line.length;
61 if (endPos > 0) {
75 } while (pos <= endPos);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderView.h 98 void setSelection(RenderObject* start, int startPos, RenderObject*, int endPos, SelectionPaintInvalidationMode = PaintInvalidationNewXOROld);
104 void selectionStartEnd(int& startPos, int& endPos) const;
InlineTextBox.cpp 151 bool InlineTextBox::isSelected(int startPos, int endPos) const
156 int ePos = std::min(endPos - m_start, int(m_len) + (isLineBreak() ? 0 : 1));
164 int startPos, endPos;
165 renderer().selectionStartEnd(startPos, endPos);
173 bool end = (state != RenderObject::SelectionStart && endPos > m_start && endPos <= lastSelectable);
181 (state == RenderObject::SelectionStart || endPos > lastSelectable))
206 LayoutRect InlineTextBox::localSelectionRect(int startPos, int endPos)
209 int ePos = std::min(endPos - m_start, (int)m_len);
578 int startPos, endPos;
    [all...]
InlineTextBox.h 113 virtual LayoutRect localSelectionRect(int startPos, int endPos);
114 bool isSelected(int startPos, int endPos) const;
176 void paintSingleCompositionBackgroundRun(GraphicsContext*, const FloatPoint& boxOrigin, RenderStyle*, const Font&, Color backgroundColor, int startPos, int endPos);
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPUtilsImpl.java 192 int endPos = catedStr.length();
193 while (itemEnd < endPos)
197 for (itemStart = itemEnd; itemStart < endPos; itemStart++)
206 if (itemStart >= endPos)
215 for (itemEnd = itemStart; itemEnd < endPos; itemEnd++)
229 else if ((itemEnd + 1) < endPos)
259 for (itemEnd = itemStart; itemEnd < endPos; itemEnd++)
278 if ((itemEnd + 1) < endPos)
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
StaggeredGrid.java 289 public final List<Integer>[] getItemPositionsInRows(int startPos, int endPos) {
294 for (int i = startPos; i <= endPos; i++) {
  /external/srec/portable/include/
pstream.h 43 const unsigned char *endPos;
  /external/javassist/src/main/javassist/expr/
Expr.java 318 int endPos = oldIterator.lookAhead();
320 if (ed.doit(thisClass, thisMethod, context, oldIterator, endPos))
323 oldIterator.move(endPos + oldIterator.getCodeLength() - size);

Completed in 626 milliseconds

1 2 3 4 5 6 7 8 9