HomeSort by relevance Sort by last modified time
    Searched defs:line (Results 226 - 250 of 1500) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/tools/traceline/traceline/
sym_resolver.h 141 IMAGEHLP_LINE64 line; local
143 proc_, static_cast<DWORD64>(ptr), &disp, &line)) {
145 name.append(line.FileName);
147 _itoa_s(line.LineNumber, buf, sizeof(buf), 10);
  /external/chromium_org/v8/test/mjsunit/
debug-sourceinfo.js 29 // For this test to work this file MUST have CR LF line endings.
68 // This is the last line of entire file (note: starting at 0).
70 // This is the last column of last line (note: starting at 0 and +2, due
74 // This magic number is the length or the first line comment (actually number
82 // The position of the first line of d(), i.e. "x = 1 ;".
84 // The line # of the first line of d() (note: starting at 0).
102 // Test that when running through source positions the position, line and
105 var line; variable
111 if (line == location.line) {
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_suppressions.cc 94 const char *line = str; local
95 while (line) {
96 while (line[0] == ' ' || line[0] == '\t')
97 line++;
98 const char *end = internal_strchr(line, '\n');
100 end = line + internal_strlen(line);
101 if (line != end && line[0] != '#')
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
SourcePosition.java 24 * line number and original bytecode address.
41 * {@code >= -1;} the line number, or {@code -1} if that
44 private final int line; field in class:SourcePosition
53 * @param line {@code >= -1;} original line number or {@code -1} if
56 public SourcePosition(CstString sourceFile, int address, int line) {
61 if (line < -1) {
62 throw new IllegalArgumentException("line < -1");
67 this.line = line;
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
HexParser.java 32 * corresponding to the text. The format is simple: Each line may
36 * is encountered, it and the rest of the line are ignored as a
57 String line; local
59 line = src.substring(at, poundAt);
61 line = src.substring(at, nlAt);
65 int colonAt = line.indexOf(':');
69 int quoteAt = line.indexOf('\"');
74 String atStr = line.substring(0, colonAt).trim();
75 line = line.substring(colonAt + 1)
    [all...]
  /external/doclava/src/com/google/doclava/
Doclava2.java 53 String line = buf.readLine(); local
56 while (line != null) {
57 String[] names = line.split(" ");
63 line = buf.readLine();
  /external/dropbear/
cli-kex.c 217 buffer * line = NULL; local
227 line = buf_new(MAX_KNOWNHOSTS_LINE);
232 if (buf_getline(line, hostsfile) == DROPBEAR_FAILURE) {
233 TRACE(("failed reading line: prob EOF"))
237 /* The line is too short to be sensible */
241 if (line->len < (hostlen+30) ) {
242 TRACE(("line is too short to be sensible"))
247 if (strncmp(cli_opts.remotehost, buf_getptr(line, hostlen),
253 buf_incrpos(line, hostlen);
254 if (buf_getbyte(line) != ' ')
    [all...]
svr-authpubkey.c 40 #define MAX_AUTHKEYS_LINE 4200 /* max length of a line in authkeys */
160 buffer * line = NULL; local
195 line = buf_new(MAX_AUTHKEYS_LINE);
200 if (buf_getline(line, authfile) == DROPBEAR_FAILURE) {
206 if (line->len < MIN_AUTHKEYS_LINE) {
207 TRACE(("checkpubkey: line too short"))
208 continue; /* line is too short for it to be a valid key */
213 if (strncmp(buf_getptr(line, algolen), algo, algolen) != 0) {
216 buf_incrpos(line, algolen);
219 if (buf_getbyte(line) != ' ')
    [all...]
  /external/e2fsprogs/lib/ss/
listen.c 58 char *line; local
77 line = (*info->readline)(current_info->prompt);
81 line = input;
83 line = NULL;
87 if (line == NULL) {
93 cp = strchr(line, '\n');
96 if (cp == line)
101 (*info->add_history)(line);
103 code = ss_execute_line (sci_idx, line);
105 register char *c = line;
    [all...]
  /external/elfutils/tests/
get-lines.c 95 printf ("%s: cannot get individual line\n", argv[cnt]);
104 int line; local
105 if (dwarf_lineno (l, &line) != 0)
106 line = 0;
109 file ?: "???", line);
  /external/freetype/src/base/
ftlcdfil.c 46 FT_Byte* line = bitmap->buffer; local
49 for ( ; height > 0; height--, line += bitmap->pitch )
55 val1 = line[0];
62 val1 = line[1];
73 val = line[xx];
82 line[xx - 2] = (FT_Byte)pix;
91 line[xx - 2] = (FT_Byte)pix;
95 line[xx - 1] = (FT_Byte)pix;
189 FT_Byte* line = bitmap->buffer; local
192 for ( ; height > 0; height--, line += pitch
    [all...]
  /external/ganymed-ssh2/examples/
BasicWithHTTPProxy.java 73 String line = br.readLine(); local
74 if (line == null)
76 System.out.println(line);
  /external/icu4c/tools/gennorm2/
gennorm2.cpp 81 /* preset then read command line options */
88 "error in command line argument \"%s\"\n",
190 char line[300]; local
192 while(NULL!=fgets(line, (int)sizeof(line), f)) {
193 char *comment=(char *)strchr(line, '#');
197 u_rtrim(line);
198 if(line[0]==0) {
201 if(line[0]=='*') {
202 const char *s=u_skipWhitespace(line+1)
    [all...]
  /external/icu4c/tools/toolutil/
uparse.c 78 char line[300]; local
102 while(T_FileStream_readLine(file, line, sizeof(line))!=NULL) {
104 length=(int32_t)(u_rtrim(line)-line);
107 * detect a line with # @missing:
108 * start parsing after that, or else from the beginning of the line
111 start=(char *)getMissingLimit(line);
112 if(start==line) {
118 /* skip this line if it is empty or a comment *
    [all...]
  /external/iproute2/ip/
ip.c 107 char *line = NULL; local
125 while (getcmdline(&line, &len, stdin) != -1) {
129 largc = makeargs(line, largv, 100);
131 continue; /* blank line */
140 if (line)
141 free(line);
  /external/ipsec-tools/src/racoon/
backupsa.c 205 int line; local
223 for(line = 1; fgets(buf, sizeof(buf), fp) != NULL; line++) {
224 /* comment line */
233 "illegal format line#%d in %s: %s\n",
234 line, lcconf->pathinfo[LC_PATHTYPE_BACKUPSA],
289 "illegal format(keymat) line#%d in %s: %s\n",
290 line, lcconf->pathinfo[LC_PATHTYPE_BACKUPSA],
297 "ignore this line#%d in %s due to expiration\n",
298 line, lcconf->pathinfo[LC_PATHTYPE_BACKUPSA])
    [all...]
  /external/javassist/src/main/javassist/bytecode/
LineNumberAttribute.java 52 * for a new line in the original source file begins.
62 * This represents the corresponding line number in the original
72 * Returns the line number corresponding to the specified bytecode.
91 * the specified line begins.
93 * @param line the line number.
94 * @return -1 if the specified line is not found.
96 public int toStartPc(int line) {
99 if (line == lineNumber(i))
114 * The line number
116 public int line; field in class:LineNumberAttribute.Pc
    [all...]
  /external/javassist/src/test/test/javassist/bytecode/analysis/
ErrorFinder.java 31 String line = lineReader.readLine(); local
32 while (line != null) {
33 analyzeClass(pool, line);
34 line = lineReader.readLine();
  /external/libcap-ng/libcap-ng-0.7/utils/
pscap.c 124 int line; local
130 line = 0;
135 if (line == 0) {
136 line++;
  /external/libvorbis/vq/
distribution.c 25 /* command line:
42 char *line; local
163 line=setup_line(in);
164 while(line){
172 while(!flag && sscanf(line,"%f",&code)==1){
173 line=strchr(line,',');
178 while(line && sscanf(line,"%f",&code)==1){
179 line=strchr(line,',')
    [all...]
latticebuild.c 30 command line:
64 char *line,*name; local
71 fprintf(stderr,"Need a lattice description file on the command line.\n");
97 line=get_line(in);
98 if(sscanf(line,"%d %d %d %d",&quantvals,&dim,&addmul,&sequencep)!=4){
99 if(sscanf(line,"%d %d %d",&quantvals,&dim,&addmul)!=3){
100 fprintf(stderr,"Syntax error reading description file (line 1)\n");
118 line=setup_line(in);
121 if(!line || sscanf(line,"%lf",quantlist+j)!=1)
    [all...]
latticetune.c 34 command line:
47 char *line,*name; local
51 fprintf(stderr,"Need a lattice codebook on the command line.\n");
55 fprintf(stderr,"Need a codeword data file on the command line.\n");
96 line=setup_line(in);
97 while(line){
102 if(sscanf(line,"%ld",&code)==1)
105 line=setup_line(in);
112 line=setup_line(in);
113 while(line){
    [all...]
  /external/libvpx/libvpx/vpx_mem/include/
vpx_mem_tracker.h 29 line; member in struct:mem_block
65 char * file, unsigned int line)
69 line - the line in file addr was referenced from
70 Adds memory address addr, it's size, file and line it came from
74 char *file, unsigned int line,
78 vpx_memory_tracker_add(size_t addr, unsigned int size, char * file, unsigned int line)
114 fail, the filename and line of the check will be printed out.
116 void vpx_memory_tracker_check_integrity(char *file, unsigned int line);
  /external/linux-tools-perf/util/
annotate.h 23 char *line; member in struct:objdump_line
44 * @lines: If 'print_lines' is specified, per source code line percentages
  /external/marisa-trie/tools/
marisa-build.cc 42 std::string line; local
43 while (std::getline(*input, line)) {
44 const std::string::size_type delim_pos = line.find_last_of('\t');
45 if (delim_pos != line.npos) {
47 key.second = std::strtod(&line[delim_pos + 1], &end_of_value);
49 line.resize(delim_pos);
56 key.first = line;
82 std::cerr << ex.filename() << ':' << ex.line() << ": " << ex.what()
96 std::cerr << ex.filename() << ':' << ex.line() << ": " << ex.what()
105 std::cerr << ex.filename() << ':' << ex.line() << ": " << ex.what(
    [all...]

Completed in 2298 milliseconds

1 2 3 4 5 6 7 8 91011>>