Searched defs:leftLength (Results 1 - 3 of 3) 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/icu4c/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/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...]

Completed in 157 milliseconds