Searched refs:startPos (Results 1 - 25 of 132) sorted by relevance

123456

/external/lzma/CPP/7zip/Common/
H A DLockedStream.h17 HRESULT Read(UInt64 startPos, void *data, UInt32 size, UInt32 *processedSize);
27 void Init(CLockedInStream *lockedInStream, UInt64 startPos) argument
30 _pos = startPos;
H A DLockedStream.cpp7 HRESULT CLockedInStream::Read(UInt64 startPos, void *data, UInt32 size, argument
11 RINOK(_stream->Seek(startPos, STREAM_SEEK_SET, NULL));
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DLanguageBreakEngine.java28 * @param startPos The index of the beginning of our range
38 int findBreaks(CharacterIterator text, int startPos, int endPos, argument
H A DCjkBreakEngine.java82 public int divideUpDictionaryRange(CharacterIterator inText, int startPos, int endPos, argument
84 if (startPos >= endPos) {
88 inText.setIndex(startPos);
90 int inputLength = endPos - startPos;
93 inText.setIndex(startPos);
215 if (foundBreaks.size() == 0 || foundBreaks.peek() < startPos) {
221 int pos = charPositions[t_boundary[i]] + startPos;
222 if (!(foundBreaks.contains(pos) || pos == startPos)) {
223 foundBreaks.push(charPositions[t_boundary[i]] + startPos);
H A DDictionaryBreakEngine.java172 public int findBreaks(CharacterIterator text, int startPos, int endPos, argument
187 while ((current = text.getIndex()) > startPos && isDict) {
191 rangeStart = (current < startPos) ? startPos :
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DLanguageBreakEngine.java27 * @param startPos The index of the beginning of our range
37 int findBreaks(CharacterIterator text, int startPos, int endPos, argument
H A DCjkBreakEngine.java81 public int divideUpDictionaryRange(CharacterIterator inText, int startPos, int endPos, argument
83 if (startPos >= endPos) {
87 inText.setIndex(startPos);
89 int inputLength = endPos - startPos;
92 inText.setIndex(startPos);
214 if (foundBreaks.size() == 0 || foundBreaks.peek() < startPos) {
220 int pos = charPositions[t_boundary[i]] + startPos;
221 if (!(foundBreaks.contains(pos) || pos == startPos)) {
222 foundBreaks.push(charPositions[t_boundary[i]] + startPos);
H A DDictionaryBreakEngine.java171 public int findBreaks(CharacterIterator text, int startPos, int endPos, argument
186 while ((current = text.getIndex()) > startPos && isDict) {
190 rangeStart = (current < startPos) ? startPos :
/external/lzma/Java/Tukaani/src/org/tukaani/xz/simple/
H A DARM.java17 public ARM(boolean isEncoder, int startPos) { argument
19 pos = startPos + 8;
H A DARMThumb.java17 public ARMThumb(boolean isEncoder, int startPos) { argument
19 pos = startPos + 4;
H A DIA64.java23 public IA64(boolean isEncoder, int startPos) { argument
25 pos = startPos;
H A DPowerPC.java17 public PowerPC(boolean isEncoder, int startPos) { argument
19 pos = startPos;
H A DSPARC.java17 public SPARC(boolean isEncoder, int startPos) { argument
19 pos = startPos;
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
H A DWireFormatNano.java114 int startPos = input.getPosition();
120 input.rewindToPosition(startPos);
H A DExtendableMessageNano.java140 int startPos = input.getPosition();
146 byte[] bytes = input.getData(startPos, endPos - startPos);
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
H A DUTF16Test.java1022 for (int startPos = 0; startPos != -1 && startPos < test1.length();)
1024 startPos = UTF16.indexOf(test1, test2, startPos);
1025 if (startPos >= 0) {
1027 startPos += 4;
1036 for (int startPos = 10; startPos != -1 && startPos < test
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
H A DUTF16Test.java1018 for (int startPos = 0; startPos != -1 && startPos < test1.length();)
1020 startPos = UTF16.indexOf(test1, test2, startPos);
1021 if (startPos >= 0) {
1023 startPos += 4;
1032 for (int startPos = 10; startPos != -1 && startPos < test
[all...]
/external/pdfium/xfa/src/fxbarcode/datamatrix/
H A DBC_EdifactEncoder.cpp130 int32_t startPos,
132 int32_t len = sb.GetLength() - startPos;
137 FX_WCHAR c1 = sb.GetAt(startPos);
138 FX_WCHAR c2 = len >= 2 ? sb.GetAt(startPos + 1) : 0;
139 FX_WCHAR c3 = len >= 3 ? sb.GetAt(startPos + 2) : 0;
140 FX_WCHAR c4 = len >= 4 ? sb.GetAt(startPos + 3) : 0;
129 encodeToCodewords(CFX_WideString sb, int32_t startPos, int32_t& e) argument
H A DBC_EdifactEncoder.h24 int32_t startPos,
H A DBC_ErrorCorrection.cpp104 CFX_Int32Array startPos; local
105 startPos.SetSize(blockCount);
109 startPos[i] = 0;
111 startPos[i] = startPos[i - 1] + dataSizes[i];
H A DBC_C40Encoder.h29 static CFX_WideString encodeToCodewords(CFX_WideString sb, int32_t startPos);
/external/icu/icu4c/source/i18n/
H A Dvisibledigits.cpp152 int32_t startPos = fInterval.getMostSignificantExclusive(); local
153 if (startPos > 18) {
154 startPos = 18;
157 for (int32_t i = startPos - 1; i >= 0; --i) {
160 if (intValue == 0LL && startPos > 0) {
/external/icu/icu4c/source/test/intltest/
H A Dustrtest.cpp708 int32_t startPos = 0; local
710 startPos != -1 && startPos < test1.length();
711 (startPos = test1.indexOf(test2, startPos)) != -1 ? (++occurrences, startPos += 4) : 0)
716 for ( occurrences = 0, startPos = 10;
717 startPos != -1 && startPos < test1.length();
718 (startPos
[all...]
/external/lzma/CPP/7zip/Archive/7z/
H A D7zDecode.h52 UInt64 startPos,
/external/lzma/CPP/7zip/Compress/
H A DPpmdDecoder.cpp114 const UInt64 startPos = _processedSize; local
116 size_t processed = (size_t)(_processedSize - startPos);
158 const UInt64 startPos = _processedSize; local
161 *processedSize = (UInt32)(_processedSize - startPos);

Completed in 987 milliseconds

123456