| /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/CrossTU/ |
| CrossTranslationUnit.h | 50 IndexError(index_error_code C) : Code(C), LineNo(0) {} 51 IndexError(index_error_code C, std::string FileName, int LineNo = 0) 52 : Code(C), FileName(std::move(FileName)), LineNo(LineNo) {} 56 int getLineNum() const { return LineNo; } 62 int LineNo;
|
| /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/CrossTU/ |
| CrossTranslationUnit.h | 50 IndexError(index_error_code C) : Code(C), LineNo(0) {} 51 IndexError(index_error_code C, std::string FileName, int LineNo = 0) 52 : Code(C), FileName(std::move(FileName)), LineNo(LineNo) {} 56 int getLineNum() const { return LineNo; } 62 int LineNo;
|
| /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/CrossTU/ |
| CrossTranslationUnit.h | 50 IndexError(index_error_code C) : Code(C), LineNo(0) {} 51 IndexError(index_error_code C, std::string FileName, int LineNo = 0) 52 : Code(C), FileName(std::move(FileName)), LineNo(LineNo) {} 56 int getLineNum() const { return LineNo; } 62 int LineNo;
|
| /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/CrossTU/ |
| CrossTranslationUnit.h | 50 IndexError(index_error_code C) : Code(C), LineNo(0) {} 51 IndexError(index_error_code C, std::string FileName, int LineNo = 0) 52 : Code(C), FileName(std::move(FileName)), LineNo(LineNo) {} 56 int getLineNum() const { return LineNo; } 62 int LineNo;
|
| /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/CrossTU/ |
| CrossTranslationUnit.h | 50 IndexError(index_error_code C) : Code(C), LineNo(0) {} 51 IndexError(index_error_code C, std::string FileName, int LineNo = 0) 52 : Code(C), FileName(std::move(FileName)), LineNo(LineNo) {} 56 int getLineNum() const { return LineNo; } 62 int LineNo;
|
| /toolchain/binutils/binutils-2.27/gas/ |
| dwarf2dbg.h | 47 Implements the .subprog SUBPNO ["SUBPROG" [FILENO LINENO]] directive. 48 FILENO is the file number, LINENO the line number and the 55 /* Implements the .loc FILENO LINENO [COLUMN] directive. FILENO is 56 the file number, LINENO the line number and the (optional) COLUMN 62 If IS_LLOC is true, implements the .lloc LOGICAL [FILENO LINENO [COLUMN]] 63 directive. FILENO is the file number, LINENO the line number and the
|
| /external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/ |
| parsetree.py | 15 def __init__(self, source, lineno, pos, filename): 17 self.lineno = lineno 23 return {'source': self.source, 'lineno': self.lineno, 105 (self.lineno, self.pos) 116 return "Text(%r, %r)" % (self.content, (self.lineno, self.pos)) 151 (self.lineno, self.pos) 166 return "Comment(%r, %r)" % (self.text, (self.lineno, self.pos)) 197 (self.lineno, self.pos [all...] |
| /external/libmojo/third_party/jinja2/ |
| lexer.py | 221 def __call__(self, lineno, filename): 222 raise self.error_class(self.message, lineno, filename) 228 lineno, type, value = (property(itemgetter(x)) for x in range(3)) 230 def __new__(cls, lineno, type, value): 231 return tuple.__new__(cls, (lineno, intern(str(type)), value)) 262 self.lineno, 356 self.current = Token(self.current.lineno, TOKEN_EOF, '') 369 self.current.lineno, 373 self.current.lineno, 552 for lineno, token, value in stream [all...] |
| /external/stressapptest/ |
| configure | 172 as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO 173 as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO 362 # as_fn_error ERROR [LINENO LOG_FD] 364 # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are 365 # provided, also output the error to LOG_FD, referencing LINENO. Then exit the 372 $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 424 as_lineno_1=$LINENO as_lineno_1a=$LINENO [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
| pdb.py | 38 lineno = 1
45 answer = funcname, filename, lineno
47 lineno = lineno + 1
112 self.lineno = None
345 # break [ ([filename:]lineno | function) [, "condition"] ]
356 lineno = None
363 # parse stuff before comma: [filename:]lineno | function
377 lineno = int(arg)
379 print >>self.stdout, '*** Bad lineno:', arg [all...] |
| /external/python/cpython2/Lib/ |
| pdb.py | 38 lineno = 1 45 answer = funcname, filename, lineno 47 lineno = lineno + 1 112 self.lineno = None 345 # break [ ([filename:]lineno | function) [, "condition"] ] 356 lineno = None 363 # parse stuff before comma: [filename:]lineno | function 377 lineno = int(arg) 379 print >>self.stdout, '*** Bad lineno:', ar [all...] |
| /external/syslinux/com32/cmenu/ |
| menugen.py | 103 print("Error before line %d" % self.lineno) 111 msg = ["Unknown attribute %s in line %d" % (name,self.lineno)] 115 msg = [ "Unrecognized type %s in line %d" % (value,self.lineno)] 120 msg = [ "Invalid shortcut char '%s' in line %d" % (value,self.lineno) ] 128 return "Value of %s in line %d must be an integer" % (name,self.lineno) 238 self.lineno = 0 241 self.lineno = self.lineno + 1 262 print("Syntax error in line %d" % self.lineno) 269 print("Error while parsing line %d: %s" % (self.lineno,line) [all...] |
| /prebuilts/gdb/darwin-x86/lib/python2.7/ |
| pdb.py | 38 lineno = 1 45 answer = funcname, filename, lineno 47 lineno = lineno + 1 112 self.lineno = None 345 # break [ ([filename:]lineno | function) [, "condition"] ] 356 lineno = None 363 # parse stuff before comma: [filename:]lineno | function 377 lineno = int(arg) 379 print >>self.stdout, '*** Bad lineno:', ar [all...] |
| /prebuilts/gdb/linux-x86/lib/python2.7/ |
| pdb.py | 38 lineno = 1 45 answer = funcname, filename, lineno 47 lineno = lineno + 1 112 self.lineno = None 345 # break [ ([filename:]lineno | function) [, "condition"] ] 356 lineno = None 363 # parse stuff before comma: [filename:]lineno | function 377 lineno = int(arg) 379 print >>self.stdout, '*** Bad lineno:', ar [all...] |
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
| pdb.py | 38 lineno = 1 45 answer = funcname, filename, lineno 47 lineno = lineno + 1 112 self.lineno = None 345 # break [ ([filename:]lineno | function) [, "condition"] ] 356 lineno = None 363 # parse stuff before comma: [filename:]lineno | function 377 lineno = int(arg) 379 print >>self.stdout, '*** Bad lineno:', ar [all...] |
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
| pdb.py | 38 lineno = 1 45 answer = funcname, filename, lineno 47 lineno = lineno + 1 112 self.lineno = None 345 # break [ ([filename:]lineno | function) [, "condition"] ] 356 lineno = None 363 # parse stuff before comma: [filename:]lineno | function 377 lineno = int(arg) 379 print >>self.stdout, '*** Bad lineno:', ar [all...] |
| /external/boringssl/src/util/ |
| doc.go | 84 func extractComment(lines []string, lineNo int) (comment []string, rest []string, restLineNo int, err error) { 86 return nil, lines, lineNo, nil 89 restLineNo = lineNo 158 func extractDecl(lines []string, lineNo int) (decl string, rest []string, restLineNo int, err error) { 160 return "", lines, lineNo, nil 164 restLineNo = lineNo 294 lineNo := 1 299 lineNo += i + 1 312 lineNo += 2 323 lineNo += [all...] |
| /toolchain/binutils/binutils-2.27/intl/ |
| configure | 168 as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO 169 as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO 357 # as_fn_error ERROR [LINENO LOG_FD] 359 # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are 360 # provided, also output the error to LOG_FD, referencing LINENO. Then exit the 367 $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 419 as_lineno_1=$LINENO as_lineno_1a=$LINENO [all...] |
| /prebuilts/misc/windows/sdl2/test/ |
| configure | 195 as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO 196 as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO 402 # as_fn_error STATUS ERROR [LINENO LOG_FD] 404 # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are 405 # provided, also output the error to LOG_FD, referencing LINENO. Then exit the 412 $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 464 as_lineno_1=$LINENO as_lineno_1a=$LINENO [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/ |
| parsetok.c | 126 warn(const char *msg, const char *filename, int lineno)
130 PySys_WriteStderr(msg, filename, lineno);
211 PyParser_AddToken(ps, (int)type, str, tok->lineno, col_offset,
234 if (tok->lineno <= 1 && tok->done == E_EOF)
236 err_ret->lineno = tok->lineno;
290 err_ret->lineno = 0;
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/ |
| classfix.py | 94 lineno = 0
98 lineno = lineno + 1
103 lineno = lineno + 1
114 lineno = 0
117 rep(repr(lineno) + '\n')
|
| /external/boringssl/src/crypto/err/ |
| err_data_generate.go | 183 lineNo := 0 185 lineNo++ 193 return fmt.Errorf("bad line %d in %s: found %d values but want 3", lineNo, filename, len(parts)) 197 return fmt.Errorf("bad line %d in %s: unknown library", lineNo, filename) 200 return fmt.Errorf("bad line %d in %s: library value too large", lineNo, filename) 204 return fmt.Errorf("bad line %d in %s: %s", lineNo, filename, err) 207 return fmt.Errorf("bad line %d in %s: key too large", lineNo, filename)
|
| /external/python/cpython2/Lib/idlelib/ |
| ClassBrowser.py | 128 items.append((cl.lineno, s)) 180 if hasattr(self.cl, 'lineno'): 181 lineno = self.cl.lineno 182 edit.gotoline(lineno) 188 for name, lineno in self.cl.methods.items(): 189 items.append((lineno, name))
|
| ScriptBinding.py | 74 msgtxt, (lineno, start) = msg.args 75 self.editwin.gotoline(lineno) 105 msg, (errorfilename, lineno, offset, line) = err 107 err.args = msg, (filename, lineno, offset, line) 109 self.colorize_syntax_error(msg, lineno, offset) 118 def colorize_syntax_error(self, msg, lineno, offset): 120 pos = "0.0 + %d lines + %d chars" % (lineno-1, offset-1)
|
| /external/python/cpython2/Tools/scripts/ |
| classfix.py | 94 lineno = 0 98 lineno = lineno + 1 103 lineno = lineno + 1 114 lineno = 0 117 rep(repr(lineno) + '\n')
|