Searched defs:leftLength (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/icu/source/common/
H A Dunorm.cpp218 unorm_concatenate(const UChar *left, int32_t leftLength, argument
238 left==NULL || leftLength<-1 ||
257 destString.setTo(dest, leftLength, destCapacity);
260 destString.append(left, leftLength);
/external/icu/icu4c/source/common/
H A Dunorm.cpp225 _concatenate(const UChar *left, int32_t leftLength, argument
234 left==NULL || leftLength<-1 || right==NULL || rightLength<-1) {
251 destString.setTo(dest, leftLength, destCapacity);
254 destString.append(left, leftLength);
261 unorm_concatenate(const UChar *left, int32_t leftLength, argument
273 return _concatenate(left, leftLength, right, rightLength,
276 return _concatenate(left, leftLength, right, rightLength,
/external/icu/icu4c/source/i18n/
H A Dcollationfastlatin.cpp92 const UChar *left, int32_t leftLength,
116 if(leftIndex == leftLength) {
140 leftPair = nextPair(table, c, leftPair, left, NULL, leftIndex, leftLength);
203 if(leftIndex == leftLength) {
222 leftPair = nextPair(table, c, leftPair, left, NULL, leftIndex, leftLength);
279 if(leftIndex == leftLength) {
286 leftPair = nextPair(table, c, leftPair, left, NULL, leftIndex, leftLength);
332 if(leftIndex == leftLength) {
339 leftPair = nextPair(table, c, leftPair, left, NULL, leftIndex, leftLength);
388 if(leftIndex == leftLength) {
91 compareUTF16(const uint16_t *table, const uint16_t *primaries, int32_t options, const UChar *left, int32_t leftLength, const UChar *right, int32_t rightLength) argument
431 compareUTF8(const uint16_t *table, const uint16_t *primaries, int32_t options, const uint8_t *left, int32_t leftLength, const uint8_t *right, int32_t rightLength) argument
[all...]
H A Dcoll.cpp989 Collator::internalCompareUTF8(const char *left, int32_t leftLength, argument
993 if((left == NULL && leftLength != 0) || (right == NULL && rightLength != 0)) {
998 StringPiece(left, (leftLength < 0) ? uprv_strlen(left) : leftLength),
H A Drulebasedcollator.cpp710 int32_t leftLength = left.length(); local
712 if(leftLength > length) { leftLength = length; }
714 return doCompare(left.getBuffer(), leftLength,
719 RuleBasedCollator::compare(const UChar *left, int32_t leftLength, argument
723 if((left == NULL && leftLength != 0) || (right == NULL && rightLength != 0)) {
729 if(leftLength >= 0) {
732 if(rightLength >= 0) { leftLength = u_strlen(left); }
734 return doCompare(left, leftLength, right, rightLength, errorCode);
751 RuleBasedCollator::internalCompareUTF8(const char *left, int32_t leftLength, argument
963 doCompare(const UChar *left, int32_t leftLength, const UChar *right, int32_t rightLength, UErrorCode &errorCode) const argument
1082 doCompare(const uint8_t *left, int32_t leftLength, const uint8_t *right, int32_t rightLength, UErrorCode &errorCode) const argument
[all...]
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
H A DRopeByteString.java117 private final int leftLength; field in class:RopeByteString
132 leftLength = left.size();
133 totalLength = leftLength + right.size();
259 if (index < leftLength) {
262 result = right.byteAt(index - leftLength);
334 if (endIndex <= leftLength) {
337 } else if (beginIndex >= leftLength) {
340 .substring(beginIndex - leftLength, endIndex - leftLength);
344 ByteString rightSub = right.substring(0, endIndex - leftLength);
[all...]
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...

Completed in 269 milliseconds