HomeSort by relevance Sort by last modified time
    Searched refs:endPos (Results 26 - 50 of 262) sorted by null

12 3 4 5 6 7 8 91011

  /external/gptfdisk/
gptcl.cc 554 size_t startPos = 0, endPos = 0;
562 endPos = argument.find(':', startPos);
564 if (endPos == string::npos) {
566 endPos = argument.length();
568 startPos = endPos + 1;
572 retVal = argument.substr(startPos, endPos - startPos);
  /external/v8/tools/
csvparser.js 59 var endPos = line.length;
61 if (endPos > 0) {
75 } while (pos <= endPos);
  /external/icu/android_icu4j/src/main/java/android/icu/text/
DictionaryBreakEngine.java 192 public int findBreaks(CharacterIterator text, int startPos, int endPos,
205 while ((current = text.getIndex()) < endPos && fSet.contains(c)) {
RuleBasedBreakIterator.java 377 int endPos = fText.getEndIndex();
378 boolean endShouldBeBoundary = isBoundary(endPos); // Has side effect of setting iterator position.
380 if (fPosition != endPos) {
381 assert(fPosition == endPos);
383 return endPos;
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DictionaryBreakEngine.java 191 public int findBreaks(CharacterIterator text, int startPos, int endPos,
204 while ((current = text.getIndex()) < endPos && fSet.contains(c)) {
RuleBasedBreakIterator.java 385 int endPos = fText.getEndIndex();
386 boolean endShouldBeBoundary = isBoundary(endPos); // Has side effect of setting iterator position.
388 if (fPosition != endPos) {
389 assert(fPosition == endPos);
391 return endPos;
    [all...]
  /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/leanback/src/main/java/androidx/leanback/widget/
SingleRow.java 166 public final CircularIntArray[] getItemPositionsInRows(int startPos, int endPos) {
170 mTmpItemPositionsInRows[0].addLast(endPos);
  /external/icu/icu4c/source/common/
rbbi_cache.h 47 * @param endPos The end position of a range of text
52 void populateDictionary(int32_t startPos, int32_t endPos,
dictbe.h 90 * @param endPos The end of the run within the supplied text.
97 int32_t endPos,
brkeng.cpp 85 int32_t endPos,
90 while((int32_t)utext_getNativeIndex(text) < endPos && fHandled[breakType]->contains(c)) {
rbbi_cache.cpp 127 void RuleBasedBreakIterator::DictionaryCache::populateDictionary(int32_t startPos, int32_t endPos,
129 if ((endPos - startPos) <= 1) {
138 int32_t rangeEnd = endPos;
193 if (endPos > fBreaks->peeki()) {
194 fBreaks->push(endPos, status);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
TreeSetTest.java 275 final int endPos = 3 * objArray.length / 4;
276 SortedSet aSubSet = ts.subSet(objArray[startPos], objArray[endPos]);
278 aSubSet.size() == (endPos - startPos));
279 for (int counter = startPos; counter < endPos; counter++)
  /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);
ExprEditor.java 126 CodeIterator iterator, int endPos)
130 while (iterator.hasNext() && iterator.lookAhead() < endPos) {
136 endPos += size2 - size;
  /frameworks/base/services/core/jni/
com_android_server_am_BatteryStatsService.cpp 133 char* endPos;
136 int irq = (int)strtol(pos, &endPos, 10);
137 if (pos != endPos) {
151 endPos = pos + abortPrefixLen;
153 pos = endPos;
166 char* endpos = pos; local
167 while (*endpos != 0) {
168 if (*endpos == '\n') {
169 *endpos = 0;
172 endpos++
    [all...]
  /external/lzma/C/
XzEnc.c 219 size_t endPos;
233 if (!p->srcWasFinished && p->curPos == p->endPos)
236 p->endPos = FILTER_BUF_SIZE;
237 RINOK(p->realStream->Read(p->realStream, p->buf, &p->endPos));
238 if (p->endPos == 0)
242 SizeT srcLen = p->endPos - p->curPos;
280 p->curPos = p->endPos = 0;
  /packages/apps/TV/tuner/src/com/android/tv/tuner/source/
TunerTsStreamer.java 408 int endPos = (int) ((pos + amount) % CIRCULAR_BUFFER_SIZE);
409 int firstLength = (startPos > endPos ? CIRCULAR_BUFFER_SIZE : endPos) - startPos;
  /external/javassist/src/main/javassist/bytecode/
CodeIterator.java 37 protected int endPos;
52 endPos = getCodeLength();
170 public boolean hasNext() { return currentPos < endPos; }
632 endPos = getCodeLength();
699 endPos = getCodeLength();
854 int endPos, byte[] newcode, boolean exclusive)
860 for (; i < endPos; i = nextPos) {
    [all...]
  /external/pdfium/core/fpdftext/
cpdf_textpagefind.cpp 323 size_t endPos) {
324 if (startPos > endPos)
328 size_t char_count = endPos - startPos + 1;
355 if (std::iswdigit(char_right) && std::iswdigit(csPageText[endPos]))
  /build/blueprint/parser/
printer.go 139 func (p *printer) printList(list []Expression, pos, endPos scanner.Position) {
142 if len(list) > 1 || pos.Line != endPos.Line {
150 p.unindent(endPos)
156 p.printToken("]", endPos)
ast.go 223 func (x *Variable) End() scanner.Position { return endPos(x.NamePos, len(x.Name)) }
247 func (x *Map) End() scanner.Position { return endPos(x.RBracePos, 1) }
305 func (x *List) End() scanner.Position { return endPos(x.RBracePos, 1) }
337 func (x *String) End() scanner.Position { return endPos(x.LiteralPos, len(x.Value)+2) }
363 func (x *Int64) End() scanner.Position { return endPos(x.LiteralPos, len(x.Token)) }
389 func (x *Bool) End() scanner.Position { return endPos(x.LiteralPos, len(x.Token)) }
479 func endPos(pos scanner.Position, n int) scanner.Position {
  /frameworks/support/recyclerview-selection/src/main/java/androidx/recyclerview/selection/
GestureSelectionHelper.java 203 * @param endPos The adapter position of the end item.
205 private void extendSelection(int endPos) {
206 mSelectionMgr.extendProvisionalRange(endPos);
  /packages/apps/DocumentsUI/src/com/android/documentsui/selection/
GestureSelectionHelper.java 214 * @param endPos The adapter position of the end item.
216 private void doGestureMultiSelect(int endPos) {
217 mSelectionMgr.extendProvisionalRange(endPos);
  /external/mesa3d/src/mesa/program/
programopt.c 559 GLint endPos, var;
562 endPos = -1;
566 endPos = i;
572 assert(endPos >= 0);
575 inst = prog->arb.Instructions + endPos;

Completed in 435 milliseconds

12 3 4 5 6 7 8 91011