HomeSort by relevance Sort by last modified time
    Searched defs:line (Results 76 - 100 of 4596) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/compiler-rt/lib/asan/scripts/
symbolize.py 24 address often belongs to the next source code line, or even to a different
43 def symbolize_addr2line(line, binary_prefix, paths_to_cut):
46 line = re.sub(r'^.*?: ', '', line)
48 match = re.match(r'^(\s*#)([0-9]+) *(0x[0-9a-f]+) *\((.*)\+(0x[0-9a-f]+)\)', line, re.UNICODE)
60 print line.rstrip().encode('utf-8')
97 print line.rstrip().encode('utf-8')
103 for line in sys.stdin:
104 line = line.decode('utf-8' variable
    [all...]
  /external/compiler-rt/test/tsan/
getline_nohang.cc 14 char *line = NULL; local
21 volatile int res = getline(&line, &size, stream);
  /external/doclava/src/com/google/doclava/apicheck/
ApiParseException.java 21 public int line; field in class:ApiParseException
33 this.line = ((ApiParseException)cause).line;
37 public ApiParseException(String message, int line) {
39 this.line = line;
43 if (line > 0) {
44 return super.getMessage() + " line " + line;
  /external/elfutils/libdwfl/
dwfl_module_getsrc.c 60 Dwarf_Line *line = &lines->info[idx]; local
61 if (addr < line->addr)
67 /* The last line which is less than or equal to addr is what
69 current line sequence. */
70 Dwarf_Line *line = &lines->info[l]; local
71 if (! line->end_sequence && line->addr <= addr)
  /external/elfutils/tests/
getsrc_die.c 46 Dwarf_Line *line; local
56 line = dwarf_getsrc_die (&cudie, addr);
57 if (line == NULL)
60 const char *f = dwarf_linesrc (line, NULL, NULL);
62 if (dwarf_lineno (line, &l) != 0)
  /external/honggfuzz/linux/
unwind.h 47 * If libunwind + bfd symbolizer, line is actual symbol file line
48 * If libunwind + custom (e.g. Android), line is offset from function symbol
49 * If ASan custom parsing, line is offset from matching map load base address
51 size_t line; member in struct:__anon21204
  /external/icu/icu4c/source/test/intltest/
tokiter.h 34 * line, beginning with the first unquoted '#', are recognized.
48 * Return the one-based line number of the line of the last token
55 * Return a string description of the position of the last line
66 UnicodeString line; member in class:TokenIterator
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
OpenTypeTableWriter.java 38 void appendValue(StringBuffer line, int index)
42 line.append("0x");
43 line.append(Utility.hex((value >> 8) & 0xFF, 2));
44 line.append(", ");
46 line.append("0x");
47 line.append(Utility.hex(value & 0xFF, 2));
51 StringBuffer line = new StringBuffer(" "); // four spaces local
57 output.println(line.toString());
58 line.setLength(4);
61 appendValue(line, i)
    [all...]
  /external/iptables/iptables/
xtables-config-parser.y 102 lines : line
103 | lines line
106 line : family label
149 fprintf(stderr, "parsing config file in line (%d), symbol '%s': %s\n",
  /external/jarjar/src/main/com/tonicsystems/jarjar/
StringReader.java 23 private int line = -1; field in class:StringReader
30 abstract public void visitString(String className, String value, int line);
34 visitString(className, (String)value, line);
40 line = -1;
80 public void visitLineNumber(int line, Label start) {
81 StringReader.this.line = line;
  /external/jdiff/src/jdiff/
StreamReader.java 26 String line = null; local
27 while((line = br.readLine()) != null)
28 System.out.println(line);
  /external/jline/src/src/test/java/jline/example/
PasswordReader.java 26 String line = null; local
28 line = reader.readLine("enter password> ", mask);
29 System.out.println("Got password: " + line);
30 } while(line != null && line.length() > 0);
  /external/junit-params/src/main/java/junitparams/mappers/
BufferedReaderDataMapper.java 26 String line; local
30 while ((line = br.readLine()) != null) {
32 result.add(line);
  /external/junit-params/src/test/java/junitparams/usage/person_example/
PersonMapper.java 15 String line = (String) lineObj; local
16 result.add(new Object[] { line.substring(2), Integer.parseInt(line.substring(0, 1)) });
  /external/libcups/cups/
md5passwd.c 36 char line[256]; /* Line to sum */ local
43 snprintf(line, sizeof(line), "%s:%s:%s", username, realm, passwd);
45 _cupsMD5Append(&state, (unsigned char *)line, (int)strlen(line));
70 char line[1024]; /* Line of data */ local
78 snprintf(line, sizeof(line), "%s:%s", method, resource)
    [all...]
  /external/ltp/testcases/open_posix_testsuite/include/
affinity.h 60 char line[4096]; local
67 if (!fgets(line, sizeof(line), f))
75 if (sscanf(line, "processor%*[^0123456789]%d", &cpu) == 1)
  /external/python/cpython2/Demo/turtle/
tdemo_chaos.py 23 def line(x1, y1, x2, y2): function
29 line(-1, 0, N+1, 0)
30 line(0, -0.1, 0, 1.1)
  /external/python/cpython3/Lib/turtledemo/
chaos.py 23 def line(x1, y1, x2, y2): function
29 line(-1, 0, N+1, 0)
30 line(0, -0.1, 0, 1.1)
  /external/selinux/libselinux/src/
selinux_check_securetty_context.c 11 char *line = NULL; local
22 while ((len = getline(&line, &line_len, fp)) != -1) {
24 if (line[len - 1] == '\n')
25 line[len - 1] = 0;
28 start = line;
44 free(line);
  /external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/line/
ConversionRule.java 25 package org.slf4j.migrator.line;
43 * Returns a non-null value if there should be an additional line
  /external/slf4j/slf4j-migrator/src/test/java/org/slf4j/migrator/line/
NoConversionTest.java 25 package org.slf4j.migrator.line;
27 import org.slf4j.migrator.line.JCLRuleSet;
28 import org.slf4j.migrator.line.LineConverter;
29 import org.slf4j.migrator.line.Log4jRuleSet;
TrivialMatcher.java 25 package org.slf4j.migrator.line;
31 import org.slf4j.migrator.line.ConversionRule;
32 import org.slf4j.migrator.line.MultiGroupConversionRule;
33 import org.slf4j.migrator.line.RuleSet;
34 import org.slf4j.migrator.line.SingleConversionRule;
  /external/swiftshader/src/OpenGL/compiler/preprocessor/
SourceLocation.h 23 SourceLocation() : file(0), line(0) {}
24 SourceLocation(int f, int l) : file(f), line(l) {}
28 return (file == other.file) && (line == other.line);
32 int line; member in struct:pp::SourceLocation
  /external/syslinux/memdisk/
e820test.c 50 char line[BUFSIZ], *p; local
55 while (fgets(line, BUFSIZ, stdin)) {
56 p = strchr(line, ':');
57 p = p ? p + 1 : line;
  /external/tensorflow/tensorflow/compiler/xla/tools/
hex_floats_to_packed_literal.cc 60 string line; local
63 while (buf.ReadLine(&line).ok()) {
65 QCHECK(sscanf(line.c_str(), "%f", &value) != 1) << "invalid float value: "
66 << line;

Completed in 730 milliseconds

1 2 34 5 6 7 8 91011>>