Searched defs:line (Results 251 - 275 of 1454) sorted by relevance

<<11121314151617181920>>

/external/icu/icu4c/source/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/libopus/silk/
H A Dtypedef.h67 static OPUS_INLINE void _silk_fatal(const char *str, const char *file, int line) argument
69 fprintf (stderr, "Fatal (internal) error in %s, line %d: %s\n", file, line, str);
/external/libopus/tests/
H A Dtest_opus_common.h68 static OPUS_INLINE void _test_failed(const char *file, int line) argument
74 fprintf(stderr,"'make check SEED=%u fails %s at line %d for %s'\n",iseed,file,line,opus_get_version_string());
/external/libpcap/Win32/Src/
H A Dgetnetent.c28 static char line[BUFSIZ+1]; variable
66 p = fgets(line, BUFSIZ, netf);
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dvdso.c22 char line[128]; local
31 while (!found && fgets(line, sizeof(line), maps)) {
35 if (2 != sscanf(line, "%p-%p r-xp %*x %*x:%*x %*u %n",
41 if (!strncmp(&line[m], VDSO__MAP_NAME,
/external/lldb/source/API/
H A DSBSourceManager.cpp52 uint32_t line,
65 line,
77 line,
130 uint32_t line,
141 line,
51 DisplaySourceLinesWithLineNumbers(const lldb_private::FileSpec &file, uint32_t line, uint32_t context_before, uint32_t context_after, const char *current_line_cstr, lldb_private::Stream *s) argument
127 DisplaySourceLinesWithLineNumbers( const SBFileSpec &file, uint32_t line, uint32_t context_before, uint32_t context_after, const char *current_line_cstr, SBStream &s ) argument
/external/mesa3d/src/glx/apple/
H A Dapple_glx_log.c52 int line, const char *fmt, ...) {
55 _apple_glx_vlog(level, file, function, line, fmt, v);
74 int line, const char *fmt, va_list args) {
97 _asl_level_string(level), file, line, function, thread);
107 if (line) {
109 asprintf(&_line, "%d", line);
51 _apple_glx_log(int level, const char *file, const char *function, int line, const char *fmt, ...) argument
73 _apple_glx_vlog(int level, const char *file, const char *function, int line, const char *fmt, va_list args) argument
/external/mesa3d/src/mesa/tnl_dd/
H A Dt_dd_triemit.h113 static __inline void TAG(line)( CTX_ARG, function
/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/qemu/android/filesystems/
H A Dfstab_parser.cpp59 // Find end of current line, and start of next one.
60 const char* line = p; local
70 line = skipWhitespace(line, line_end);
71 if (line == line_end || line[0] == '#') {
78 line = skipExpectedToken(line, line_end);
79 if (!line) {
83 line
[all...]
/external/qemu/android/utils/
H A Dproperty_file.c39 // Get end of line, and compute next line position.
40 const char* line = p; local
50 if (lineEnd > line && lineEnd[-1] == '\r')
54 while (line < lineEnd && isspace(line[0]))
55 line++;
58 if (lineEnd == line || line[0] == '#')
61 const char* name = line;
[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/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_org/base/debug/
H A Dproc_maps_linux.cc103 // Due to splitting on '\n' the last line should be empty.
106 DLOG(WARNING) << "Last line not empty";
113 const char* line = lines[i].c_str(); local
128 if (sscanf(line, "%" SCNxPTR "-%" SCNxPTR " %4c %llx %hhx:%hhx %ld %n",
131 DPLOG(WARNING) << "sscanf failed for line: " << line;
159 regions.back().path.assign(line + path_index);
/external/chromium_org/chrome/installer/util/
H A Dinstallation_validation_helper.cc30 int line,
80 int line,
88 ADD_FAILURE_AT(file, line)
94 return (old_message_handler_)(severity, file, line, message_start, str);
78 AddFailureForLogMessage(int severity, const char* file, int line, size_t message_start, const std::string& str) argument

Completed in 630 milliseconds

<<11121314151617181920>>