HomeSort by relevance Sort by last modified time
    Searched defs:startPos (Results 26 - 50 of 115) sorted by null

12 3 4 5

  /external/aac/libMpegTPDec/src/
tpdec_lib.cpp 527 int startPos;
529 startPos = FDKgetValidBits(hBs);
572 syncLayerFrameBits = (hTp->parser.adts.bs.frame_length<<3) - (startPos - FDKgetValidBits(hBs)) - syncLength;
609 syncLayerFrameBits -= startPos - FDKgetValidBits(hBs) - (13);
637 *pHeaderBits += startPos - (INT)FDKgetValidBits(hBs);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
URI.java 412 int startPos = index;
431 if (index > startPos)
433 initializeAuthority(uriSpec.substring(startPos, index));
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
URI.java 432 int startPos = index;
451 if (index > startPos)
453 initializeAuthority(uriSpec.substring(startPos, index));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathFunctions.cpp 337 unsigned startPos = 0;
340 while (startPos < length && isWhitespace(idList[startPos]))
341 ++startPos;
343 if (startPos == length)
346 size_t endPos = startPos;
352 Node* node = contextScope->getElementById(idList.substring(startPos, endPos - startPos));
356 startPos = endPos;
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
WTFString.cpp 682 unsigned startPos = 0;
684 while ((endPos = find(separator, startPos)) != notFound) {
685 if (allowEmptyEntries || startPos != endPos)
686 result.append(substring(startPos, endPos - startPos));
687 startPos = endPos + separator.length();
689 if (allowEmptyEntries || startPos != length())
690 result.append(substring(startPos));
697 unsigned startPos = 0;
699 while ((endPos = find(separator, startPos)) != notFound)
    [all...]
  /external/chromium_org/third_party/icu/source/common/
rbbi.cpp 534 int32_t startPos = current();
537 result = checkDictionary(startPos, result, FALSE);
548 int32_t startPos;
570 if (fText == NULL || (startPos = current()) == 0) {
579 result = checkDictionary(result, startPos, TRUE);
    [all...]
  /external/icu4c/common/
rbbi.cpp 595 int32_t startPos = current();
598 result = checkDictionary(startPos, result, FALSE);
609 int32_t startPos;
631 if (fText == NULL || (startPos = current()) == 0) {
640 result = checkDictionary(result, startPos, TRUE);
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
SmsMessageBodyTest.java 262 int startPos = 0;
271 int endPos = (asciiCharsLen - startPos > addCount) ?
272 (startPos + addCount) : asciiCharsLen;
273 sb.append(sAsciiChars, startPos, endPos);
274 startPos = (endPos == asciiCharsLen) ? 0 : endPos;
295 int startPos = 0;
305 int endPos = (unicodeCharsLen - startPos > addCount) ?
306 (startPos + addCount) : unicodeCharsLen;
307 sb.append(sUnicodeChars, startPos, endPos);
308 startPos = (endPos == unicodeCharsLen) ? 0 : endPos
    [all...]
  /packages/apps/Browser/src/com/android/browser/
TitleBar.java 174 float startPos = (-getEmbeddedHeight() + visibleHeight);
176 startPos = Math.max(startPos, getTranslationY());
180 startPos, 0);
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
HtmlParser.java 701 int startPos = pos;
733 X.assertTrue(pos > startPos);
751 X.assertTrue(pos > startPos);
836 * @param startPos Start of tag, including '<'
845 private void addStartTag(HTML.Element element, final int startPos,
849 X.assertTrue(startPos < startAttributesPos);
854 String beforeAttrs = html.substring(startPos, startAttributesPos);
867 X.assertTrue(html.charAt(startPos) == '<');
869 String tagName = html.substring(startPos + 1, startAttributesPos);
904 * @param startPos Start of tag, including '<'
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlParser.java 701 int startPos = pos;
733 X.assertTrue(pos > startPos);
751 X.assertTrue(pos > startPos);
836 * @param startPos Start of tag, including '<'
845 private void addStartTag(HTML.Element element, final int startPos,
849 X.assertTrue(startPos < startAttributesPos);
854 String beforeAttrs = html.substring(startPos, startAttributesPos);
867 X.assertTrue(html.charAt(startPos) == '<');
869 String tagName = html.substring(startPos + 1, startAttributesPos);
904 * @param startPos Start of tag, including '<'
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
rematch.cpp 601 int64_t startPos = fMatchEnd;
602 if (startPos==0) {
603 startPos = fActiveStart;
613 if (startPos >= fActiveLimit) {
618 UTEXT_SETNATIVEINDEX(fInputText, startPos);
620 startPos = UTEXT_GETNATIVEINDEX(fInputText);
640 if (startPos > testStartLimit) {
652 U_ASSERT(startPos >= 0);
659 MatchAt(startPos, FALSE, fDeferredStatus);
666 if (startPos >= testStartLimit)
    [all...]
dtptngen.cpp     [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
cnumtst.c     [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
ustrtest.cpp 716 int32_t startPos = 0;
718 startPos != -1 && startPos < test1.length();
719 (startPos = test1.indexOf(test2, startPos)) != -1 ? (++occurrences, startPos += 4) : 0)
724 for ( occurrences = 0, startPos = 10;
725 startPos != -1 && startPos < test1.length();
726 (startPos = test1.indexOf(test2, startPos)) != -1 ? (++occurrences, startPos += 4) : 0
    [all...]
  /external/chromium_org/third_party/lzma_sdk/
7zIn.c 181 UInt32 startPos = 0;
189 p->FolderStartPackStreamIndex[i] = startPos;
190 startPos += p->db.Folders[i].NumPackStreams;
    [all...]
  /external/icu4c/i18n/
rematch.cpp 607 int64_t startPos = fMatchEnd;
608 if (startPos==0) {
609 startPos = fActiveStart;
619 if (startPos >= fActiveLimit) {
624 UTEXT_SETNATIVEINDEX(fInputText, startPos);
626 startPos = UTEXT_GETNATIVEINDEX(fInputText);
646 if (startPos > testStartLimit) {
658 U_ASSERT(startPos >= 0);
665 MatchAt(startPos, FALSE, fDeferredStatus);
672 if (startPos >= testStartLimit)
    [all...]
  /external/icu4c/test/intltest/
ustrtest.cpp 718 int32_t startPos = 0;
720 startPos != -1 && startPos < test1.length();
721 (startPos = test1.indexOf(test2, startPos)) != -1 ? (++occurrences, startPos += 4) : 0)
726 for ( occurrences = 0, startPos = 10;
727 startPos != -1 && startPos < test1.length();
728 (startPos = test1.indexOf(test2, startPos)) != -1 ? (++occurrences, startPos += 4) : 0
    [all...]
  /external/lzma/C/
7zIn.c 181 UInt32 startPos = 0;
189 p->FolderStartPackStreamIndex[i] = startPos;
190 startPos += p->db.Folders[i].NumPackStreams;
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zIn.cpp 1003 case NID::kStartPos: ReadUInt64DefVector(dataVector, db.StartPos, (int)numFiles); break;
1072 CNum startPos = 0;
1075 FolderStartPackStreamIndex.Add(startPos);
1076 startPos += (CNum)Folders[i].PackStreams.Size();
1084 UInt64 startPos = 0;
1087 PackStreamStartPositions.Add(startPos);
1088 startPos += PackSizes[i];
    [all...]
  /frameworks/base/core/java/android/os/
Bundle.java     [all...]
  /frameworks/native/libs/binder/
Parcel.cpp 369 int startPos = mDataPos;
426 size_t off = objects[i] - offset + startPos;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
FrameSelection.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineTextBox.cpp 136 bool InlineTextBox::isSelected(int startPos, int endPos) const
138 int sPos = max(startPos - m_start, 0);
149 int startPos, endPos;
150 renderer()->selectionStartEnd(startPos, endPos);
157 bool start = (state != RenderObject::SelectionEnd && startPos >= m_start && startPos <= m_start + m_len + endOfLineAdjustmentForCSSLineBreak);
165 else if ((state == RenderObject::SelectionEnd || startPos < m_start) &&
191 LayoutRect InlineTextBox::localSelectionRect(int startPos, int endPos)
193 int sPos = max(startPos - m_start, 0);
    [all...]
RenderText.cpp 378 static IntRect ellipsisRectForBox(InlineTextBox* box, unsigned startPos, unsigned endPos)
389 int ellipsisStartPosition = max<int>(startPos - box->start(), 0);
    [all...]

Completed in 940 milliseconds

12 3 4 5