Searched defs:prevLength (Results 1 - 6 of 6) sorted by relevance

/external/skia/src/gpu/
H A DGrTRecorder.h202 int prevLength = 0; local
206 prevLength = lastHeader->fTotalLength;
228 header->fPrevLength = prevLength;
/external/icu/icu4c/source/common/
H A Ducnv_ext.cpp676 int32_t length, prevLength; local
707 if((prevLength=cnv->fromUnicodeStatus)!=0) {
711 if(prevLength>1 && length==1) {
715 } else if(prevLength==1 && length>1) {
H A Ducnvmbcs.cpp1866 * MBCS_OUTPUT_2_SISO: Bypass the ASCII fastpath to handle prevLength correctly.
1977 cnv->fromUnicodeStatus=1; /* prevLength */
4084 int32_t length = 0, prevLength; local
4140 prevLength=cnv->fromUnicodeStatus;
4141 if(prevLength==0) {
4143 prevLength=1;
4147 prevLength=0;
4232 * right here, then change the local prevLength state variable if necessary.
4239 cnv->fromUnicodeStatus=prevLength; /* save the old state */
4244 } else if(prevLength<
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DMessageFormat.java1846 private FieldPosition updateMetaData(AppendableWrapper dest, int prevLength, argument
1848 if (dest.attributes != null && prevLength < dest.length) {
1849 dest.attributes.add(new AttributeAndPosition(argId, prevLength, dest.length));
1852 fp.setBeginIndex(prevLength);
2613 int prevLength = length;
2618 int limit = formattedArg.getEndIndex(); // == start + length - prevLength
2619 int offset = prevLength - start; // Adjust attribute indexes for the result string.
/external/messageformat/java/com/ibm/icu/simple/
H A DMessageFormat.java1759 private FieldPosition updateMetaData(AppendableWrapper dest, int prevLength, argument
1761 if (dest.attributes != null && prevLength < dest.length) {
1762 dest.attributes.add(new AttributeAndPosition(argId, prevLength, dest.length));
1765 fp.setBeginIndex(prevLength);
2455 int prevLength = length;
2460 int limit = formattedArg.getEndIndex(); // == start + length - prevLength
2461 int offset = prevLength - start; // Adjust attribute indexes for the result string.
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
H A DCharsetMBCS.java502 * MBCS_OUTPUT_2_SISO: Bypass the ASCII fastpath to handle prevLength correctly.
2863 int stage2Entry = 0, value = 0, length = 0, prevLength;
2920 prevLength = fromUnicodeStatus;
2921 if (prevLength == 0) {
2923 prevLength = 1;
2927 prevLength = 0;
2955 prevSourceIndex, prevLength);
2963 prevLength = x.prevLength;
3000 nextSourceIndex, prevSourceIndex, prevLength);
4529 int c, sourceArrayIndex, sourceIndex, nextSourceIndex, prevSourceIndex, prevLength; field in class:CharsetMBCS.CharsetEncoderMBCS.SideEffects
[all...]

Completed in 434 milliseconds