Searched defs:line (Results 126 - 150 of 1454) sorted by relevance

1234567891011>>

/external/chromium_org/v8/src/
H A Dchecks.cc25 void CheckEqualsHelper(const char* file, int line, const char* expected_source, argument
34 V8_Fatal(file, line,
43 void CheckNonEqualsHelper(const char* file, int line, argument
52 V8_Fatal(file, line,
62 int line,
70 V8_Fatal(file, line,
78 int line,
85 V8_Fatal(file, line, "CHECK_NE(%s, %s) failed\n# Value: %s",
61 CheckEqualsHelper(const char* file, int line, const char* expected_source, v8::Handle<v8::Value> expected, const char* value_source, v8::Handle<v8::Value> value) argument
77 CheckNonEqualsHelper(const char* file, int line, const char* unexpected_source, v8::Handle<v8::Value> unexpected, const char* value_source, v8::Handle<v8::Value> value) argument
/external/clang/test/Analysis/
H A Dtaint-tester.cpp19 char *line = 0; local
24 while ((read = T.getline(&line, &len, stdin)) != -1) {
25 printf("%s", line); // no warning
27 free(line);
/external/compiler-rt/lib/asan/scripts/
H A Dsymbolize.py24 address often belongs to the next source code line, or even to a different
40 for line in readelf_pipe.stdout:
41 if ('LOAD' in line) and (' E ' in line):
42 match = re.match(r'\s*LOAD\s+0x[01-9a-zA-Z]+\s+(0x[01-9a-zA-Z]+)', line, re.UNICODE)
59 def symbolize_addr2line(line, binary_prefix, paths_to_cut):
62 line = re.sub(r'^[A-Z]/[^\s]*\(\s*\d+\): ', '', line)
64 match = re.match(r'^(\s*#)([0-9]+) *(0x[0-9a-f]+) *\((.*)\+(0x[0-9a-f]+)\)', line, re.UNICODE)
110 print line
117 line = line.decode('utf-8') variable
[all...]
/external/deqp/framework/delibs/debase/
H A DdeDefs.c86 void deAssertFail (const char* reason, const char* file, int line) argument
94 callback(reason, file, line);
118 _wassert(wreason, wfile, line);
124 _assert(reason, file, line);
126 __assert_fail(reason, file, line, "Unknown function");
128 __assert("Unknown function", file, line, reason);
130 fprintf(stderr, "Assertion '%s' failed at %s:%d\n", reason, file, line);
134 __android_log_print(ANDROID_LOG_ERROR, "delibs", "Assertion '%s' failed at %s:%d", reason, file, line);
135 __assert(file, line, reason);
/external/dhcpcd/
H A Dduid.c52 char *line; local
57 while ((line = get_line(f))) {
58 len = hwaddr_aton(NULL, line);
60 hwaddr_aton(duid, line);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/staticDropFiles/
H A DbuildNotes.php47 $line = "<td>Component: <a href=\"buildnotes/$anEntry\">$component</a></td>"; variable
49 echo "$line";
H A DconsoleLogs.php56 $line = "<td>Component: <a href=\"testresults/consolelogs/$anEntry\">$anEntry</a></td>"; variable
58 echo "$line";
/external/gtest/src/
H A Dgtest-typed-test.cc52 const char* file, int line, const char* registered_tests) {
98 fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(),
51 VerifyRegisteredTestNames( const char* file, int line, const char* registered_tests) argument
/external/guava/guava/src/com/google/common/io/
H A DLineBuffer.java22 * Package-protected abstract class that implements the line reading
24 * java.io.BufferedReader}: line feed, carriage return, or carriage
34 /** Holds partial line contents. */
35 private StringBuilder line = new StringBuilder(); field in class:LineBuffer
36 /** Whether a line ending with a CR is pending processing. */
40 * Process additional characters from the stream. When a line separator
41 * is found the contents of the line and the line separator itself
53 // Last call to add ended with a CR; we can handle the line now.
63 line
115 handleLine(String line, String end) argument
[all...]
/external/harfbuzz_ng/util/
H A Dview-cairo.cc41 helper_cairo_line_t &line = g_array_index (lines, helper_cairo_line_t, i); local
43 line.get_advance (&x_advance, &y_advance);
/external/jarjar/src/main/com/tonicsystems/jarjar/
H A DRulesFileParser.java45 String line;
46 while ((line = br.readLine()) != null) {
47 line = stripComment(line);
48 if (line.isEmpty())
50 String[] parts = line.split("\\s+");
78 private static void error(int line, String[] parts) { argument
79 throw new IllegalArgumentException("Error on line " + line + ": " + Arrays.asList(parts));
H A DStringDumper.java60 public void visitString(String className, String value, int line) { argument
67 if (line >= 0)
68 pw.print(line + ": ");
/external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
H A DJSilverAutoEscapingException.java26 public JSilverAutoEscapingException(String message, String templateName, int line, int column) { argument
27 super(createMessage(message, templateName, line, column));
37 private static String createMessage(String message, String resourceName, int line, int column) { argument
42 if (line != UNKNOWN_POSITION) {
43 result.append(" line=").append(line);
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DEOF.java15 public EOF(int line, int pos) argument
18 setLine(line);
H A DTAlt.java15 public TAlt(int line, int pos) argument
18 setLine(line);
H A DTAnd.java15 public TAnd(int line, int pos) argument
18 setLine(line);
H A DTArgWhitespace.java15 public TArgWhitespace(String text, int line, int pos) argument
18 setLine(line);
H A DTAssignment.java15 public TAssignment(int line, int pos) argument
18 setLine(line);
H A DTAutoescape.java15 public TAutoescape(int line, int pos) argument
18 setLine(line);
H A DTBang.java15 public TBang(int line, int pos) argument
18 setLine(line);
H A DTBracketClose.java15 public TBracketClose(int line, int pos) argument
18 setLine(line);
H A DTBracketOpen.java15 public TBracketOpen(int line, int pos) argument
18 setLine(line);
H A DTCall.java15 public TCall(int line, int pos) argument
18 setLine(line);
H A DTComma.java15 public TComma(int line, int pos) argument
18 setLine(line);
H A DTCommandDelimiter.java15 public TCommandDelimiter(String text, int line, int pos) argument
18 setLine(line);

Completed in 3894 milliseconds

1234567891011>>