HomeSort by relevance Sort by last modified time
    Searched full:endpos (Results 1 - 25 of 300) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /build/soong/androidmk/parser/
parser.go 172 endPos := pos
184 expression, endPos = p.parseExpression()
190 endPos: endPos,
258 endPos := p.scanner.Position
265 endPos = p.scanner.Position
281 endPos = p.scanner.Position
291 return value, endPos
295 endPos = p.scanner.Position
302 variable, endPos = p.parseVariable(
    [all...]
makething.go 15 EndPos() scanner.Position
51 endPos scanner.Position
58 func (m makeThing) EndPos() scanner.Position {
59 return m.endPos
  /external/webrtc/webrtc/common_audio/signal_processing/
downsample_fast.c 26 size_t endpos = delay + factor * (data_out_length - 1) + 1; local
30 || data_in_length < endpos) {
34 for (i = delay; i < endpos; i += factor) {
downsample_fast_mips.c 26 size_t endpos = delay + factor * (data_out_length - 1) + 1; local
40 || data_in_length < endpos) {
47 "subu %[i], %[endpos], %[delay] \n\t"
100 [p_coefs_0] "r" (p_coefficients_0), [endpos] "r" (endpos),
109 "subu %[i], %[endpos], %[delay] \n\t"
160 [p_coefs_0] "r" (p_coefficients_0), [endpos] "r" (endpos),
  /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/icu/android_icu4j/src/main/java/android/icu/text/
LanguageBreakEngine.java 29 * @param endPos The index of the possible end of our range. It is possible,
38 int findBreaks(CharacterIterator text, int startPos, int endPos,
UnhandledBreakEngine.java 32 public int findBreaks(CharacterIterator text, int startPos, int endPos,
34 text.setIndex(endPos);
CjkBreakEngine.java 82 public int divideUpDictionaryRange(CharacterIterator inText, int startPos, int endPos,
84 if (startPos >= endPos) {
90 int inputLength = endPos - startPos;
94 while (inText.getIndex() < endPos) {
228 if (!foundBreaks.isEmpty() && foundBreaks.peek() == endPos) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
LanguageBreakEngine.java 28 * @param endPos The index of the possible end of our range. It is possible,
37 int findBreaks(CharacterIterator text, int startPos, int endPos,
UnhandledBreakEngine.java 31 public int findBreaks(CharacterIterator text, int startPos, int endPos,
33 text.setIndex(endPos);
CjkBreakEngine.java 81 public int divideUpDictionaryRange(CharacterIterator inText, int startPos, int endPos,
83 if (startPos >= endPos) {
89 int inputLength = endPos - startPos;
93 while (inText.getIndex() < endPos) {
227 if (!foundBreaks.isEmpty() && foundBreaks.peek() == endPos) {
  /external/fonttools/Lib/fontTools/ttLib/tables/
G_P_K_G_.py 26 endPos = (self.numGMAPs+1) * 4
27 GMAPoffsets.fromstring(newData[:endPos])
35 pos = endPos
36 endPos = pos + (self.numGlyplets + 1)*4
38 glyphletOffsets.fromstring(newData[pos:endPos])
  /packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
ResizableIntArray.java 133 final int endPos = startPos + length;
134 ensureCapacity(endPos);
135 Arrays.fill(mArray, startPos, endPos, value);
136 if (mLength < endPos) {
137 mLength = endPos;
  /external/chromium-trace/catapult/third_party/beautifulsoup4/bs4/builder/
_htmlparser.py 198 endpos = self.check_for_whole_start_tag(i)
199 if endpos < 0:
200 return endpos
202 self.__starttag_text = rawdata[i:endpos]
210 while k < endpos:
228 end = rawdata[k:endpos].strip()
239 % (rawdata[k:endpos][:20],))
240 self.handle_data(rawdata[i:endpos])
241 return endpos
249 return endpos
    [all...]
  /external/pdfium/core/include/fpdfdoc/
fpdf_vt.h 108 EndPos.Default();
113 EndPos = end;
123 EndPos = end;
127 FX_BOOL IsExist() const { return BeginPos != EndPos; }
130 return wr.BeginPos != BeginPos || wr.EndPos != EndPos;
134 if (BeginPos.WordCmp(EndPos) > 0) {
135 CPVT_WordPlace place = EndPos;
136 EndPos = BeginPos;
143 CPVT_WordPlace EndPos;
    [all...]
  /frameworks/base/services/core/jni/
com_android_server_am_BatteryStatsService.cpp 114 char* endPos;
117 int irq = (int)strtol(pos, &endPos, 10);
118 if (pos != endPos) {
132 endPos = pos + abortPrefixLen;
134 pos = endPos;
147 char* endpos = pos; local
148 while (*endpos != 0) {
149 if (*endpos == '\n') {
150 *endpos = 0;
153 endpos++
    [all...]
  /external/v8/tools/
csvparser.js 59 var endPos = line.length;
61 if (endPos > 0) {
75 } while (pos <= endPos);
  /external/fonttools/MetaTools/
buildTableList.py 51 endPos = doc.find(end)
53 doc = doc[:beginPos] + ", ".join(tables[:-1]) + " and " + tables[-1] + "\n" + doc[endPos:]
  /build/blueprint/parser/
printer.go 122 p.printList(value.ListValue, value.Pos, value.EndPos)
124 p.printMap(value.MapValue, value.Pos, value.EndPos)
131 func (p *printer) printList(list []Value, pos, endPos scanner.Position) {
134 if len(list) > 1 || pos.Line != endPos.Line {
142 p.unindent(endPos)
148 p.printToken("]", endPos)
151 func (p *printer) printMap(list []*Property, pos, endPos scanner.Position) {
154 if len(list) > 0 || pos.Line != endPos.Line {
162 p.unindent(endPos)
164 p.printToken("}", endPos)
    [all...]
  /frameworks/base/core/jni/
com_android_internal_net_NetworkStatsFactory.cpp 132 char* endPos;
134 idx = (int)strtol(pos, &endPos, 10);
136 if (pos == endPos) {
147 pos = endPos;
185 endPos = pos;
186 while (*endPos != ' ') endPos++;
189 if (endPos - pos == 3) {
203 pos = endPos;
  /external/pdfium/fpdfsdk/src/fxedit/
fxet_edit.cpp 563 m_pEdit->SetSel(m_wrSel.BeginPos, m_wrSel.EndPos);
574 m_pEdit->SetSel(m_wrSel.BeginPos, m_wrSel.EndPos);
600 m_pEdit->SetSel(m_wrSel.BeginPos, m_wrSel.EndPos);
616 m_pEdit->PaintInsertText(m_wrSel.BeginPos, m_wrSel.EndPos);
617 m_pEdit->SetSel(m_wrSel.BeginPos, m_wrSel.EndPos);
686 m_pEdit->SetSel(m_wrPlace.BeginPos, m_wrPlace.EndPos);
698 m_pEdit->SetSel(m_wrPlace.BeginPos, m_wrPlace.EndPos);
725 m_pEdit->SetSel(m_wrPlace.BeginPos, m_wrPlace.EndPos);
737 m_pEdit->SetSel(m_wrPlace.BeginPos, m_wrPlace.EndPos);
932 SetCaret(m_SelState.EndPos);
    [all...]
  /external/protobuf/src/google/protobuf/io/
printer.cc 87 int endpos = end - text; local
89 string varname(text + pos, endpos - pos);
104 i = endpos;
105 pos = endpos + 1;
  /external/lzma/CPP/7zip/Compress/
Bcj2Coder.cpp 111 UInt32 endPos = bufPos + processedSize;
113 if (endPos < 5)
116 for (bufPos = 0; bufPos < endPos; bufPos++)
140 UInt32 limit = endPos - 5;
234 while (bufPos < endPos)
  /external/pdfium/fpdfsdk/src/pdfwindow/
PWL_Edit.cpp 308 CPVT_WordRange wrSelAfter(wrSelect.EndPos, wrWhole.EndPos);
543 ptPopup = GetWordRightBottomPoint(wrLatin.EndPos);
642 m_pEdit->WordPlaceToWordIndex(wrLatin.EndPos));
647 m_pEdit->WordPlaceToWordIndex(wrLatin.EndPos));
652 m_pEdit->WordPlaceToWordIndex(wrLatin.EndPos));
657 m_pEdit->WordPlaceToWordIndex(wrLatin.EndPos));
662 m_pEdit->WordPlaceToWordIndex(wrLatin.EndPos));
1090 if (wr1.EndPos.WordCmp(wr2.EndPos) < 0)
    [all...]

Completed in 1916 milliseconds

1 2 3 4 5 6 7 8 91011>>