Searched defs:line (Results 176 - 200 of 882) sorted by relevance

1234567891011>>

/external/clang/tools/libclang/
H A DCXLoadedDiagnostic.h66 /// \brief Decode the CXSourceLocation into file, line, column, and offset.
69 unsigned *line,
75 unsigned line; member in struct:clang::CXLoadedDiagnostic::Location
79 Location() : line(0), column(0), offset(0) {}
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DSourcePosition.java24 * 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) { argument
61 if (line < -1) {
62 throw new IllegalArgumentException("line < -1");
67 this.line = line;
[all...]
/external/doclava/src/com/google/doclava/
H A DSourcePositionInfo.java22 public SourcePositionInfo(String file, int line, int column) { argument
24 this.line = line;
30 this.line = that.line;
44 int line = that.line;
49 line++;
53 return new SourcePositionInfo(that.file, line, 0);
60 int line
101 public int line; field in class:SourcePositionInfo
[all...]
/external/harfbuzz_ng/src/
H A Dtest-buffer-serialize.cc100 char line[BUFSIZ], out[BUFSIZ]; local
101 while (fgets (line, sizeof(line), stdin) != 0)
105 const char *p = line;
/external/icu4c/test/intltest/
H A Dtextfile.cpp76 UBool TextFile::readLine(UnicodeString& line, UErrorCode& ec) { argument
102 // Remove BOM in first line, if present
107 line = str.unescape();
111 UBool TextFile::readLineSkippingComments(UnicodeString& line, UErrorCode& ec, argument
114 if (!readLine(line, ec)) return FALSE;
117 ICU_Utility::skipWhitespace(line, pos, TRUE);
119 if (pos == line.length() || line.charAt(pos) == 0x23/*'#'*/) {
122 // Process line
123 if (trim) line
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DParser.java35 * @param line number of the line where error occurred. The value of -1 represents line number
37 * @param lineContent text of the line with error
41 void error(int line, String lineContent, String fileName, String errorMessage); argument
/external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
H A DJSilverBadSyntaxException.java26 private final int line; field in class:JSilverBadSyntaxException
31 * Signifies line or column is not known.
39 * @param lineContent content of a line where error occurred (can be null)
41 * @param line number of a line in {@code resourceName} where error occurred (ignored if set to
49 int line, int column, Throwable cause) {
50 super(makeMessage(message, lineContent, resourceName, line, column), cause);
52 this.line = line;
57 int line, in
48 JSilverBadSyntaxException(String message, String lineContent, String resourceName, int line, int column, Throwable cause) argument
56 makeMessage(String message, String lineContent, String resourceName, int line, int column) argument
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/precompiler/
H A DPrecompiledTemplateMapFileReader.java76 for (String line = reader.readLine(); line != null; line = reader.readLine()) {
77 // Process single line from the templateMapFile
79 processTemplateMapFileLine(line, reader.getLineNumber(), templateMap, templateMapFile,
90 private void processTemplateMapFileLine(String line, int lineNumber, argument
93 line = line.trim();
94 if (line.isEmpty() || line
[all...]
/external/openssl/crypto/err/
H A Derr_prn.c73 int line,flags; local
79 while ((l=ERR_get_error_line_data(&file,&line,&data,&flags)) != 0)
83 file, line, (flags & ERR_TXT_STRING) ? data : "");
/external/ppp/pppd/plugins/radius/
H A Dradrealms.c48 int line = 0; local
75 line++;
87 option_error("%s: invalid line %d: %s", radrealms_config,
88 line, buffer);
101 option_error("%s: realm name missing on line %d: %s",
102 radrealms_config, line, buffer);
111 option_error("%s: server address missing on line %d: %s",
112 radrealms_config, line, buffer);
119 option_error("%s: server port missing on line %d: %s",
120 radrealms_config, line, buffe
[all...]
/external/tcpdump/
H A Dprint-ipx.c84 static char line[256]; local
86 snprintf(line, sizeof(line), "%08x.%02x:%02x:%02x:%02x:%02x:%02x",
89 return line;
/external/v8/src/
H A Dchecks.cc38 extern "C" void V8_Fatal(const char* file, int line, const char* format, ...) { argument
44 i::OS::PrintError("\n\n#\n# Fatal error in %s, line %d\n# ", file, line);
63 int line,
71 V8_Fatal(file, line,
79 int line,
86 V8_Fatal(file, line, "CHECK_NE(%s, %s) failed\n# Value: %s",
62 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
78 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/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptprogram_p.h57 inline int line() const;
131 int QScriptProgramPrivate::line() const { return m_line; } function in class:QScriptProgramPrivate
/external/webkit/Source/WebCore/bindings/js/
H A DJavaScriptCallFrame.h59 int line() const { return m_textPosition.m_line.zeroBasedInt(); } function in class:WebCore::JavaScriptCallFrame
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
H A DgUnitBaseTest.java64 public String execLexer(String testRuleName, int line, String testInput, boolean isFile) throws Exception { argument
90 input.setLine(line);
155 public Object execParser(String testRuleName, int line, String testInput, boolean isFile) throws Exception { argument
184 input.setLine(line);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DCommonToken.cs41 int line; field in class:Antlr.Runtime.CommonToken
88 line = oldToken.Line;
135 return line;
138 line = value;
211 return "[@" + TokenIndex + "," + start + ":" + stop + "='" + txt + "',<" + type + ">" + channelStr + "," + line + ":" + CharPositionInLine + "]";
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DCommonToken.cs43 int line; field in class:Antlr.Runtime.CommonToken
95 line = oldToken.Line;
150 return line;
154 line = value;
250 return "[@" + TokenIndex + "," + start + ":" + stop + "='" + txt + "',<" + type + ">" + channelStr + "," + line + ":" + CharPositionInLine + "]";
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DTraceDebugEventListener.cs66 public override void Location( int line, int pos ) argument
68 Console.Out.WriteLine( "location " + line + ":" + pos );
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DClassicToken.java40 protected int line; field in class:ClassicToken
54 line = oldToken.getLine();
74 public void setLine(int line) { argument
75 this.line = line;
87 return line;
139 return "[@"+getTokenIndex()+",'"+txt+"',<"+type+">"+channelStr+","+line+":"+getCharPositionInLine()+"]";
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DMessage.java55 public int line = -1; field in class:Message
71 public void setLine(int line) { argument
72 this.line = line;
100 if (line != -1) {
101 locationST.add("line", line);
/external/bison/examples/calc++/
H A Dposition.hh56 #line 57 "../../../../examples/calc++/position.hh"
67 , line (l)
79 line = l;
85 /// (line related) Advance to the COUNT next lines.
89 line += count;
101 /// Current line number.
102 unsigned int line; member in class:yy::position
141 return (pos1.line == pos2.line
165 return ostr << pos.line << '
[all...]
/external/chromium/chrome/browser/chromeos/
H A Dplugin_selection_policy.cc67 string line; local
72 while (std::getline(input_stream, line)) {
74 string::size_type pos = line.find("#");
76 line = line.substr(0, pos);
78 TrimWhitespaceASCII(line, TRIM_ALL, &line);
79 if (line.find("allow") == 0) {
86 line = line
[all...]
/external/chromium/crypto/
H A Dopenssl_util.cc60 static void LockingCallback(int mode, int n, const char* file, int line) { argument
61 OpenSSLInitSingleton::GetInstance()->OnLockingCallback(mode, n, file, line);
64 void OnLockingCallback(int mode, int n, const char* file, int line) { argument
80 // such as the library, function and reason for the error, the file and line
/external/chromium/net/disk_cache/
H A Dtrace.cc119 char line[kEntrySize + 2]; local
126 memcpy(line, s_trace_buffer->buffer[current], kEntrySize);
127 line[kEntrySize] = '\0';
128 size_t length = strlen(line);
130 line[length] = '\n';
131 line[length + 1] = '\0';
132 DebugOutput(line);
/external/chromium/testing/gmock/src/
H A Dgmock-internal-utils.cc78 virtual void ReportFailure(FailureType type, const char* file, int line, argument
84 line,
146 // Pre-pends a new-line to message if it doesn't start with one.
161 // Appends a new-line to message if it doesn't end with one.

Completed in 789 milliseconds

1234567891011>>