Lines Matching refs:inputMap
1139 LocalPointer<UVector32> inputMap; in divideUpDictionaryRange() local
1161 inputMap.adoptInsteadAndCheckErrorCode(new UVector32(status), status); in divideUpDictionaryRange()
1170 while (inputMap->size() < inString.length()) { in divideUpDictionaryRange()
1171 inputMap->addElement(nativePosition, status); in divideUpDictionaryRange()
1174 inputMap->addElement(limit, status); in divideUpDictionaryRange()
1208 int32_t fragmentOriginalStart = inputMap.isValid() ? in divideUpDictionaryRange()
1209 inputMap->elementAti(fragmentStartI) : fragmentStartI+rangeStart; in divideUpDictionaryRange()
1218 int32_t nativeEnd = inputMap.isValid() ? in divideUpDictionaryRange()
1219 inputMap->elementAti(inString.length()) : inString.length()+rangeStart; in divideUpDictionaryRange()
1222 inputMap = std::move(normalizedMap); in divideUpDictionaryRange()
1233 UBool hadExistingMap = inputMap.isValid(); in divideUpDictionaryRange()
1235 inputMap.adoptInsteadAndCheckErrorCode(new UVector32(status), status); in divideUpDictionaryRange()
1244 inputMap->setElementAt(inputMap->elementAti(cuIdx), cpIdx); in divideUpDictionaryRange()
1246 inputMap->addElement(cuIdx+rangeStart, status); in divideUpDictionaryRange()
1407 int32_t utextPos = inputMap.isValid() ? inputMap->elementAti(cpPos) : cpPos + rangeStart; in divideUpDictionaryRange()