Home | History | Annotate | Download | only in libscanbuild

Lines Matching refs:state

22         state checking. """
26 state = 0
28 if state == 0 and current in reserved:
30 elif state == 0 and current == '\\':
31 state = 1
32 elif state == 1 and current in reserved | {'\\'}:
33 state = 0
34 elif state == 0 and current == '"':
35 state = 2
36 elif state == 2 and current == '"':
37 state = 0
38 elif state == 0 and current == "'":
39 state = 3
40 elif state == 3 and current == "'":
41 state = 0
42 return state != 0