Lines Matching refs:check_token
20 def check_token(self, *choices): member in CanonicalScanner
222 while not self.check_token(yaml.StreamEndToken):
223 if self.check_token(yaml.DirectiveToken, yaml.DocumentStartToken):
233 if self.check_token(yaml.DirectiveToken):
242 if self.check_token(yaml.AliasToken):
246 if self.check_token(yaml.AnchorToken):
249 if self.check_token(yaml.TagToken):
251 if self.check_token(yaml.ScalarToken):
253 elif self.check_token(yaml.FlowSequenceStartToken):
256 elif self.check_token(yaml.FlowMappingStartToken):
265 if not self.check_token(yaml.FlowSequenceEndToken):
267 while not self.check_token(yaml.FlowSequenceEndToken):
269 if not self.check_token(yaml.FlowSequenceEndToken):
277 if not self.check_token(yaml.FlowMappingEndToken):
279 while not self.check_token(yaml.FlowMappingEndToken):
281 if not self.check_token(yaml.FlowMappingEndToken):