/external/chromium_org/third_party/WebKit/Source/wtf/ |
DynamicAnnotations.cpp | 38 volatile short lineno = (__LINE__ << 8) + __COUNTER__; \ 39 (void)lineno; 42 volatile short lineno = (__LINE__ << 8); \ 43 (void)lineno;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
conv.py | 68 lineno = 0 70 lineno += 1 73 print "%s(%s): can't parse %s" % (filename, lineno, 118 lineno = 0 121 lineno, line = lineno+1, f.next() 122 assert line == '#include "pgenheaders.h"\n', (lineno, line) 123 lineno, line = lineno+1, f.next() 124 assert line == '#include "grammar.h"\n', (lineno, line [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
conv.py | 68 lineno = 0 70 lineno += 1 73 print "%s(%s): can't parse %s" % (filename, lineno, 118 lineno = 0 121 lineno, line = lineno+1, f.next() 122 assert line == '#include "pgenheaders.h"\n', (lineno, line) 123 lineno, line = lineno+1, f.next() 124 assert line == '#include "grammar.h"\n', (lineno, line [all...] |
/external/chromium_org/third_party/jinja2/ |
parser.py | 44 def fail(self, msg, lineno=None, exc=TemplateSyntaxError): 49 if lineno is None: 50 lineno = self.stream.current.lineno 51 raise exc(msg, lineno, self.name, self.filename) 53 def _fail_ut_eof(self, name, end_token_stack, lineno): 82 self.fail(' '.join(message), lineno) 84 def fail_unknown_tag(self, name, lineno=None): 89 return self._fail_ut_eof(name, self._end_token_stack, lineno) 91 def fail_eof(self, end_tokens=None, lineno=None) [all...] |
ext.py | 107 def attr(self, name, lineno=None): 113 self.attr('_my_attribute', lineno=lineno) 115 return nodes.ExtensionAttribute(self.identifier, name, lineno=lineno) 118 dyn_kwargs=None, lineno=None): 126 return nodes.Call(self.attr(name, lineno=lineno), args, kwargs, 127 dyn_args, dyn_kwargs, lineno=lineno) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
FormatParagraph.py | 82 lineno, col = map(int, mark.split(".")) 83 line = text.get("%d.0" % lineno, "%d.0 lineend" % lineno) 84 while text.compare("%d.0" % lineno, "<", "end") and is_all_white(line): 85 lineno = lineno + 1 86 line = text.get("%d.0" % lineno, "%d.0 lineend" % lineno) 87 first_lineno = lineno 92 lineno = lineno + [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
FormatParagraph.py | 82 lineno, col = map(int, mark.split(".")) 83 line = text.get("%d.0" % lineno, "%d.0 lineend" % lineno) 84 while text.compare("%d.0" % lineno, "<", "end") and is_all_white(line): 85 lineno = lineno + 1 86 line = text.get("%d.0" % lineno, "%d.0 lineend" % lineno) 87 first_lineno = lineno 92 lineno = lineno + [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/ |
ast.py | 54 def __init__(self, leftright, lineno=None): 57 self.lineno = lineno 69 def __init__(self, nodes, lineno=None): 71 self.lineno = lineno 85 def __init__(self, expr, attrname, flags, lineno=None): 89 self.lineno = lineno 101 def __init__(self, nodes, lineno=None) [all...] |
transformer.py | 78 lineno = extractLineNo(child) 79 if lineno is not None: 80 return lineno 259 lineno = nodelist[-4][2] 278 lineno=lineno) 291 return Lambda(names, defaults, flags, code, lineno=nodelist[1][2]) 314 return Class(name, bases, doc, code, lineno=nodelist[1][2]) 367 return Discard(exprNode, lineno=exprNode.lineno) [all...] |
syntax.py | 35 print "%s:%s: %s" % (node.filename, node.lineno, msg) 37 raise SyntaxError, "%s (%s:%s)" % (msg, node.filename, node.lineno) 44 ## if target.lineno is None: 45 ## target.lineno = node.lineno
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/ |
ast.py | 54 def __init__(self, leftright, lineno=None): 57 self.lineno = lineno 69 def __init__(self, nodes, lineno=None): 71 self.lineno = lineno 85 def __init__(self, expr, attrname, flags, lineno=None): 89 self.lineno = lineno 101 def __init__(self, nodes, lineno=None) [all...] |
transformer.py | 78 lineno = extractLineNo(child) 79 if lineno is not None: 80 return lineno 259 lineno = nodelist[-4][2] 278 lineno=lineno) 291 return Lambda(names, defaults, flags, code, lineno=nodelist[1][2]) 314 return Class(name, bases, doc, code, lineno=nodelist[1][2]) 367 return Discard(exprNode, lineno=exprNode.lineno) [all...] |
syntax.py | 35 print "%s:%s: %s" % (node.filename, node.lineno, msg) 37 raise SyntaxError, "%s (%s:%s)" % (msg, node.filename, node.lineno) 44 ## if target.lineno is None: 45 ## target.lineno = node.lineno
|
/external/qemu/android/utils/ |
assert.c | 18 long lineno; member in struct:__anon24771 38 loc->lineno = fileLineno; 59 android_panic("ASSERTION FAILURE (%s:%d) in %s\n", loc->file, loc->lineno, loc->function);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
warnings.py | 24 def _show_warning(message, category, filename, lineno, file=None, line=None): 29 file.write(formatwarning(message, category, filename, lineno, line)) 36 def formatwarning(message, category, filename, lineno, line=None): 38 s = "%s:%s: %s: %s\n" % (filename, lineno, category.__name__, message) 39 line = linecache.getline(filename, lineno) if line is None else line 45 def filterwarnings(action, message="", category=Warning, module="", lineno=0, 54 'lineno' -- an integer line number, 0 matches all warnings 65 assert isinstance(lineno, int) and lineno >= 0, \ 66 "lineno must be an int >= 0 [all...] |
pyclbr.py | 25 lineno -- the line in the file on which the class statement occurred 39 lineno -- the line in the file on which the class statement occurred 55 def __init__(self, module, name, super, file, lineno): 63 self.lineno = lineno 65 def _addmethod(self, name, lineno): 66 self.methods[name] = lineno 70 def __init__(self, module, name, file, lineno): 74 self.lineno = lineno [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
warnings.py | 24 def _show_warning(message, category, filename, lineno, file=None, line=None): 29 file.write(formatwarning(message, category, filename, lineno, line)) 36 def formatwarning(message, category, filename, lineno, line=None): 38 s = "%s:%s: %s: %s\n" % (filename, lineno, category.__name__, message) 39 line = linecache.getline(filename, lineno) if line is None else line 45 def filterwarnings(action, message="", category=Warning, module="", lineno=0, 54 'lineno' -- an integer line number, 0 matches all warnings 65 assert isinstance(lineno, int) and lineno >= 0, \ 66 "lineno must be an int >= 0 [all...] |
pyclbr.py | 25 lineno -- the line in the file on which the class statement occurred 39 lineno -- the line in the file on which the class statement occurred 55 def __init__(self, module, name, super, file, lineno): 63 self.lineno = lineno 65 def _addmethod(self, name, lineno): 66 self.methods[name] = lineno 70 def __init__(self, module, name, file, lineno): 74 self.lineno = lineno [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
annotate.py | 66 lineno = 0 74 lineno += 1 75 while i < len(statements) and statements[i] < lineno: 77 while j < len(missing) and missing[j] < lineno: 79 if i < len(statements) and statements[i] == lineno: 80 covered = j >= len(missing) or missing[j] > lineno 93 elif lineno in excluded:
|
/frameworks/base/tools/aidl/ |
aidl.cpp | 116 import->statement.lineno = statement->lineno; 240 filename, name->lineno, name->data, expected.c_str()); 309 ((p->flattening_methods & RPC_DATA) != 0), filename, p->name.lineno); 316 filename, c->name.lineno); 337 filename, c->name.lineno); 344 filename, c->name.lineno); 357 filename, c->name.lineno); 419 m->type.type.lineno, m->type.type.data); 427 filename, m->type.type.lineno); 601 int lineno = -1; local 774 int lineno = 1; local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/hotshot/ |
log.py | 27 # (fileno, lineno) -> filename, funcname 84 def get_funcname(self, fileno, lineno): 86 return self._funcmap[(fileno, lineno)] 98 what, tdelta, fileno, lineno = self._nextitem() 103 filename, funcname = self._decode_location(fileno, lineno) 104 t = (filename, lineno, funcname) 116 return what, (filename, lineno, funcname), tdelta 123 self._funcmap[(fileno, lineno)] = (filename, tdelta) 129 self.cwd = lineno 130 self.addinfo(tdelta, lineno) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/hotshot/ |
log.py | 27 # (fileno, lineno) -> filename, funcname 84 def get_funcname(self, fileno, lineno): 86 return self._funcmap[(fileno, lineno)] 98 what, tdelta, fileno, lineno = self._nextitem() 103 filename, funcname = self._decode_location(fileno, lineno) 104 t = (filename, lineno, funcname) 116 return what, (filename, lineno, funcname), tdelta 123 self._funcmap[(fileno, lineno)] = (filename, tdelta) 129 self.cwd = lineno 130 self.addinfo(tdelta, lineno) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/events/ |
ErrorEvent.cpp | 41 , lineno(0) 55 , m_lineNumber(initializer.lineno)
|
ErrorEvent.idl | 36 [InitializedByEventConstructor] readonly attribute unsigned long lineno;
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
stack_utils.py | 56 for filename, lineno, name, line in traceback.extract_stack(stack): 57 logger('File: "%s", line %d, in %s' % (filename, lineno, name))
|