Home
last modified time | relevance | path

Searched refs:lineno (Results 1 – 25 of 85) sorted by relevance

1234

/external/webkit/JavaScriptCore/debugger/
DDebugger.h44 virtual void exception(const DebuggerCallFrame&, intptr_t sourceID, int lineno) = 0;
45 virtual void atStatement(const DebuggerCallFrame&, intptr_t sourceID, int lineno) = 0;
46 virtual void callEvent(const DebuggerCallFrame&, intptr_t sourceID, int lineno) = 0;
47 virtual void returnEvent(const DebuggerCallFrame&, intptr_t sourceID, int lineno) = 0;
49 … virtual void willExecuteProgram(const DebuggerCallFrame&, intptr_t sourceID, int lineno) = 0;
50 virtual void didExecuteProgram(const DebuggerCallFrame&, intptr_t sourceID, int lineno) = 0;
51 … virtual void didReachBreakpoint(const DebuggerCallFrame&, intptr_t sourceID, int lineno) = 0;
/external/clearsilver/util/
Dneo_err.c97 NEOERR *nerr_raisef (const char *func, const char *file, int lineno, int error, in nerr_raisef() argument
114 err->lineno = lineno; in nerr_raisef()
119 NEOERR *nerr_raise_errnof (const char *func, const char *file, int lineno, in nerr_raise_errnof() argument
141 err->lineno = lineno; in nerr_raise_errnof()
146 NEOERR *nerr_passf (const char *func, const char *file, int lineno, NEOERR *err) in nerr_passf() argument
160 nerr->lineno = lineno; in nerr_passf()
166 NEOERR *nerr_pass_ctxf (const char *func, const char *file, int lineno, in nerr_pass_ctxf() argument
186 nerr->lineno = lineno; in nerr_pass_ctxf()
233 err->lineno, err->func, err_name, err->desc); in nerr_log_error()
238 err->lineno, err->func); in nerr_log_error()
[all …]
Dneo_err.h58 int lineno; member
94 NEOERR *nerr_raisef (const char *func, const char *file, int lineno,
108 NEOERR *nerr_raise_errnof (const char *func, const char *file, int lineno,
124 NEOERR *nerr_passf (const char *func, const char *file, int lineno,
148 NEOERR *nerr_pass_ctxf (const char *func, const char *file, int lineno,
Dneo_hdf.c1559 const char *path, int *lineno, int include_handle) in _hdf_read_string() argument
1574 (*lineno)++; in _hdf_read_string()
1583 *lineno); in _hdf_read_string()
1599 return nerr_pass_ctx(err, "In file %s:%d", path, *lineno); in _hdf_read_string()
1613 "[%s:%d] Trailing garbage on line following }: %s", path, *lineno, in _hdf_read_string()
1634 return nerr_pass_ctx(err, "In file %s:%d", path, *lineno); in _hdf_read_string()
1647 return nerr_pass_ctx(err, "In file %s:%d", path, *lineno); in _hdf_read_string()
1660 return nerr_pass_ctx(err, "In file %s:%d", path, *lineno); in _hdf_read_string()
1672 return nerr_pass_ctx(err, "In file %s:%d", path, *lineno); in _hdf_read_string()
1690 return nerr_pass_ctx(err, "In file %s:%d", path, *lineno); in _hdf_read_string()
[all …]
/external/webkit/JavaScriptCore/bytecode/
DSamplingTool.cpp358 int lineno = 0; in dump() local
359 …signed,unsigned>::iterator iter = lineCounts.begin(); iter != lineCounts.end(); ++iter, ++lineno) { in dump()
360 lineCountInfo[lineno].line = iter->first; in dump()
361 lineCountInfo[lineno].count = iter->second; in dump()
366 for (lineno = 0; lineno < linesCount; ++lineno) { in dump()
367 …rintf(" Line #%d has sample count %d.\n", lineCountInfo[lineno].line, lineCountInfo[lineno].cou… in dump()
/external/bison/src/
Dscan-skel.l66 int lineno IF_LINT (= 0);
94 lineno = 1;
101 "@oline@" fprintf (yyout, "%d", lineno + 1);
109 \n lineno++; ECHO;
/external/webkit/WebCore/bridge/
Dtestqtbindings.cpp119 int lineno = -1; in main() local
123 lineno = int(lineVal->toNumber(exec)); in main()
125 if (lineno != -1) in main()
126 fprintf(stderr,"Exception, line %d: %s\n",lineno,msg); in main()
Dtestbindings.cpp397 int lineno = -1; in main() local
401 lineno = int(lineVal.toNumber(exec)); in main()
403 if (lineno != -1) in main()
404 fprintf(stderr,"Exception, line %d: %s\n",lineno,msg); in main()
Dtestbindings.mm265 int lineno = -1;
269 lineno = int(lineVal.toNumber(exec));
271 if (lineno != -1)
272 fprintf(stderr,"Exception, line %d: %s\n",lineno,msg);
/external/webkit/WebKit/mac/WebView/
DWebScriptDebugDelegate.h85 line:(int)lineno
91 line:(int)lineno
97 line:(int)lineno
103 line:(int)lineno
DWebScriptDebugger.h61 virtual void willExecuteProgram(const JSC::DebuggerCallFrame&, intptr_t sourceID, int lineno);
62 virtual void didExecuteProgram(const JSC::DebuggerCallFrame&, intptr_t sourceID, int lineno);
63 virtual void didReachBreakpoint(const JSC::DebuggerCallFrame&, intptr_t sourceID, int lineno);
/external/srec/config/en.us/dictionary/
Dcmu2nuance.cpp46 for (int lineno = 1; NULL != fgets(line, sizeof(line), stdin); lineno++) in main() local
51 fprintf(stderr, "warning: ignoring line %d - %s", lineno, line); in main()
60 fprintf(stderr, "can't read name at line %d\n", lineno); in main()
177 fprintf(stderr, "can't pronounce line %d: %s", lineno, p); in main()
/external/clearsilver/scripts/
Dcs_lint.py18 lineno = self.lineno(self.data, self.at)
19 print "-E- [%s:%d] %s" % (self.context, lineno, s)
26 lineno = self.lineno(self.data, self.at)
27 print "-W- [%s:%d] %s" % (self.context, lineno, s)
54 def lineno(self, data, i): member in ClearSilverChecker
/external/webkit/WebCore/inspector/
DJavaScriptDebugServer.h111 … virtual void willExecuteProgram(const JSC::DebuggerCallFrame&, intptr_t sourceID, int lineno);
112 … virtual void didExecuteProgram(const JSC::DebuggerCallFrame&, intptr_t sourceID, int lineno);
113 … virtual void didReachBreakpoint(const JSC::DebuggerCallFrame&, intptr_t sourceID, int lineno);
/external/qemu/android/utils/
Dini.c173 int lineno = 0; in iniFile_newFromMemory() local
186 lineno += 1; in iniFile_newFromMemory()
202 lineno); in iniFile_newFromMemory()
215 lineno); in iniFile_newFromMemory()
236 D("%4d: KEY='%.*s' VALUE='%.*s'", lineno, in iniFile_newFromMemory()
/external/expat/tests/
Druntests.c70 char *file, int lineno) in _expect_failure() argument
75 _fail_unless(0, file, lineno, errorMessage); in _expect_failure()
77 _xml_failure(parser, file, lineno); in _expect_failure()
410 XML_Size lineno; in START_TEST() local
414 lineno = XML_GetCurrentLineNumber(parser); in START_TEST()
415 if (lineno != 4) { in START_TEST()
418 "expected 4 lines, saw %" XML_FMT_INT_MOD "u", lineno); in START_TEST()
514 XML_Size lineno; in START_TEST() local
518 lineno = XML_GetCurrentLineNumber(parser); in START_TEST()
519 if (lineno != 3) { in START_TEST()
[all …]
Dminicheck.c98 _check_set_test_info(char const *function, char const *filename, int lineno) in _check_set_test_info() argument
101 _check_current_lineno = lineno; in _check_set_test_info()
/external/bluetooth/bluez/rfcomm/
Dlexer.l73 lineno++;
108 lineno++;
Dparser.y137 fprintf(stderr, "%s line %d\n", s, lineno);
165 lineno = 1; in rfcomm_read_config()
Dkword.h24 extern int lineno;
Dkword.c38 int lineno; variable
/external/e2fsprogs/lib/blkid/
Dread.c384 int fd, lineno = 0; in blkid_read_cache() local
416 lineno++; in blkid_read_cache()
424 lineno++; in blkid_read_cache()
429 printf("blkid: bad format on line %d\n", lineno)); in blkid_read_cache()
/external/elfutils/src/
Dnm.c565 Dwarf_Word lineno; member
682 Dwarf_Word lineno; in get_local_names() local
684 if (dwarf_formudata (attr, &lineno) != 0 || lineno == 0) in get_local_names()
706 newp->lineno = lineno; in get_local_names()
1104 int lineno; in show_symbols() local
1105 (void) dwarf_lineno (line, &lineno); in show_symbols()
1111 lineno, '\0'); in show_symbols()
1140 (*found)->lineno, in show_symbols()
/external/webkit/WebCore/bindings/js/
DScriptController.h85 void setEventHandlerLineNumber(int lineno) { m_handlerLineNumber = lineno; } in setEventHandlerLineNumber() argument
/external/qemu/
Dcbuffer.c29 cbuffer_assert( CBuffer* cb, const char* file, long lineno ) in cbuffer_assert() argument
43 file, lineno, reason, cb->rpos, cb->count, cb->size); in cbuffer_assert()

1234