Home
last modified time | relevance | path

Searched refs:__tabversion__ (Results 1 – 9 of 9) sorted by relevance

/external/ply/ply/ply/
Dlex.py35 __tabversion__ = '3.10' variable
181 tf.write('_tabversion = %s\n' % repr(__tabversion__))
218 if getattr(lextab, '_tabversion', '0.0') != __tabversion__:
Dyacc.py70 __tabversion__ = '3.10' variable
1987 if parsetab._tabversion != __tabversion__:
2012 if tabversion != __tabversion__:
2745 ''' % (os.path.basename(filename), __tabversion__, self.lr_method, signature))
2856 pickle.dump(__tabversion__, outf, pickle_protocol)
/external/python/pycparser/pycparser/ply/
Dlex.py35 __tabversion__ = '3.10' variable
181 tf.write('_tabversion = %s\n' % repr(__tabversion__))
218 if getattr(lextab, '_tabversion', '0.0') != __tabversion__:
Dyacc.py71 __tabversion__ = '3.10' variable
1985 if parsetab._tabversion != __tabversion__:
2010 if tabversion != __tabversion__:
2743 ''' % (os.path.basename(filename), __tabversion__, self.lr_method, signature))
2854 pickle.dump(__tabversion__, outf, pickle_protocol)
/external/selinux/python/sepolgen/src/sepolgen/
Dlex.py35 __tabversion__ = '3.10' variable
181 tf.write('_tabversion = %s\n' % repr(__tabversion__))
218 if getattr(lextab, '_tabversion', '0.0') != __tabversion__:
Dyacc.py70 __tabversion__ = '3.10' variable
1987 if parsetab._tabversion != __tabversion__:
2012 if tabversion != __tabversion__:
2745 ''' % (os.path.basename(filename), __tabversion__, self.lr_method, signature))
2856 pickle.dump(__tabversion__, outf, pickle_protocol)
/external/libchrome/third_party/ply/
Dyacc.py63 __tabversion__ = "3.2" # Table version variable
1832 if parsetab._tabversion != __tabversion__:
1854 if tabversion != __tabversion__:
2559 """ % (filename, __tabversion__, self.lr_method, signature))
2672 pickle.dump(__tabversion__,outf,pickle_protocol)
Dlex.py35 __tabversion__ = "3.2" # Version of table file used variable
/external/ply/ply/
DCHANGES300 Fixed issue #1: Fixed _tabversion. It should use __tabversion__ instead of __version__