/external/bison/src/ |
flex-scanner.h | 37 void FLEX_PREFIX (set_lineno) (int);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/ |
pycodegen.py | 311 # The set_lineno() function and the explicit emit() calls for 312 # SET_LINENO below are only used to generate the line number table. 313 # As of Python 2.3, the interpreter does not have a SET_LINENO 314 # instruction. pyassem treats SET_LINENO opcodes as a special case. 316 def set_lineno(self, node, force=False): member in class:CodeGenerator 317 """Emit SET_LINENO if necessary. 323 Returns true if SET_LINENO was emitted. 333 self.emit('SET_LINENO', lineno) 349 self.emit('SET_LINENO', 0) 360 self.set_lineno(node [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/ |
pycodegen.py | 311 # The set_lineno() function and the explicit emit() calls for 312 # SET_LINENO below are only used to generate the line number table. 313 # As of Python 2.3, the interpreter does not have a SET_LINENO 314 # instruction. pyassem treats SET_LINENO opcodes as a special case. 316 def set_lineno(self, node, force=False): member in class:CodeGenerator 317 """Emit SET_LINENO if necessary. 323 Returns true if SET_LINENO was emitted. 333 self.emit('SET_LINENO', lineno) 349 self.emit('SET_LINENO', 0) 360 self.set_lineno(node [all...] |
/external/chromium_org/third_party/jinja2/ |
ext.py | 293 node.set_lineno(lineno)
|
nodes.py | 207 def set_lineno(self, lineno, override=False): member in class:Node
|
/external/chromium_org/ppapi/generators/ |
idl_parser.py | 577 p.set_lineno(0, p.lineno(1)) [all...] |
/external/chromium_org/third_party/ply/ |
yacc.py | 213 def set_lineno(self,n,lineno): member in class:YaccProduction [all...] |