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

12 3 4 5 6 7 8 9

  /external/javassist/src/main/javassist/expr/
ExprEditor.java 126 CodeIterator iterator, int endPos)
130 while (iterator.hasNext() && iterator.lookAhead() < endPos) {
136 endPos += size2 - size;
  /external/chromium_org/third_party/WebKit/Source/core/page/
TouchAdjustment.cpp 191 int startPos, endPos;
195 endPos = textRenderer->textLength();
198 textRenderer->selectionStartEnd(startPos, endPos);
199 endPos = textRenderer->textLength();
202 textRenderer->selectionStartEnd(startPos, endPos);
206 textRenderer->selectionStartEnd(startPos, endPos);
213 textRenderer->absoluteQuadsForRange(quads, startPos, endPos);
  /external/lzma/CPP/7zip/Archive/
LzmaHandler.cpp 295 UInt64 endPos;
296 RINOK(inStream->Seek(0, STREAM_SEEK_END, &endPos));
297 _packSize = endPos - _startPosition;
  /external/chromium_org/third_party/icu/source/common/
dictbe.h 86 * @param endPos The end of the run within the supplied text.
95 int32_t endPos,
brkeng.cpp 80 int32_t endPos,
92 while((int32_t)utext_getNativeIndex(text) < endPos && fHandled[breakType]->contains(c)) {
  /external/chromium_org/third_party/icu/source/common/unicode/
rbbi.h 736 * breaking. Covering at least the range from startPos to endPos,
740 * the range startPos to endPos.
741 * If going forward, endPos is the normal Unicode break result, and
744 * @param endPos The end position of a range of text
748 int32_t checkDictionary(int32_t startPos, int32_t endPos, UBool reverse);
  /external/icu/icu4c/source/common/
dictbe.h 86 * @param endPos The end of the run within the supplied text.
95 int32_t endPos,
brkeng.cpp 80 int32_t endPos,
92 while((int32_t)utext_getNativeIndex(text) < endPos && fHandled[breakType]->contains(c)) {
  /external/icu/icu4c/source/common/unicode/
rbbi.h 736 * breaking. Covering at least the range from startPos to endPos,
740 * the range startPos to endPos.
741 * If going forward, endPos is the normal Unicode break result, and
744 * @param endPos The end position of a range of text
748 int32_t checkDictionary(int32_t startPos, int32_t endPos, UBool reverse);
  /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...]
CodeAttribute.java 352 private static LdcEntry copyCode(byte[] code, int beginPos, int endPos,
360 for (int i = beginPos; i < endPos; i = i2) {
  /frameworks/base/core/java/android/text/
StaticLayout.java 386 int endPos;
391 endPos = ok;
398 endPos = fit;
406 endPos = here + 1;
409 while (endPos < spanEnd && widths[endPos - paraStart] == 0) {
410 endPos++;
419 int ellipseEnd = endPos;
430 here = endPos;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderText.cpp 389 static IntRect ellipsisRectForBox(InlineTextBox* box, unsigned startPos, unsigned endPos)
401 int ellipsisEndPosition = std::min<int>(endPos - box->start(), box->len());
    [all...]
RenderView.cpp 528 void RenderView::setSelection(RenderObject* start, int startPos, RenderObject* end, int endPos, SelectionPaintInvalidationMode blockPaintInvalidationMode)
542 m_selectionEnd == end && m_selectionEndPos == endPos)
594 m_selectionEndPos = endPos;
607 stop = rendererAfterPosition(end, endPos);
706 void RenderView::selectionStartEnd(int& startPos, int& endPos) const
709 endPos = m_selectionEndPos;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
programopt.c 565 GLint endPos, var;
568 endPos = -1;
572 endPos = i;
578 assert(endPos >= 0);
581 inst = prog->Instructions + endPos;
  /external/mesa3d/src/mesa/program/
programopt.c 565 GLint endPos, var;
568 endPos = -1;
572 endPos = i;
578 assert(endPos >= 0);
581 inst = prog->Instructions + endPos;
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
WTFString.cpp 697 size_t endPos;
698 while ((endPos = find(separator, startPos)) != kNotFound) {
699 if (allowEmptyEntries || startPos != endPos)
700 result.append(substring(startPos, endPos - startPos));
701 startPos = endPos + separator.length();
712 size_t endPos;
713 while ((endPos = find(separator, startPos)) != kNotFound) {
714 if (allowEmptyEntries || startPos != endPos)
715 result.append(substring(startPos, endPos - startPos));
716 startPos = endPos + 1
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 622 const PathDiagnosticLocation &endPos,
625 LPairs.push_back(PathDiagnosticLocationPair(startPos, endPos));
629 const PathDiagnosticLocation &endPos)
631 LPairs.push_back(PathDiagnosticLocationPair(startPos, endPos));
  /external/deqp/framework/opengl/
gluES3PlusWrapperContext.cpp 284 const size_t endPos = line.find(';');
286 if (precEndPos != std::string::npos && endPos != std::string::npos && endPos > precEndPos+1)
290 const std::string type = line.substr(typePos, endPos-typePos);
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathFunctions.cpp 347 size_t endPos = startPos;
348 while (endPos < length && !isWhitespace(idList[endPos]))
349 ++endPos;
353 Node* node = contextScope.getElementById(AtomicString(idList.substring(startPos, endPos - startPos)));
357 startPos = endPos;
  /external/fonttools/Lib/fontTools/
cffLib.py 142 endPos = pos + item.getDataLength()
144 endPos = pos + len(item)
146 item.setPos(pos, endPos)
147 pos = endPos
278 def setPos(self, pos, endPos):
291 def setPos(self, pos, endPos):
296 def setPos(self, pos, endPos):
837 def setPos(self, pos, endPos):
945 def setPos(self, pos, endPos):
1196 def setPos(self, pos, endPos)
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
Utils.java     [all...]
  /frameworks/base/core/java/android/os/
BaseBundle.java     [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
ResizableIntArrayTests.java 278 final int endPos = startPos + length;
299 if (i >= startPos && i < endPos) {
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
HeapSnapshotGridNodes.js 673 var endPos = hasObjectId ? fullName.indexOf("@") : fullName.length;
674 if (startPos !== -1 && endPos !== -1) {
675 var fullURL = fullName.substring(startPos + 1, endPos).trimLeft();
679 return fullName.substr(0, startPos + 2) + url + fullName.substr(endPos);
    [all...]

Completed in 614 milliseconds

12 3 4 5 6 7 8 9