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

1 2

  /external/fonttools/MetaTools/
buildTableList.py 51 endPos = doc.find(end)
53 doc = doc[:beginPos] + ", ".join(tables[:-1]) + " and " + tables[-1] + "\n" + doc[endPos:]
  /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...]
  /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/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);
  /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/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/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/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/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/chromium_org/third_party/icu/source/test/intltest/
ustrtest.cpp 734 int32_t endPos = 28;
737 (startPos = test1.indexOf(test2, startPos, endPos - startPos)) != -1 ? (++occurrences, startPos += 4) : 0)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/media_file/source/
avi_file.cc 1175 const long endPos = ftell(_aviFile);
1176 if (endPos < 0) {
1184 const long len = endPos - startPos;
1185 if (endPos > startPos) {
    [all...]
  /external/icu/icu4c/source/test/intltest/
ustrtest.cpp 734 int32_t endPos = 28;
737 (startPos = test1.indexOf(test2, startPos, endPos - startPos)) != -1 ? (++occurrences, startPos += 4) : 0)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
FrameSelection.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
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...]
RenderText.cpp 389 static IntRect ellipsisRectForBox(InlineTextBox* box, unsigned startPos, unsigned endPos)
401 int ellipsisEndPosition = std::min<int>(endPos - box->start(), box->len());
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
cnumtst.c     [all...]
  /external/deqp/framework/referencerenderer/
rrRenderer.cpp 107 const tcu::IVec2 endPos = tcu::IVec2(de::min(a.x() + a.z(), b.x() + b.z()), de::min(a.y() + a.w(), b.y() + b.w()));
109 return tcu::IVec4(pos.x(), pos.y(), endPos.x() - pos.x(), endPos.y() - pos.y());
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cnumtst.c     [all...]
  /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/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...]
  /external/owasp/sanitizer/lib/htmlparser-1.3/
htmlparser-1.3.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
commons-lang-2.6.jar 
  /development/samples/training/basic/ActivityLifecycle/libs/
android-support-v13.jar 
  /development/samples/training/multiscreen/newsreader/libs/
android-support-v4.jar 

Completed in 774 milliseconds

1 2