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

1 2 3 4

  /frameworks/wilhelm/src/itf/
ISeek.c 52 SLmillisecond startPos, SLmillisecond endPos)
56 if (!(startPos < endPos)) {
62 if ((startPos != 0) && (endPos != SL_TIME_UNKNOWN)) {
98 thiz->mEndPos = endPos;
120 SLmillisecond endPos = thiz->mEndPos;
124 *pEndPos = endPos;
  /external/icu4c/common/
brkeng.h 67 * @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,
dictbe.h 86 * @param endPos The end of the run within the supplied text.
95 int32_t endPos,
rbbi.cpp     [all...]
  /external/webkit/Source/WebKit2/UIProcess/Plugins/win/
PluginInfoStoreWin.cpp 43 unsigned endPos;
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/
pstream.c 306 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/
FileSystemBrew.cpp 126 int endPos = canonPath.length();
127 if (lastDivPos == endPos - 1)
139 int endPos = path.length();
141 endPos -= 1;
150 String folder(path.substring(0, endPos));
  /external/webkit/Source/WebCore/rendering/
InlineTextBox.h 100 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);
InlineTextBox.cpp 112 bool InlineTextBox::isSelected(int startPos, int endPos) const
115 int ePos = min(endPos - m_start, (int)m_len);
123 int startPos, endPos;
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)
177 int ePos = min(endPos - m_start, (int)m_len);
    [all...]
RenderText.cpp 358 static IntRect ellipsisRectForBox(InlineTextBox* box, unsigned startPos, unsigned endPos)
370 int ellipsisEndPosition = min<int>(endPos - box->start(), box->len());
    [all...]
  /external/webkit/Source/WebCore/plugins/win/
PluginDatabaseWin.cpp 174 unsigned endPos;
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;
  /frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/
SmsMessageBodyTest.java 274 int endPos = (asciiCharsLen - startPos > addCount) ?
276 sb.append(sAsciiChars, startPos, endPos);
277 startPos = (endPos == asciiCharsLen) ? 0 : endPos;
308 int endPos = (unicodeCharsLen - startPos > addCount) ?
310 sb.append(sUnicodeChars, startPos, endPos);
311 startPos = (endPos == unicodeCharsLen) ? 0 : endPos;
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
TreeSetTest.java 269 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/
FileSystemWinCE.cpp 150 unsigned endPos = path.length();
151 if (lastDivPos == endPos - 1) {
152 --endPos;
161 String folder(path.substring(0, endPos));
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
FsUtils.java 199 int endPos = path.lastIndexOf('/');
200 path = path.substring(0, endPos);
201 endPos = path.lastIndexOf('/');
202 return path.substring(endPos + 1);
  /libcore/luni/src/test/java/libcore/java/util/
OldTreeSetTest.java 183 final int endPos = 3 * objArray.length / 4;
184 SortedSet aSubSet = ts.subSet(objArray[startPos], objArray[endPos]);
186 aSubSet.size() == (endPos - startPos));
187 for (int counter = startPos; counter < endPos; counter++)
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
MoreSuggestions.java 95 private boolean fitInWidth(int startPos, int endPos, int width) {
96 for (int pos = startPos; pos < endPos; pos++) {
103 private int calcurateMaxRowWidth(int startPos, int endPos) {
109 while (pos < endPos && mRowNumbers[pos] == row) {
  /external/v8/tools/
csvparser.js 59 var endPos = line.length;
61 if (endPos > 0) {
75 } while (pos <= endPos);
  /external/srec/portable/include/
pstream.h 43 const unsigned char *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);
ExprEditor.java 126 CodeIterator iterator, int endPos)
130 while (iterator.hasNext() && iterator.lookAhead() < endPos) {
136 endPos += size2 - size;
  /external/webkit/Source/JavaScriptCore/wtf/text/
WTFString.cpp 607 size_t endPos;
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;
628 while ((endPos = find(separator, startPos)) != notFound) {
629 if (allowEmptyEntries || startPos != endPos)
630 result.append(substring(startPos, endPos - startPos));
631 startPos = endPos + 1
    [all...]
  /external/webkit/Source/WebCore/xml/
XPathFunctions.cpp 348 size_t endPos = startPos;
349 while (endPos < length && !isWhitespace(idList[endPos]))
350 ++endPos;
354 Node* node = contextDocument->getElementById(String(&idList[startPos], endPos - startPos));
358 startPos = endPos;
  /external/icu4c/common/unicode/
rbbi.h 707 * 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);
  /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...]

Completed in 1199 milliseconds

1 2 3 4