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

  /external/icu4c/common/
utrace.c 88 static void outputChar(char c, char *outBuf, int32_t *outIx, int32_t capacity, int32_t indent) {
99 if (*outIx==0 || /* case 1. */
100 (c!='\n' && c!=0 && *outIx < capacity && outBuf[(*outIx)-1]=='\n') || /* case 2. */
101 (c=='\n' && *outIx>=capacity)) /* case 3 */
105 if (*outIx < capacity) {
106 outBuf[*outIx] = ' ';
108 (*outIx)++;
112 if (*outIx < capacity) {
113 outBuf[*outIx] = c
    [all...]

Completed in 2890 milliseconds