Lines Matching refs:next_token_

45         self.next_token_type_, self.next_token_ = (None, None)
97 if self.next_token_ == "NULL":
119 if self.next_token_ == "contourpoint":
123 if self.next_token_ == "<":
139 while self.next_token_ == "<":
141 if anchor is None and self.next_token_ != "mark":
153 if self.next_token_ == "contourpoint":
180 while self.next_token_ != ";":
195 if self.next_token_ != ",":
200 if self.next_token_ != ",":
205 if self.next_token_ != ",":
210 if self.next_token_ != ";":
291 while self.next_token_ != "]":
300 elif self.next_token_ == "-":
311 if self.next_token_ == "-":
360 while self.next_token_ not in {"by", "from", ";", ","}:
363 if self.next_token_ == "'":
387 if self.next_token_ == "lookup":
418 while self.next_token_ == ",":
463 if self.next_token_ in {"exclude_dflt", "include_dflt"}:
465 if self.next_token_ == "required":
478 while self.next_token_ != ";":
489 while self.next_token_ != ";":
499 if self.next_token_ == ";":
509 if self.next_token_ == "useExtension":
536 while self.next_token_ != ";":
537 if self.next_token_ in seen:
539 "%s can be specified only once" % self.next_token_,
541 seen.add(self.next_token_)
542 if self.next_token_ == "MarkAttachmentType":
545 elif self.next_token_ == "UseMarkFilteringSet":
548 elif self.next_token_ in flags:
553 '"%s" is not a recognized lookupflag' % self.next_token_,
585 if self.next_token_ == "cursive": # GPOS type 3
587 elif self.next_token_ == "base": # GPOS type 4
589 elif self.next_token_ == "ligature": # GPOS type 5
591 elif self.next_token_ == "mark": # GPOS type 6
663 while self.next_token_ == "ligComponent":
699 if self.next_token_ == "by":
701 while self.next_token_ != ";":
704 elif self.next_token_ == "from":
879 while self.next_token_ != "}" or self.cur_comments_:
902 while self.next_token_ != "}" or self.cur_comments_:
918 while self.next_token_ != "}" or self.cur_comments_:
929 if self.next_token_ != ";":
941 while self.next_token_ != "}" or self.cur_comments_:
952 if self.next_token_ != ";":
963 while self.next_token_ != "}" or self.cur_comments_:
1049 while self.next_token_ != "}" or self.cur_comments_:
1079 while self.next_token_ != "}" or self.cur_comments_:
1095 while self.next_token_ != ";":
1109 while self.next_token_ != ";":
1118 while self.next_token_ == ",":
1134 if self.next_token_ == "NULL":
1138 while self.next_token_ == ",":
1146 return self.next_token_type_ is Lexer.NUMBER or self.next_token_ == "<"
1179 if self.next_token_ == "<":
1240 if self.next_token_ == "useExtension":
1265 while self.next_token_ != "}" or self.cur_comments_:
1297 while self.next_token_ != "}" or self.cur_comments_:
1330 while self.next_token_ != "}" or self.cur_comments_:
1379 while self.next_token_ != "}" or self.cur_comments_:
1610 self.next_token_type_, self.next_token_, self.next_token_location_)
1613 (self.next_token_type_, self.next_token_,
1616 self.next_token_type_, self.next_token_ = (None, None)
1619 self.cur_comments_.append((self.next_token_, self.next_token_location_))