Home | History | Annotate | Download | only in modules

Lines Matching defs:exclude

183 	_BIG5Exclude *exclude;
187 TAILQ_FOREACH(exclude, &ei->excludes, entry) {
188 if (c >= exclude->start && c <= exclude->end)
220 _BIG5Exclude *exclude;
227 exclude = TAILQ_LAST(&ei->excludes, _BIG5ExcludeList);
228 if (exclude != NULL && (wint_t)start <= exclude->end)
230 exclude = (void *)malloc(sizeof(*exclude));
231 if (exclude == NULL)
233 exclude->start = (wint_t)start;
234 exclude->end = (wint_t)end;
235 TAILQ_INSERT_TAIL(&ei->excludes, exclude, entry);
251 _BIG5Exclude *exclude;
255 while ((exclude = TAILQ_FIRST(&ei->excludes)) != NULL) {
256 TAILQ_REMOVE(&ei->excludes, exclude, entry);
257 free(exclude);