Home | History | Annotate | Download | only in toolutil

Lines Matching full:line

68     char line[300];
92 while(T_FileStream_readLine(file, line, sizeof(line))!=NULL) {
93 length=(int32_t)uprv_strlen(line);
96 while(length>0 && (line[length-1]=='\r' || line[length-1]=='\n')) {
97 line[--length]=0;
101 * detect a line with # @missing:
102 * start parsing after that, or else from the beginning of the line
105 start=(char *)getMissingLimit(line);
106 if(start==line) {
112 /* skip this line if it is empty or a comment */
117 /* remove in-line comments */
125 /* truncate the line */
152 limit=line+length;