HomeSort by relevance Sort by last modified time
    Searched full:leftlength (Results 1 - 15 of 15) sorted by null

  /external/protobuf/java/src/main/java/com/google/protobuf/
RopeByteString.java 117 private final int leftLength;
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/icu/icu4c/source/i18n/
rulebasedcollator.cpp 713 int32_t leftLength = left.length();
715 if(leftLength > length) { leftLength = length; }
717 return doCompare(left.getBuffer(), leftLength,
722 RuleBasedCollator::compare(const UChar *left, int32_t leftLength,
726 if((left == NULL && leftLength != 0) || (right == NULL && rightLength != 0)) {
732 if(leftLength >= 0) {
735 if(rightLength >= 0) { leftLength = u_strlen(left); }
737 return doCompare(left, leftLength, right, rightLength, errorCode);
754 RuleBasedCollator::internalCompareUTF8(const char *left, int32_t leftLength,
    [all...]
collationfastlatin.cpp 108 const UChar *left, int32_t leftLength,
131 if(leftIndex == leftLength) {
155 leftPair = nextPair(table, c, leftPair, left, NULL, leftIndex, leftLength);
218 if(leftIndex == leftLength) {
237 leftPair = nextPair(table, c, leftPair, left, NULL, leftIndex, leftLength);
294 if(leftIndex == leftLength) {
301 leftPair = nextPair(table, c, leftPair, left, NULL, leftIndex, leftLength);
347 if(leftIndex == leftLength) {
354 leftPair = nextPair(table, c, leftPair, left, NULL, leftIndex, leftLength);
403 if(leftIndex == leftLength) {
    [all...]
coll.cpp 976 Collator::internalCompareUTF8(const char *left, int32_t leftLength,
980 if((left == NULL && leftLength != 0) || (right == NULL && rightLength != 0)) {
985 StringPiece(left, (leftLength < 0) ? uprv_strlen(left) : leftLength),
collationfastlatin.h 212 const UChar *left, int32_t leftLength,
216 const uint8_t *left, int32_t leftLength,
  /external/icu/icu4c/source/common/
unorm.cpp 223 _concatenate(const UChar *left, int32_t leftLength,
232 left==NULL || leftLength<-1 || right==NULL || rightLength<-1) {
249 destString.setTo(dest, leftLength, destCapacity);
252 destString.append(left, leftLength);
259 unorm_concatenate(const UChar *left, int32_t leftLength,
271 return _concatenate(left, leftLength, right, rightLength,
274 return _concatenate(left, leftLength, right, rightLength,
  /frameworks/wilhelm/tools/permute/
permute.c 99 unsigned leftLength = s->mMinSegmentLengthFrames + cut;
100 unsigned rightStart = frameStart + leftLength;
102 assert(leftLength + rightLength == frameLength);
106 if (leftLength <= rightLength) {
107 used = split(s, leftStart, leftLength, segmentBudget / 2);
111 used += split(s, leftStart, leftLength, segmentBudget - used);
  /packages/apps/Terminal/src/com/android/terminal/
TerminalView.java 321 public boolean deleteSurroundingText (int leftLength, int rightLength) {
323 if (rightLength == 0 && leftLength == 0) {
327 for (int i = 0; i < leftLength; i++) {
  /external/skia/src/utils/
SkPatchUtils.cpp 131 SkScalar leftLength = approx_arc_length(pts, kNumPtsCubic);
139 int lodY = static_cast<int>(SkMaxScalar(leftLength, rightLength) / kPartitionSize);
  /external/icu/icu4c/source/i18n/unicode/
tblcoll.h 687 const char *left, int32_t leftLength,
    [all...]
coll.h     [all...]
  /external/icu/icu4c/source/common/unicode/
unorm.h 444 * @param leftLength Length of left source string, or -1 if NUL-terminated.
462 unorm_concatenate(const UChar *left, int32_t leftLength,
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationBuilder.java     [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationBuilder.java     [all...]
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench.texteditor_3.6.1.r361_v20100714-0800.jar 

Completed in 2956 milliseconds