/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
parser.py | 45 # The line numbers of excluded lines of code. 48 # The line numbers of docstring lines. 51 # The line numbers of class definitions. 54 # A dict mapping line numbers to (lo,hi) for multi-line statements. 57 # The line numbers that start statements. 74 Returns a set of line numbers, the lines that contain a match for one 75 of the regexes in `regexes`. The entire line needn't match, just a 97 # multi-line statements. 125 # the same line as the colon [all...] |
/external/compiler-rt/BlocksRuntime/tests/ |
testfilerunner.m | 418 char *__strong parseRadar(char *line) { 419 line = strstr(line, "rdar:"); // returns beginning 420 char *endp = line + strlen("rdar:"); 423 return gcstrcpy2(line, endp); 426 - (void)parseLibraries:(const char *)line { 428 line = strstr(line, "-l"); 429 char *endp = (char *)line + 2; 432 [self addLibrary:gcstrcpy2(line, endp)] [all...] |
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
CharStream.as | 45 /** ANTLR tracks the line information automatically */ 46 function get line():int; 48 /** Because this stream can rewind, we need to be able to reset the line */ 49 function set line(line:int):void; 53 /** The index of the character relative to the beginning of the line 0..n-1 */
|
Token.as | 38 /** The line number on which this token was matched; line=1..n */ 39 function get line():int; 40 function set line(line:int):void; 42 /** The index of the first character relative to the beginning of the line 0..n-1 */
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
t025lexerRulePropertyRef.py | 22 text, type, line, pos, index, channel, start, stop = lexer.properties[0] 25 assert line == 1, lexer.properties[0] 32 text, type, line, pos, index, channel, start, stop = lexer.properties[1] 35 assert line == 1, lexer.properties[1] 42 text, type, line, pos, index, channel, start, stop = lexer.properties[2] 45 assert line == 2, lexer.properties[2]
|
/external/bison/m4/ |
getdelim.m4 | 38 char *line = NULL; 40 int len = getdelim (&line, &siz, '\n', in); 41 if (!(len == 4 && line && strcmp (line, "foo\n") == 0)) 47 char *line = NULL; 49 if (getdelim (&line, &siz, '\n', in) == -1)
|
getline.m4 | 45 char *line = NULL; 47 int len = getline (&line, &siz, in); 48 if (!(len == 4 && line && strcmp (line, "foo\n") == 0)) 54 char *line = NULL; 56 if (getline (&line, &siz, in) == -1)
|
/external/ceres-solver/internal/ceres/ |
line_search.h | 31 // Interface for and implementation of various Line search algorithms. 50 // Line search is another name for a one dimensional optimization 51 // algorithm. The name "line search" comes from the fact one 58 // condition used, we get a variety of different line search 80 // Armijo and Wolfe line search parameters. 82 // Solving the line search problem exactly is computationally 83 // prohibitive. Fortunately, line search based optimization 85 // exact solution, the line search algorithm returns a solution 93 // In each iteration of the Armijo / Wolfe line search, 103 // In each iteration of the Armijo / Wolfe line search [all...] |
/external/chromium/build/linux/ |
rewrite_dirs.py | 34 def RewriteLine(line, opts): 36 args = line.split() 62 for line in sys.stdin.readlines(): 63 line = RewriteLine(line.strip(), opts) 64 print line
|
/external/chromium_org/build/linux/ |
rewrite_dirs.py | 35 def RewriteLine(line, opts): 37 args = line.split() 64 for line in sys.stdin.readlines(): 65 line = RewriteLine(line.strip(), opts) 66 print line
|
/external/chromium_org/ppapi/generators/ |
idl_lexer.py | 119 # A line ending '\n', we use this to increment the line number 159 line = self.lexobj.lineno 161 # If that line has not been accounted for, then we must have hit 162 # EoF, so compute the beginning of the line that caused the problem. 163 if line >= len(self.index): 164 # Find the offset in the line of the first word causing the issue 166 offs = self.lines[line - 1].find(word) 167 # Add the computed line's starting position 171 pos = self.lexobj.lexpos - self.index[line] [all...] |
/external/chromium_org/tools/find_runtime_symbols/ |
static_symbols.py | 167 for line in f: 168 if line.rstrip() == 'Section Headers:': 174 for line in f: 175 line = line.rstrip() 176 matched = _READELF_SECTION_HEADER_PATTER.match(line) 192 if line in ('Key to Flags:', 'Program Headers:'): 196 for line in input_file: 197 splitted = line.rstrip().split(None, 2) 201 def _parse_nm_bsd_line(line) [all...] |
/external/chromium_org/tools/idl_parser/ |
idl_lexer.py | 122 # A line ending '\n', we use this to increment the line number 156 line = self.Lexer().lineno 158 # If that line has not been accounted for, then we must have hit 159 # EoF, so compute the beginning of the line that caused the problem. 160 if line >= len(self.index): 161 # Find the offset in the line of the first word causing the issue 163 offs = self.lines[line - 1].find(word) 164 # Add the computed line's starting position 168 pos = self.Lexer().lexpos - self.index[line] [all...] |
/external/chromium_org/v8/tools/ |
csvparser.js | 51 * Parses a line of CSV-encoded values. Returns an array of fields. 53 * @param {string} line Input line. 55 CsvParser.prototype.parseLine = function(line) { 59 var endPos = line.length; 63 var fieldMatch = fieldRe.exec(line.substr(pos));
|
/external/clang/bindings/python/examples/cindex/ |
cindex-includes.py | 13 A simple command line tool for dumping a Graphviz description (dot) that 45 line = " "; 49 line += name(i.include) 51 line += '%s->%s' % (name(i.source), name(i.include)) 52 line += "\n"; 53 out.write(line)
|
/external/clang/test/Sema/ |
warn-main-return-type.c | 14 // CHECK: fix-it:"{{.*}}":{[[@LINE-1]]:1-[[@LINE-1]]:5}:"int" 21 // CHECK: fix-it:"{{.*}}":{[[@LINE-1]]:1-[[@LINE-1]]:7}:"int" 32 // CHECK: fix-it:"{{.*}}":{[[@LINE-1]]:7-[[@LINE-1]]:12}:"int"
|
/external/compiler-rt/lib/ |
int_util.c | 30 void compilerrt_abort_impl(const char *file, int line, const char *function) { 31 panic("%s:%d: abort in %s", file, line, function); 38 int line, const char * message) __attribute__((noreturn)); 44 void compilerrt_abort_impl(const char *file, int line, const char *function) { 45 __assert_rtn(function, file, line, "libcompiler_rt abort"); 58 void compilerrt_abort_impl(const char *file, int line, const char *function) {
|
/external/linux-tools-perf/util/ |
probe-finder.h | 28 /* Find a line range */ 58 int lno; /* Line number */ 63 struct list_head lcache; /* Line cache for lazy match */ 91 struct line_range *lr; /* Target line range */ 94 int lno_s; /* Start line number */ 95 int lno_e; /* End line number */
|
/external/qemu/distrib/sdl-1.2.15/src/video/ataricommon/ |
SDL_ataric2p_s.h | 39 Uint32 srcpitch, /* Length of one source line in bytes */ 40 Uint32 dstpitch /* Length of one destination line in bytes */ 53 Uint32 srcpitch, /* Length of one source line in bytes */ 54 Uint32 dstpitch /* Length of one destination line in bytes */ 67 Uint32 srcpitch, /* Length of one source line in bytes */ 68 Uint32 dstpitch /* Length of one destination line in bytes */
|
/external/v8/tools/ |
csvparser.js | 51 * Parses a line of CSV-encoded values. Returns an array of fields. 53 * @param {string} line Input line. 55 CsvParser.prototype.parseLine = function(line) { 59 var endPos = line.length; 63 var fieldMatch = fieldRe.exec(line.substr(pos));
|
/frameworks/av/media/libstagefright/httplive/ |
M3UParser.h | 81 const AString &line, sp<AMessage> *meta, const char *key); 84 const AString &line, sp<AMessage> *meta, const char *key); 87 const AString &line, sp<AMessage> *meta) const; 90 const AString &line, sp<AMessage> *meta, const AString &baseURI); 93 const AString &line, uint64_t curOffset, 96 status_t parseMedia(const AString &line);
|
/hardware/broadcom/libbt/src/ |
conf.c | 99 char line[CONF_MAX_LINE_LEN+1]; /* add 1 for \0 char */ local 105 /* read line by line */ 106 while (fgets(line, CONF_MAX_LINE_LEN+1, p_file) != NULL) 108 if (line[0] == CONF_COMMENT) 111 p_name = strtok(line, CONF_DELIMITERS);
|
/hardware/samsung_slsi/exynos5/libmemtrack/ |
mali.c | 49 char line[1024]; local 67 if (fgets(line, sizeof(line), fp) == NULL) { 77 if (line[0] == ' ' && line[1] == ' ') { 82 int ret = sscanf(line, " %*s %u %*u %u %u\n",
|
/hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/ |
OMX_DebugMem.h | 16 const char* file, const char* func, int line); 18 const char* file, const char* func, int line); 20 const char* file, const char* func, int line); 22 const char* file, const char* func, int line); 24 const char* file, const char* func, int line); 26 void OMX_DebugMem_dump(const char *file, const char *func, int line);
|
/hardware/ti/omap4xxx/domx/omx_core/inc/ |
OMX_DebugMem.h | 40 const char* file, const char* func, int line); 42 const char* file, const char* func, int line); 44 const char* file, const char* func, int line); 46 const char* file, const char* func, int line); 48 const char* file, const char* func, int line); 50 void OMX_DebugMem_dump(const char *file, const char *func, int line);
|