HomeSort by relevance Sort by last modified time
    Searched defs:sourceIndex (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /external/icu/icu4c/source/common/
ucnvlat1.cpp 43 int32_t sourceIndex;
51 sourceIndex=0;
87 offsets[0]=sourceIndex++;
88 offsets[1]=sourceIndex++;
89 offsets[2]=sourceIndex++;
90 offsets[3]=sourceIndex++;
91 offsets[4]=sourceIndex++;
92 offsets[5]=sourceIndex++;
93 offsets[6]=sourceIndex++;
94 offsets[7]=sourceIndex++
    [all...]
ucnv_u16.cpp 59 uint32_t targetCapacity, length, sourceIndex;
91 sourceIndex=0;
111 sourceIndex=1;
153 *offsets++=sourceIndex;
154 *offsets++=sourceIndex++;
163 *offsets++=sourceIndex;
164 *offsets++=sourceIndex;
165 *offsets++=sourceIndex;
166 *offsets++=sourceIndex;
167 sourceIndex+=2
    [all...]
ucnv_u7.cpp 231 int32_t sourceIndex, nextSourceIndex;
252 /* sourceIndex=-1 if the current character began in the previous buffer */
253 sourceIndex=byteIndex==0 ? 0 : -1;
264 * In Direct Mode, only the sourceIndex is used.
284 *offsets++=sourceIndex++;
288 nextSourceIndex=++sourceIndex;
308 * In Unicode Mode, the sourceIndex has the index to the start of the current
357 sourceIndex=nextSourceIndex-1;
379 *offsets++=sourceIndex;
380 sourceIndex=nextSourceIndex-1
    [all...]
ucnvhz.cpp 41 #define CONCAT_ESCAPE_MACRO( args, targetIndex,targetLength,strToAppend, err, len,sourceIndex){ \
46 *(offsets++) = sourceIndex-1; \
62 int32_t sourceIndex;
124 ((UConverterDataHZ*)cnv->extraInfo)->sourceIndex = 0;
ucnvbocu.cpp 402 int32_t sourceIndex, nextSourceIndex;
419 /* sourceIndex=-1 if the current character began in the previous buffer */
420 sourceIndex= c==0 ? 0 : -1;
459 sourceIndex=nextSourceIndex; /* wrong if offsets==NULL but does not matter */
477 *offsets++=sourceIndex;
480 sourceIndex=nextSourceIndex;
514 *offsets++=sourceIndex;
516 sourceIndex=nextSourceIndex;
536 *offsets++=sourceIndex;
537 *offsets++=sourceIndex;
    [all...]
ucnv_lmb.cpp 862 int sourceIndex = 0;
    [all...]
ucnvscsu.cpp 244 int32_t sourceIndex, nextSourceIndex;
265 /* sourceIndex=-1 if the current character began in the previous buffer */
266 sourceIndex=state==readCommand ? 0 : -1;
299 *offsets++=sourceIndex;
307 *offsets++=sourceIndex;
315 *offsets++=sourceIndex;
316 *offsets++=sourceIndex;
321 *offsets++=sourceIndex;
330 sourceIndex=nextSourceIndex;
352 *offsets++=sourceIndex;
    [all...]
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetUTF8.java 64 int sourceIndex = source.arrayOffset() + source.position();
76 toUBytesArray[0] = ch = sourceArray[sourceIndex++];
94 if (sourceIndex >= sourceLimit) {
102 toUBytesArray[bytesSoFar] = ch = sourceArray[sourceIndex++];
105 sourceIndex--;
142 if (sourceIndex >= sourceLimit) {
152 while (UTF8.isSingle(ch = sourceArray[sourceIndex++])) {
154 if (sourceIndex >= sourceLimit) {
181 source.position(sourceIndex - source.arrayOffset());
187 int sourceIndex = source.position()
    [all...]
CharsetASCII.java 64 int sourceIndex = oldSource + sourceOffset;
73 + sourceIndex;
74 int offset = targetIndex - sourceIndex;
80 cr = decodeLoopCoreOptimized(source, target, sourceArray, targetArray, sourceIndex, offset, limit);
104 int sourceIndex = -1;
105 while (--count >= 0) offsets.put(++sourceIndex);
222 int sourceIndex = oldSource + sourceOffset;
231 + sourceIndex;
232 int offset = targetIndex - sourceIndex;
238 cr = encodeLoopCoreOptimized(source, target, sourceArray, targetArray, sourceIndex, offset, limit, flush)
    [all...]
CharsetDecoderICU.java 355 /* private void updateOffsets(IntBuffer offsets,int length, int sourceIndex, int errorInputLength) {
359 if(sourceIndex>=0) {
361 * adjust each offset by adding the previous sourceIndex
365 /* delta=sourceIndex-errorInputLength;
398 int sourceIndex;
415 sourceIndex=0;
427 realSourceIndex=sourceIndex;
434 sourceIndex=-1;
467 /* no sourceIndex adjustment for conversion, only for callback output */
485 updateOffsets(offsets, length, sourceIndex, errorInputLength)
    [all...]
CharsetUTF16.java 295 int sourceIndex = source.position() - 1;
311 cr = fromUWriteBytes(this, temp, 0, 4, target, offsets, sourceIndex);
316 cr = fromUWriteBytes(this, temp, 0, 2, target, offsets, sourceIndex);
CharsetUTF32.java 220 int sourceIndex = source.position() - 1;
240 cr = fromUWriteBytes(this, temp, 0, 4, target, offsets, sourceIndex);
CharsetUTF7.java 195 int sourceIndex, nextSourceIndex;
212 /* sourceIndex=-1 if the current character began in the previous buffer */
213 sourceIndex=byteIndex==0 ? 0 : -1;
225 * In Direct Mode, only the sourceIndex is used.
247 offsets.put(sourceIndex++);
256 nextSourceIndex=++sourceIndex;
276 * In Unicode Mode, the sourceIndex has the index to the start of the current
326 sourceIndex=nextSourceIndex-1;
356 offsets.put(sourceIndex);
357 sourceIndex=nextSourceIndex - 1
    [all...]
CharsetBOCU1.java 236 int sourceIndex, nextSourceIndex;
406 /*sourceIndex ==-1 if the current characte began in the previous buffer*/
407 sourceIndex = c == 0 ? 0: -1;
492 sourceIndex = nextSourceIndex; /*wrong if offsets==null but does not matter*/
513 offsets.put(sourceIndex++);
517 sourceIndex=nextSourceIndex;
547 offsets.put(sourceIndex++);
550 sourceIndex=nextSourceIndex;
571 offsets.put(sourceIndex);
572 offsets.put(sourceIndex);
    [all...]
CharsetCompoundText.java 244 int sourceIndex = source.position();
258 } else if ((sourceIndex + (n - offset)) >= sourceLimit) {
260 } else if (source.get(sourceIndex + (n - offset)) != escSeqCompoundText[i][n]) {
272 source.position(sourceIndex + (escSeqCompoundText[i].length - offset));
CharsetEncoderICU.java 393 int sourceIndex;
406 sourceIndex = 0;
459 /* no sourceIndex adjustment for conversion, only for callback output */
482 * (sourceIndex<0) or may not update the offsets pointer
487 if (sourceIndex >= 0) {
488 sourceIndex += (int) (source.position());
508 if ((sourceIndex += preFromULength) < 0) {
509 sourceIndex = -1;
533 sourceIndex = source.position();
695 * @param sourceIndex
    [all...]
CharsetLMBCS.java     [all...]
  /frameworks/av/packages/MediaComponents/src/com/android/support/mediarouter/media/
RegisteredMediaRouteProviderWatcher.java 100 int sourceIndex = findProvider(serviceInfo.packageName, serviceInfo.name);
101 if (sourceIndex < 0) {
108 } else if (sourceIndex >= targetIndex) {
109 RegisteredMediaRouteProvider provider = mProviders.get(sourceIndex);
112 Collections.swap(mProviders, sourceIndex, targetIndex++);
  /frameworks/support/mediarouter/src/main/java/androidx/mediarouter/media/
RegisteredMediaRouteProviderWatcher.java 100 int sourceIndex = findProvider(serviceInfo.packageName, serviceInfo.name);
101 if (sourceIndex < 0) {
108 } else if (sourceIndex >= targetIndex) {
109 RegisteredMediaRouteProvider provider = mProviders.get(sourceIndex);
112 Collections.swap(mProviders, sourceIndex, targetIndex++);
  /external/icu/icu4c/source/common/unicode/
edits.h 290 int32_t sourceIndex() const { return srcIndex; }
  /external/icu/icu4c/source/i18n/
ucol.cpp 257 int32_t sourceIndex = 0;
260 sourceIndex++;
261 if(source[sourceIndex] == Collation::LEVEL_SEPARATOR_BYTE) {
265 && (source[sourceIndex] != 0 || sourceIndex < sourceLength));
267 if((source[sourceIndex] == 0 || sourceIndex == sourceLength)
277 if(result != NULL && resultLength >= sourceIndex+boundType) {
278 uprv_memcpy(result, source, sourceIndex);
285 result[sourceIndex++] = 2
    [all...]
  /frameworks/base/services/core/java/com/android/server/media/
RemoteDisplayProviderWatcher.java 121 int sourceIndex = findProvider(serviceInfo.packageName, serviceInfo.name);
122 if (sourceIndex < 0) {
130 } else if (sourceIndex >= targetIndex) {
131 RemoteDisplayProviderProxy provider = mProviders.get(sourceIndex);
134 Collections.swap(mProviders, sourceIndex, targetIndex++);
  /frameworks/base/services/core/java/com/android/server/tv/
TvRemoteProviderWatcher.java 116 int sourceIndex = findProvider(serviceInfo.packageName, serviceInfo.name);
117 if (sourceIndex < 0) {
125 } else if (sourceIndex >= targetIndex) {
126 TvRemoteProviderProxy provider = mProviderProxies.get(sourceIndex);
129 Collections.swap(mProviderProxies, sourceIndex, targetIndex++);
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
ShaderLang.cpp 384 int sourceIndex = MapSourceToIndex(source);
385 if (CommonSymbolTable[versionIndex][spvVersionIndex][profileIndex][sourceIndex][EPcGeneral]) {
413 CommonSymbolTable[versionIndex][spvVersionIndex][profileIndex][sourceIndex][precClass] = new TSymbolTable;
414 CommonSymbolTable[versionIndex][spvVersionIndex][profileIndex][sourceIndex][precClass]->copyTable(*commonTable[precClass]);
415 CommonSymbolTable[versionIndex][spvVersionIndex][profileIndex][sourceIndex][precClass]->readOnly();
420 SharedSymbolTables[versionIndex][spvVersionIndex][profileIndex][sourceIndex][stage] = new TSymbolTable;
421 SharedSymbolTables[versionIndex][spvVersionIndex][profileIndex][sourceIndex][stage]->adoptLevels(*CommonSymbolTable
422 [versionIndex][spvVersionIndex][profileIndex][sourceIndex][CommonIndex(profile, (EShLanguage)stage)]);
423 SharedSymbolTables[versionIndex][spvVersionIndex][profileIndex][sourceIndex][stage]->copyTable(*stageTables[stage]);
424 SharedSymbolTables[versionIndex][spvVersionIndex][profileIndex][sourceIndex][stage]->readOnly()
    [all...]
  /frameworks/av/media/libstagefright/
MPEG2TSWriter.cpp 571 int32_t sourceIndex;
572 CHECK(msg->findInt32("source-index", &sourceIndex));
573 sp<SourceInfo> source = mSources.editItemAt(sourceIndex);
587 writeAccessUnit(sourceIndex, buffer);
601 writeAccessUnit(sourceIndex, buffer);
618 sourceIndex, source->lastAccessUnitTimeUs() / 1E6);
793 int32_t sourceIndex, const sp<ABuffer> &accessUnit) {
798 // PID = b0 0001 1110 ???? (13 bits) [0x1e0 + 1 + sourceIndex]
832 const unsigned PID = 0x1e0 + sourceIndex + 1;
835 mSources.editItemAt(sourceIndex)->incrementContinuityCounter()
    [all...]

Completed in 664 milliseconds

1 2 3 4