HomeSort by relevance Sort by last modified time
    Searched full:lineno (Results 26 - 50 of 2047) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/base/tools/streaming_proto/
Errors.h 15 Error(const string& filename, int lineno, const char* message);
18 int lineno; member in struct:android::stream_proto::Error
29 void Add(const string& filename, int lineno, const char* format, ...);
39 void AddImpl(const string& filename, int lineno, const char* format, va_list ap);
  /development/tools/bugreport/src/com/android/bugreport/util/
Line.java 26 public int lineno; field in class:Line
30 * Construct a new Line no lineno or text.
36 * Construct a new Line with the supplied lineno and text.
38 public Line(int lineno, String text) {
39 this.lineno = lineno;
  /external/libmojo/mojo/public/tools/bindings/pylib/mojom/
error.py 8 def __init__(self, filename, message, lineno=None, addenda=None, **kwargs):
10 error message, |lineno| is the 1-based line number (or |None| if not
16 self.lineno = lineno
20 if self.lineno:
21 s = "%s:%d: Error: %s" % (self.filename, self.lineno, self.message)
  /external/python/cpython3/Include/
Python-ast.h 203 int lineno; member in struct:_stmt
363 int lineno; member in struct:_expr
406 int lineno; member in struct:_excepthandler
422 int lineno; member in struct:_arg
452 asdl_seq * decorator_list, expr_ty returns, int lineno,
457 int lineno, int col_offset, PyArena *arena);
460 asdl_seq * body, asdl_seq * decorator_list, int lineno,
463 stmt_ty _Py_Return(expr_ty value, int lineno, int col_offset, PyArena *arena);
465 stmt_ty _Py_Delete(asdl_seq * targets, int lineno, int col_offset, PyArena
468 stmt_ty _Py_Assign(asdl_seq * targets, expr_ty value, int lineno, in
    [all...]
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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...]
  /external/ltp/testcases/kernel/syscalls/ipc/libnewipc/
libnewipc.c 39 key_t getipckey(const char *file, const int lineno)
54 "ftok() failed at %s:%d", file, lineno);
60 int get_used_queues(const char *file, const int lineno)
69 "fopen() failed at %s:%d", file, lineno);
79 "used message queues at %s:%d", file, lineno);
85 void *probe_free_addr(const char *file, const int lineno)
95 tst_brk(TBROK, "probe: shmget() failed at %s:%d", file, lineno);
99 tst_brk(TBROK, "probe: shmat() failed at %s:%d", file, lineno);
102 tst_brk(TBROK, "probe: shmdt() failed at %s:%d", file, lineno);
105 tst_brk(TBROK, "probe: shmctl() failed at %s:%d", file, lineno);
    [all...]
  /frameworks/minikin/include/minikin/
AndroidLineBreakerHelper.h 40 float getAt(size_t lineNo) const override {
41 const float width = ((ssize_t)lineNo < (ssize_t)mFirstLineCount) ? mFirstWidth : mRestWidth;
42 return std::max(0.0f, width - get(mIndents, lineNo));
51 for (size_t lineNo = 1; lineNo + mOffset < mIndents.size(); lineNo++) {
52 minWidth = std::min(minWidth, getAt(lineNo));
57 float getLeftPaddingAt(size_t lineNo) const override { return get(mLeftPaddings, lineNo); }
59 float getRightPaddingAt(size_t lineNo) const override { return get(mRightPaddings, lineNo);
    [all...]
  /external/ltp/include/
safe_net_fn.h 31 int safe_socket(const char *file, const int lineno, void (cleanup_fn)(void),
34 int safe_setsockopt(const char *file, const int lineno, int sockfd, int level,
37 ssize_t safe_send(const char *file, const int lineno, char len_strict,
40 ssize_t safe_sendto(const char *file, const int lineno, char len_strict,
44 int safe_bind(const char *file, const int lineno, void (cleanup_fn)(void),
48 int safe_listen(const char *file, const int lineno, void (cleanup_fn)(void),
51 int safe_connect(const char *file, const int lineno, void (cleanup_fn)(void),
54 int safe_getsockname(const char *file, const int lineno,
58 int safe_gethostname(const char *file, const int lineno,
  /external/ltp/lib/
safe_stdio.c 26 FILE *safe_fopen(const char *file, const int lineno, void (cleanup_fn)(void),
34 file, lineno, path, mode);
40 int safe_fclose(const char *file, const int lineno, void (cleanup_fn)(void),
49 "%s:%d: fclose(%p) failed", file, lineno, f);
55 int safe_asprintf(const char *file, const int lineno, void (cleanup_fn)(void),
67 "%s:%d: asprintf(%s,...) failed", file, lineno, fmt);
73 FILE *safe_popen(const char *file, const int lineno, void (cleanup_fn)(void),
86 file, lineno, command, type);
90 file, lineno, command, type);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
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/python/cpython2/Lib/compiler/
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/gdb/darwin-x86/lib/python2.7/compiler/
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/gdb/linux-x86/lib/python2.7/compiler/
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/darwin-x86/2.7.5/lib/python2.7/compiler/
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/
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
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Python-ast.h 183 int lineno; member in struct:_stmt
311 int lineno; member in struct:_expr
353 int lineno; member in struct:_excepthandler
385 asdl_seq * decorator_list, int lineno, int col_offset,
389 asdl_seq * decorator_list, int lineno, int col_offset,
392 stmt_ty _Py_Return(expr_ty value, int lineno, int col_offset, PyArena *arena);
394 stmt_ty _Py_Delete(asdl_seq * targets, int lineno, int col_offset, PyArena
397 stmt_ty _Py_Assign(asdl_seq * targets, expr_ty value, int lineno, int
401 lineno, int col_offset, PyArena *arena);
403 stmt_ty _Py_Print(expr_ty dest, asdl_seq * values, bool nl, int lineno, int
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Python-ast.h 183 int lineno; member in struct:_stmt
311 int lineno; member in struct:_expr
353 int lineno; member in struct:_excepthandler
385 asdl_seq * decorator_list, int lineno, int col_offset,
389 asdl_seq * decorator_list, int lineno, int col_offset,
392 stmt_ty _Py_Return(expr_ty value, int lineno, int col_offset, PyArena *arena);
394 stmt_ty _Py_Delete(asdl_seq * targets, int lineno, int col_offset, PyArena
397 stmt_ty _Py_Assign(asdl_seq * targets, expr_ty value, int lineno, int
401 lineno, int col_offset, PyArena *arena);
403 stmt_ty _Py_Print(expr_ty dest, asdl_seq * values, bool nl, int lineno, int
    [all...]
  /external/python/cpython2/Include/
Python-ast.h 183 int lineno; member in struct:_stmt
311 int lineno; member in struct:_expr
353 int lineno; member in struct:_excepthandler
385 asdl_seq * decorator_list, int lineno, int col_offset,
389 asdl_seq * decorator_list, int lineno, int col_offset,
392 stmt_ty _Py_Return(expr_ty value, int lineno, int col_offset, PyArena *arena);
394 stmt_ty _Py_Delete(asdl_seq * targets, int lineno, int col_offset, PyArena
397 stmt_ty _Py_Assign(asdl_seq * targets, expr_ty value, int lineno, int
401 lineno, int col_offset, PyArena *arena);
403 stmt_ty _Py_Print(expr_ty dest, asdl_seq * values, bool nl, int lineno, in
    [all...]
  /prebuilts/gdb/darwin-x86/include/python2.7/
Python-ast.h 183 int lineno; member in struct:_stmt
311 int lineno; member in struct:_expr
353 int lineno; member in struct:_excepthandler
385 asdl_seq * decorator_list, int lineno, int col_offset,
389 asdl_seq * decorator_list, int lineno, int col_offset,
392 stmt_ty _Py_Return(expr_ty value, int lineno, int col_offset, PyArena *arena);
394 stmt_ty _Py_Delete(asdl_seq * targets, int lineno, int col_offset, PyArena
397 stmt_ty _Py_Assign(asdl_seq * targets, expr_ty value, int lineno, int
401 lineno, int col_offset, PyArena *arena);
403 stmt_ty _Py_Print(expr_ty dest, asdl_seq * values, bool nl, int lineno, in
    [all...]
  /prebuilts/gdb/linux-x86/include/python2.7/
Python-ast.h 183 int lineno; member in struct:_stmt
311 int lineno; member in struct:_expr
353 int lineno; member in struct:_excepthandler
385 asdl_seq * decorator_list, int lineno, int col_offset,
389 asdl_seq * decorator_list, int lineno, int col_offset,
392 stmt_ty _Py_Return(expr_ty value, int lineno, int col_offset, PyArena *arena);
394 stmt_ty _Py_Delete(asdl_seq * targets, int lineno, int col_offset, PyArena
397 stmt_ty _Py_Assign(asdl_seq * targets, expr_ty value, int lineno, int
401 lineno, int col_offset, PyArena *arena);
403 stmt_ty _Py_Print(expr_ty dest, asdl_seq * values, bool nl, int lineno, in
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
Python-ast.h 183 int lineno; member in struct:_stmt
311 int lineno; member in struct:_expr
353 int lineno; member in struct:_excepthandler
385 asdl_seq * decorator_list, int lineno, int col_offset,
389 asdl_seq * decorator_list, int lineno, int col_offset,
392 stmt_ty _Py_Return(expr_ty value, int lineno, int col_offset, PyArena *arena);
394 stmt_ty _Py_Delete(asdl_seq * targets, int lineno, int col_offset, PyArena
397 stmt_ty _Py_Assign(asdl_seq * targets, expr_ty value, int lineno, int
401 lineno, int col_offset, PyArena *arena);
403 stmt_ty _Py_Print(expr_ty dest, asdl_seq * values, bool nl, int lineno, in
    [all...]
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
Python-ast.h 183 int lineno; member in struct:_stmt
311 int lineno; member in struct:_expr
353 int lineno; member in struct:_excepthandler
385 asdl_seq * decorator_list, int lineno, int col_offset,
389 asdl_seq * decorator_list, int lineno, int col_offset,
392 stmt_ty _Py_Return(expr_ty value, int lineno, int col_offset, PyArena *arena);
394 stmt_ty _Py_Delete(asdl_seq * targets, int lineno, int col_offset, PyArena
397 stmt_ty _Py_Assign(asdl_seq * targets, expr_ty value, int lineno, int
401 lineno, int col_offset, PyArena *arena);
403 stmt_ty _Py_Print(expr_ty dest, asdl_seq * values, bool nl, int lineno, in
    [all...]

Completed in 752 milliseconds

12 3 4 5 6 7 8 91011>>