Searched defs:endPos (Results 1 - 25 of 37) sorted by relevance

12

/external/srec/portable/include/
H A Dpstream.h43 const unsigned char *endPos; member in struct:PORT_FILE_HANDLE
/external/javassist/src/main/javassist/expr/
H A DExprEditor.java126 CodeIterator iterator, int endPos)
130 while (iterator.hasNext() && iterator.lookAhead() < endPos) {
136 endPos += size2 - size;
125 doit(CtClass clazz, MethodInfo minfo, LoopContext context, CodeIterator iterator, int endPos) argument
/external/lzma/CPP/7zip/Common/
H A DFilterCoder.cpp55 UInt32 endPos = bufferPos + (UInt32)processedSize; local
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)
110 UInt32 endPos = _bufferPos + sizeTemp; local
137 UInt32 endPos = Filter->Filter(_buffer, _bufferPos); local
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Dbrkeng.cpp77 int32_t endPos,
89 while((int32_t)utext_getNativeIndex(text) < endPos && fHandled[breakType]->contains(c)) {
75 findBreaks( UText *text, int32_t startPos, int32_t endPos, UBool reverse, int32_t breakType, UStack & ) const argument
H A Ddictbe.cpp49 int32_t endPos,
71 while((current = (int32_t)utext_getNativeIndex(text)) < endPos && fSet.contains(c)) {
47 findBreaks( UText *text, int32_t startPos, int32_t endPos, UBool reverse, int32_t breakType, UStack &foundBreaks ) const argument
H A Drbbi.cpp1544 int32_t endPos,
1550 // startPos-endPos range
1552 if ((endPos - startPos) <= 1) {
1553 return (reverse ? startPos : endPos);
1577 return (reverse ? startPos : endPos);
1583 utext_setNativeIndex(fText, reverse ? endPos : startPos);
1589 int32_t rangeEnd = endPos;
1685 if (endPos > breaks.peeki()) {
1698 if (endPos > fCachedBreakPositions[out-1]) {
1699 fCachedBreakPositions[out] = endPos;
1543 checkDictionary(int32_t startPos, int32_t endPos, UBool reverse) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dprogramopt.c565 GLint endPos, var; local
568 endPos = -1;
572 endPos = i;
578 assert(endPos >= 0);
581 inst = prog->Instructions + endPos;
/external/icu4c/common/
H A Dbrkeng.cpp80 int32_t endPos,
92 while((int32_t)utext_getNativeIndex(text) < endPos && fHandled[breakType]->contains(c)) {
78 findBreaks( UText *text, int32_t startPos, int32_t endPos, UBool reverse, int32_t breakType, UStack & ) const argument
H A Ddictbe.cpp45 int32_t endPos,
67 while((current = (int32_t)utext_getNativeIndex(text)) < endPos && fSet.contains(c)) {
43 findBreaks( UText *text, int32_t startPos, int32_t endPos, UBool reverse, int32_t breakType, UStack &foundBreaks ) const argument
H A Drbbi.cpp1615 int32_t endPos,
1621 // startPos-endPos range
1623 if ((endPos - startPos) <= 1) {
1624 return (reverse ? startPos : endPos);
1648 return (reverse ? startPos : endPos);
1654 utext_setNativeIndex(fText, reverse ? endPos : startPos);
1660 int32_t rangeEnd = endPos;
1756 if (endPos > breaks.peeki()) {
1769 if (endPos > fCachedBreakPositions[out-1]) {
1770 fCachedBreakPositions[out] = endPos;
1614 checkDictionary(int32_t startPos, int32_t endPos, UBool reverse) argument
[all...]
/external/lzma/CPP/7zip/Compress/
H A DBcj2Coder.cpp124 UInt32 endPos = bufferPos + processedSize; local
126 if (endPos < 5)
129 for (bufferPos = 0; bufferPos < endPos; bufferPos++)
153 UInt32 limit = endPos - 5;
247 while(bufferPos < endPos)
/external/mesa3d/src/mesa/program/
H A Dprogramopt.c565 GLint endPos, var; local
568 endPos = -1;
572 endPos = i;
578 assert(endPos >= 0);
581 inst = prog->Instructions + endPos;
/external/javassist/src/main/javassist/bytecode/
H A DCodeAttribute.java352 private static LdcEntry copyCode(byte[] code, int beginPos, int endPos, argument
360 for (int i = beginPos; i < endPos; i = i2) {
H A DCodeIterator.java37 protected int endPos; field in class:CodeIterator
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) {
1154 private static ArrayList makeJumpList(byte[] code, int endPos) argument
1159 for (int i = 0; i < endPos; i = nextPos) {
853 insertGap2(byte[] code, int where, int gapLength, int endPos, byte[] newcode, boolean exclusive) argument
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DTouchAdjustment.cpp176 int startPos, endPos; local
180 endPos = textRenderer->textLength();
183 textRenderer->selectionStartEnd(startPos, endPos);
184 endPos = textRenderer->textLength();
187 textRenderer->selectionStartEnd(startPos, endPos);
191 textRenderer->selectionStartEnd(startPos, endPos);
198 textRenderer->absoluteQuadsForRange(quads, startPos, endPos);
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathFunctions.cpp346 size_t endPos = startPos; local
347 while (endPos < length && !isWhitespace(idList[endPos]))
348 ++endPos;
352 Node* node = contextScope.getElementById(idList.substring(startPos, endPos - startPos));
356 startPos = endPos;
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DWTFString.cpp697 size_t endPos; local
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; local
713 while ((endPos = find(separator, startPos)) != kNotFound) {
714 if (allowEmptyEntries || startPos != endPos)
715 result.append(substring(startPos, endPos - startPos));
716 startPos = endPos
[all...]
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcnumtst.c946 int32_t endPos; member in struct:__anon11829
989 if ( value != testPtr->value || position != testPtr->endPos || status != testPtr->status ) {
990 log_err("unum_parse SPELLOUT, locale %s, testname %s, startPos %d: for value / endPos / status, expected %d / %d / %s, got %d / %d / %s\n",
992 testPtr->value, testPtr->endPos, myErrorName(testPtr->status),
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dustrtest.cpp731 int32_t endPos = 28; local
734 (startPos = test1.indexOf(test2, startPos, endPos - startPos)) != -1 ? (++occurrences, startPos += 4) : 0)
769 for ( occurrences = 0, startPos = 5, endPos = 28;
771 (startPos = test1.indexOf(testChar, startPos, endPos - startPos)) != -1 ? (++occurrences, startPos += 1) : 0)
795 endPos=test3.length();
798 (startPos = test3.indexOf(testChar32, startPos, endPos - startPos)) != -1 ? (++occurrences, startPos += 1) : 0)
836 for ( occurrences = 0, endPos = test3.length(); endPos > 0; endPos -= 1){
838 subString.append(test3, 0, endPos);
[all...]
/external/icu4c/test/intltest/
H A Dustrtest.cpp734 int32_t endPos = 28; local
737 (startPos = test1.indexOf(test2, startPos, endPos - startPos)) != -1 ? (++occurrences, startPos += 4) : 0)
775 for ( occurrences = 0, startPos = 5, endPos = 28;
777 (startPos = test1.indexOf(testChar, startPos, endPos - startPos)) != -1 ? (++occurrences, startPos += 1) : 0)
802 endPos=test3.length();
805 (startPos = test3.indexOf(testChar32, startPos, endPos - startPos)) != -1 ? (++occurrences, startPos += 1) : 0)
845 for ( occurrences = 0, endPos = test3.length(); endPos > 0; endPos -= 1){
847 subString.append(test3, 0, endPos);
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DFrameSelection.cpp1582 Position endPos = selection.end(); local
1583 candidate = endPos.upstream();
1585 endPos = candidate;
1589 if (startPos.isNotNull() && endPos.isNotNull() && selection.visibleStart() != selection.visibleEnd()) {
1591 RenderObject* endRenderer = endPos.deprecatedNode()->renderer();
1592 view->setSelection(startRenderer, startPos.deprecatedEditingOffset(), endRenderer, endPos.deprecatedEditingOffset());
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DInlineTextBox.cpp140 bool InlineTextBox::isSelected(int startPos, int endPos) const
145 int ePos = min(endPos - m_start, int(m_len) + (isLineBreak() ? 0 : 1));
153 int startPos, endPos; local
154 renderer()->selectionStartEnd(startPos, endPos);
162 bool end = (state != RenderObject::SelectionStart && endPos > m_start && endPos <= lastSelectable);
170 (state == RenderObject::SelectionStart || endPos > lastSelectable))
195 LayoutRect InlineTextBox::localSelectionRect(int startPos, int endPos) argument
198 int ePos = min(endPos - m_start, (int)m_len);
215 endPos
791 int startPos, endPos; local
866 paintCompositionBackground(GraphicsContext* context, const FloatPoint& boxOrigin, RenderStyle* style, const Font& font, int startPos, int endPos) argument
[all...]
H A DRenderView.cpp768 void RenderView::setSelection(RenderObject* start, int startPos, RenderObject* end, int endPos, SelectionRepaintMode blockRepaintMode) argument
782 m_selectionEnd == end && m_selectionEndPos == endPos)
834 m_selectionEndPos = endPos;
847 stop = rendererAfterPosition(end, endPos);
940 void RenderView::selectionStartEnd(int& startPos, int& endPos) const
943 endPos = m_selectionEndPos;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DHeapSnapshotGridNodes.js541 var endPos = hasObjectId ? fullName.indexOf("@") : fullName.length; variable
542 if (startPos !== -1 && endPos !== -1) {
543 var fullURL = fullName.substring(startPos + 1, endPos).trimLeft();
547 return fullName.substr(0, startPos + 2) + url + fullName.substr(endPos);
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DPathDiagnostic.h618 const PathDiagnosticLocation &endPos,
621 LPairs.push_back(PathDiagnosticLocationPair(startPos, endPos));
625 const PathDiagnosticLocation &endPos)
627 LPairs.push_back(PathDiagnosticLocationPair(startPos, endPos));
617 PathDiagnosticControlFlowPiece(const PathDiagnosticLocation &startPos, const PathDiagnosticLocation &endPos, StringRef s) argument
624 PathDiagnosticControlFlowPiece(const PathDiagnosticLocation &startPos, const PathDiagnosticLocation &endPos) argument

Completed in 684 milliseconds

12