Home
last modified time | relevance | path

Searched refs:check_token (Results 1 – 8 of 8) sorted by relevance

/third_party/PyYAML/lib/yaml/
Dparser.py142 if not self.check_token(DirectiveToken, DocumentStartToken,
162 while self.check_token(DocumentEndToken):
166 if not self.check_token(StreamEndToken):
170 if not self.check_token(DocumentStartToken):
196 if self.check_token(DocumentEndToken):
209 if self.check_token(DirectiveToken,
220 while self.check_token(DirectiveToken):
274 if self.check_token(AliasToken):
282 if self.check_token(AnchorToken):
287 if self.check_token(TagToken):
[all …]
D__init__.py35 while loader.check_token():
Dscanner.py113 def check_token(self, *choices): member in Scanner
/third_party/PyYAML/tests/lib/
Dcanonical.py20 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):
[all …]
/third_party/libcoap/man/
Dcoap_handler.txt.in338 static int check_token(coap_pdu_t *received) {
358 if (!check_token(received)) {
/third_party/libcoap/tests/
Dtest_pdu.c378 coap_bin_const_t check_token; in t_encode_pdu3() local
386 check_token = coap_pdu_get_token(pdu); in t_encode_pdu3()
387 CU_ASSERT(check_token.length == 15); in t_encode_pdu3()
/third_party/libcoap/doc/
Dupgrade_4.2.1_4.3.0.txt264 check_token(coap_pdu_t *received) {
270 check_token(const coap_pdu_t *received) {
/third_party/PyYAML/yaml/
D_yaml.pyx465 def check_token(self, *choices): member in CParser