/frameworks/av/media/libstagefright/codecs/amrnb/common/src/ |
c2_9pf_tab.cpp | 52 This file contains the declaration for startPos[] used by the functions 89 extern const Word16 startPos[]; 90 const Word16 startPos[2*4*2] = {0, 2, 0, 3,
|
/external/lzma/CPP/7zip/Common/ |
LockedStream.h | 17 HRESULT Read(UInt64 startPos, void *data, UInt32 size, UInt32 *processedSize);
27 void Init(CLockedInStream *lockedInStream, UInt64 startPos)
30 _pos = startPos;
|
LockedStream.cpp | 7 HRESULT CLockedInStream::Read(UInt64 startPos, void *data, UInt32 size,
11 RINOK(_stream->Seek(startPos, STREAM_SEEK_SET, NULL));
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
LanguageBreakEngine.java | 28 * @param startPos The index of the beginning of our range 38 int findBreaks(CharacterIterator text, int startPos, int endPos,
|
CjkBreakEngine.java | 82 public int divideUpDictionaryRange(CharacterIterator inText, int startPos, int endPos, 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);
|
/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/ |
d2_9pf.cpp | 104 extern const Word16 startPos[]; 206 /* pos0 =i*5+startPos[j*8+subNr*2] */ 207 pos[0] = i * 5 + startPos[k++]; 214 /* pos1 =i*5+startPos[j*8+subNr*2 + 1] */ 215 pos[1] = i * 5 + startPos[k];
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
LanguageBreakEngine.java | 27 * @param startPos The index of the beginning of our range 37 int findBreaks(CharacterIterator text, int startPos, int endPos,
|
CjkBreakEngine.java | 81 public int divideUpDictionaryRange(CharacterIterator inText, int startPos, int endPos, 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);
|
/packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/ |
ResizableIntArray.java | 118 public void append(@Nonnull final ResizableIntArray src, final int startPos, final int length) { 125 System.arraycopy(src.mArray, startPos, mArray, currentLength, length); 129 public void fill(final int value, final int startPos, final int length) { 130 if (startPos < 0 || length < 0) { 131 throw new IllegalArgumentException("startPos=" + startPos + "; length=" + length); 133 final int endPos = startPos + length; 135 Arrays.fill(mArray, startPos, endPos, value);
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/common/ |
ResizableIntArrayTests.java | 234 final int startPos = 0; 235 dst.append(src, startPos, 0 /* length */); 238 assertIntArrayEquals("values after append zero", dstCopy.getPrimitiveArray(), startPos, 239 dst.getPrimitiveArray(), startPos, dstLength); 241 dst.append(src, startPos, srcLength); 246 assertIntArrayEquals("original values after append", dstCopy.getPrimitiveArray(), startPos, 247 dst.getPrimitiveArray(), startPos, dstLength); 248 assertIntArrayEquals("appended values after append", src.getPrimitiveArray(), startPos, 251 dst.append(src, startPos, srcLength); 257 dstCopy.getPrimitiveArray(), startPos, dst.getPrimitiveArray(), startPos [all...] |
InputPointersTests.java | 175 final int startPos = 0; 177 startPos, 0 /* length */); 180 dstCopy.getXCoordinates(), startPos, dst.getXCoordinates(), startPos, dstLength); 182 dstCopy.getYCoordinates(), startPos, dst.getYCoordinates(), startPos, dstLength); 184 dstCopy.getPointerIds(), startPos, dst.getPointerIds(), startPos, dstLength); 186 dstCopy.getTimes(), startPos, dst.getTimes(), startPos, dstLength) [all...] |
/frameworks/wilhelm/src/itf/ |
ISeek.c | 52 SLmillisecond startPos, SLmillisecond endPos) 56 if (!(startPos < endPos)) { 62 if ((startPos != 0) && (endPos != SL_TIME_UNKNOWN)) { 97 thiz->mStartPos = startPos; 119 SLmillisecond startPos = thiz->mStartPos; 123 *pStartPos = startPos;
|
/external/lzma/Java/Tukaani/src/org/tukaani/xz/simple/ |
ARM.java | 17 public ARM(boolean isEncoder, int startPos) { 19 pos = startPos + 8;
|
ARMThumb.java | 17 public ARMThumb(boolean isEncoder, int startPos) { 19 pos = startPos + 4;
|
IA64.java | 23 public IA64(boolean isEncoder, int startPos) { 25 pos = startPos;
|
PowerPC.java | 17 public PowerPC(boolean isEncoder, int startPos) { 19 pos = startPos;
|
SPARC.java | 17 public SPARC(boolean isEncoder, int startPos) { 19 pos = startPos;
|
/external/protobuf/java/src/main/java/com/google/protobuf/nano/ |
WireFormatNano.java | 114 int startPos = input.getPosition(); 120 input.rewindToPosition(startPos);
|
/frameworks/base/core/java/android/database/sqlite/ |
SQLiteQuery.java | 46 * @param startPos The start position for filling the window. 57 int fillWindow(CursorWindow window, int startPos, int requiredPos, boolean countAllRows) { 63 window, startPos, requiredPos, countAllRows, getConnectionFlags(),
|
/external/pdfium/xfa/src/fxbarcode/datamatrix/ |
BC_EdifactEncoder.h | 24 int32_t startPos,
|
BC_EdifactEncoder.cpp | 130 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;
|
BC_C40Encoder.h | 29 static CFX_WideString encodeToCodewords(CFX_WideString sb, int32_t startPos);
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/ |
UTF16Test.java | [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/ |
UTF16Test.java | [all...] |
/external/icu/icu4c/source/common/ |
brkeng.h | 66 * @param startPos The start of the run within the supplied text. 75 int32_t startPos, 191 * @param startPos The start of the run within the supplied text. 200 int32_t startPos,
|