Searched refs:endPos (Results 1 - 25 of 40) sorted by relevance

12

/external/icu4c/common/
H A Dbrkeng.h67 * @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,
H A Ddictbe.h86 * @param endPos The end of the run within the supplied text.
95 int32_t endPos,
H A Drbbi.cpp1574 int32_t endPos,
1580 if (dictionaryCount <= 1 || (endPos - startPos) <= 1) {
1581 return (reverse ? startPos : endPos);
1605 return (reverse ? startPos : endPos);
1611 utext_setNativeIndex(fText, reverse ? endPos : startPos);
1617 int32_t rangeEnd = endPos;
1713 if (endPos > breaks.peeki()) {
1726 if (endPos > fCachedBreakPositions[out-1]) {
1727 fCachedBreakPositions[out] = endPos;
1733 return preceding(endPos
1573 checkDictionary(int32_t startPos, int32_t endPos, UBool reverse) argument
[all...]
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.cpp46 int32_t endPos,
68 while((current = (int32_t)utext_getNativeIndex(text)) < endPos && fSet.contains(c)) {
44 findBreaks( UText *text, int32_t startPos, int32_t endPos, UBool reverse, int32_t breakType, UStack &foundBreaks ) const argument
/external/webkit/Source/WebKit2/UIProcess/Plugins/win/
H A DPluginInfoStoreWin.cpp43 unsigned endPos; local
46 for (endPos = startPos; endPos < versionString.length(); ++endPos)
47 if (versionString[endPos] == '.' || versionString[endPos] == '_')
50 int versionComponent = versionString.substring(startPos, endPos - startPos).toInt();
53 startPos = endPos + 1;
/external/srec/portable/src/
H A Dpstream.c306 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...]
/external/webkit/Source/WebCore/platform/brew/
H A DFileSystemBrew.cpp126 int endPos = canonPath.length(); local
127 if (lastDivPos == endPos - 1)
139 int endPos = path.length(); local
141 endPos -= 1;
150 String folder(path.substring(0, endPos));
/external/webkit/Source/WebCore/plugins/win/
H A DPluginDatabaseWin.cpp174 unsigned endPos; local
177 for (endPos = startPos; endPos < versionString.length(); ++endPos)
178 if (versionString[endPos] == '.' || versionString[endPos] == '_')
181 int versionComponent = versionString.substring(startPos, endPos - startPos).toInt();
184 startPos = endPos + 1;
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DTreeSetTest.java269 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++)
/external/webkit/Source/WebCore/platform/wince/
H A DFileSystemWinCE.cpp150 unsigned endPos = path.length(); local
151 if (lastDivPos == endPos - 1) {
152 --endPos;
161 String folder(path.substring(0, endPos));
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPUtilsImpl.java192 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)
/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 DExpr.java318 int endPos = oldIterator.lookAhead();
320 if (ed.doit(thisClass, thisMethod, context, oldIterator, endPos))
323 oldIterator.move(endPos + oldIterator.getCodeLength() - size);
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/webkit/Source/WebCore/rendering/
H A DInlineTextBox.h100 virtual IntRect selectionRect(int absx, int absy, int startPos, int endPos);
101 bool isSelected(int startPos, int endPos) const;
160 void paintCompositionBackground(GraphicsContext*, const FloatPoint& boxOrigin, RenderStyle*, const Font&, int startPos, int endPos);
H A DInlineTextBox.cpp112 bool InlineTextBox::isSelected(int startPos, int endPos) const
115 int ePos = min(endPos - m_start, (int)m_len);
123 int startPos, endPos; local
124 renderer()->selectionStartEnd(startPos, endPos);
129 bool end = (state != RenderObject::SelectionStart && endPos > m_start && endPos <= lastSelectable);
137 (state == RenderObject::SelectionStart || endPos > lastSelectable))
174 IntRect InlineTextBox::selectionRect(int tx, int ty, int startPos, int endPos) argument
177 int ePos = min(endPos - m_start, (int)m_len);
776 int startPos, endPos; local
834 paintCompositionBackground(GraphicsContext* context, const FloatPoint& boxOrigin, RenderStyle* style, const Font& font, int startPos, int endPos) argument
[all...]
H A DRenderText.cpp358 static IntRect ellipsisRectForBox(InlineTextBox* box, unsigned startPos, unsigned endPos) argument
370 int ellipsisEndPosition = min<int>(endPos - box->start(), box->len());
1008 int startPos, endPos; local
1009 selectionStartEnd(startPos, endPos);
1011 endPos = textLength();
1014 if (startPos != 0 && startPos == endPos)
1015 startPos = endPos - 1;
1020 if (box->isSelected(startPos, endPos)) {
1409 // Now calculate startPos and endPos for painting selection.
1410 // We include a selection while endPos >
1411 int startPos, endPos; local
[all...]
H A DRenderView.h76 void setSelection(RenderObject* start, int startPos, RenderObject* end, int endPos, SelectionRepaintMode = RepaintNewXOROld);
81 void selectionStartEnd(int& startPos, int& endPos) const;
H A DRenderView.cpp408 void RenderView::setSelection(RenderObject* start, int startPos, RenderObject* end, int endPos, SelectionRepaintMode blockRepaintMode) argument
417 m_selectionEnd == end && m_selectionEndPos == endPos)
467 m_selectionEndPos = endPos;
480 stop = rendererAfterPosition(end, endPos);
581 void RenderView::selectionStartEnd(int& startPos, int& endPos) const
584 endPos = m_selectionEndPos;
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DWTFString.cpp607 size_t endPos; local
608 while ((endPos = find(separator, startPos)) != notFound) {
609 if (allowEmptyEntries || startPos != endPos)
610 result.append(substring(startPos, endPos - startPos));
611 startPos = endPos + separator.length();
627 size_t endPos; local
628 while ((endPos = find(separator, startPos)) != notFound) {
629 if (allowEmptyEntries || startPos != endPos)
630 result.append(substring(startPos, endPos - startPos));
631 startPos = endPos
[all...]
/external/webkit/Source/WebCore/xml/
H A DXPathFunctions.cpp348 size_t endPos = startPos; local
349 while (endPos < length && !isWhitespace(idList[endPos]))
350 ++endPos;
354 Node* node = contextDocument->getElementById(String(&idList[startPos], endPos - startPos));
358 startPos = endPos;
/external/javassist/src/main/javassist/bytecode/
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/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DPathDiagnostic.h573 const PathDiagnosticLocation &endPos,
576 LPairs.push_back(PathDiagnosticLocationPair(startPos, endPos));
580 const PathDiagnosticLocation &endPos)
582 LPairs.push_back(PathDiagnosticLocationPair(startPos, endPos));
572 PathDiagnosticControlFlowPiece(const PathDiagnosticLocation &startPos, const PathDiagnosticLocation &endPos, StringRef s) argument
579 PathDiagnosticControlFlowPiece(const PathDiagnosticLocation &startPos, const PathDiagnosticLocation &endPos) argument
/external/icu4c/common/unicode/
H A Drbbi.h707 * breaking. Covering at least the range from startPos to endPos,
711 * the range startPos to endPos.
712 * If going forward, endPos is the normal Unicode break result, and
715 * @param endPos The end position of a range of text
719 int32_t checkDictionary(int32_t startPos, int32_t endPos, UBool reverse);

Completed in 3072 milliseconds

12