Home
last modified time | relevance | path

Searched refs:is_syntax (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_codeop.py49 def assertInvalid(self, str, symbol='single', is_syntax=1): argument
55 self.assertTrue(is_syntax)
57 self.assertTrue(not is_syntax)
/external/python/cpython3/Lib/test/
Dtest_codeop.py50 def assertInvalid(self, str, symbol='single', is_syntax=1): argument
56 self.assertTrue(is_syntax)
58 self.assertTrue(not is_syntax)
/external/rust/crates/serde_cbor/src/
Derror.rs161 pub fn is_syntax(&self) -> bool { in is_syntax() method
/external/rust/crates/serde_json/src/
Derror.rs81 pub fn is_syntax(&self) -> bool { in is_syntax() method
/external/googletest/googlemock/scripts/generator/cpp/
Dast.py1273 is_syntax = (var_token.token_type == tokenize.SYNTAX and
1278 if is_syntax and not is_variable:
1291 if is_syntax or (is_variable and not self._handling_typedef):
/external/rust/crates/serde_cbor/tests/
Dde.rs745 assert!(err.is_syntax()); in attempt_stack_overflow()