OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:leftLength
(Results
1 - 25
of
36
) sorted by null
1
2
/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/
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
...]
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.h
212
const UChar *left, int32_t
leftLength
,
216
const uint8_t *left, int32_t
leftLength
,
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
),
/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);
/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/icu4c/source/i18n/unicode/
tblcoll.h
687
const char *left, int32_t
leftLength
,
[
all
...]