Home | History | Annotate | Download | only in cintltst

Lines Matching defs:cont

47 #define cont ((chArrayContext *)en->context)
51 if(cont->currUChar != NULL) {
52 free(cont->currUChar);
53 cont->currUChar = NULL;
60 return cont->maxIndex;
65 if(cont->currIndex >= cont->maxIndex) {
69 if(cont->currUChar == NULL) {
70 cont->currUChar = (UChar *)malloc(1024*sizeof(UChar));
73 cont->currChar = (cont->array)[cont->currIndex];
74 *resultLength = (int32_t)strlen(cont->currChar);
75 u_charsToUChars(cont->currChar, cont->currUChar, *resultLength);
76 cont->currIndex++;
77 return cont->currUChar;
82 if(cont->currIndex >= cont->maxIndex) {
86 cont->currChar = (cont->array)[cont->currIndex];
87 *resultLength = (int32_t)strlen(cont->currChar);
88 cont->currIndex++;
89 return cont->currChar;
94 cont->currIndex = 0;
201 cont->array = (char **)source;
202 cont->maxIndex = size;