Searched defs:line (Results 226 - 250 of 1454) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DClassicToken.cs49 int line; field in class:Antlr.Runtime.ClassicToken
65 line = oldToken.Line;
112 return line;
116 line = value;
209 return "[@" + TokenIndex + ",'" + txt + "',<" + type + ">" + channelStr + "," + line + ":" + CharPositionInLine + "]";
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRCommonToken.h36 NSUInteger line; variable
121 @property (assign, getter = line, setter = setLine:) NSUInteger line; variable
H A DANTLRToken.h54 @property (assign) NSUInteger line; variable
69 // ANTLR v3 provides automatic line and position tracking. Subclasses do not need to
70 // override these, if they do not want to store line/pos tracking information
71 - (NSUInteger)line;
/external/bison/src/
H A Dlocation.h31 /* If nonnegative, the (origin-1) line that contains the boundary.
32 If this is INT_MAX, the line number has overflowed.
36 int line; member in struct:__anon377
54 b->line = l;
65 res = a.line - b.line;
76 && a.line == b.line
109 /* Output to OUT the line and caret corresponding to location LOC. */
123 /* LOC_STR must be formatted as `file:line
[all...]
/external/blktrace/
H A Dverify_blkparse.c12 char line[256], last_line[256], *p; local
35 while ((p = fgets(line, sizeof(line), f)) != NULL) {
59 strcpy(last_line, line);
/external/chromium_org/base/
H A Dlogging_win.cc26 const char* file, int line, size_t message_start,
80 // The line.
81 event.SetField(2, sizeof(line), &line);
25 LogMessage(logging::LogSeverity severity, const char* file, int line, size_t message_start, const std::string& message) argument
/external/chromium_org/content/browser/accessibility/
H A Daccessibility_tree_formatter_android.cc120 base::string16 line; local
124 WriteAttribute(true, base::UTF16ToUTF8(class_value), &line);
130 WriteAttribute(true, attribute_name, &line);
140 &line);
150 &line);
153 return indent + line + base::ASCIIToUTF16("\n");
/external/chromium_org/extensions/common/
H A Dstack_frame.cc54 size_t line = 1; local
60 &function, &source, &line, &column) &&
63 &source, &line, &column)) {
67 return scoped_ptr<StackFrame>(new StackFrame(line,
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DBufferedLineReaderTest.cpp48 String line; local
49 ASSERT_FALSE(reader.getLine(line));
55 String line; local
56 ASSERT_FALSE(reader.getLine(line));
58 // No input observed, so still no line.
59 ASSERT_FALSE(reader.getLine(line));
67 String line; local
68 ASSERT_TRUE(reader.getLine(line));
69 ASSERT_EQ(line, "A");
77 String line; local
90 String line; local
103 String line; local
115 String line; local
126 String line; local
138 String line; local
149 String line; local
161 String line; local
214 String line; local
247 String line; local
261 String line; local
272 String line; local
287 String line; local
[all...]
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_line_reader.cpp43 // Eat previous line.
54 // Find the end of the current line in the current buffer. The result
56 const char* line = buff_ + line_start_; local
60 line_end = reinterpret_cast<const char*>(::memchr(line, '\n', range));
65 line_len_ = static_cast<size_t>(line_end + 1 - line);
85 // If there is a last line that isn't terminated by a newline, and
87 // the line.
98 // Otherwise, ignore the last line.
137 const char* LineReader::line() const { return buff_ + line_start_; } function in class:crazy::LineReader
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dtest-buffer-serialize.cc103 char line[BUFSIZ], out[BUFSIZ]; local
104 while (fgets (line, sizeof(line), stdin) != 0)
108 const char *p = line;
/external/chromium_org/third_party/icu/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/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/src/mesa/tnl_dd/
H A Dt_dd_triemit.h113 static __inline void TAG(line)( CTX_ARG, function
/external/chromium_org/third_party/opus/src/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/chromium_org/third_party/opus/src/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/chromium_org/third_party/polymer/components-chromium/core-layout-grid/
H A Dcore-layout-grid-extracted.js56 function line(axis, p, d) { function
57 var l = document.createElement('line');
263 line('left', c.p, c.s);
270 line('top', r.p, r.s);
/external/chromium_org/third_party/skia/src/core/
H A DSkUtilsArm.cpp84 // Now, find a line that starts with "Features", i.e. look for
89 char* line = (char*) memmem(buffer, buffer_end - buffer, local
91 if (line == NULL) { // Weird, no Features line, bad kernel?
92 SkDebugf("Could not find a line starting with 'Features'"
97 line += features_len; // Skip the "\nFeatures\t" prefix
99 // Find the end of the current line
100 char* line_end = (char*) memchr(line, '\n', buffer_end - line);
109 const char* flag = (const char*) memmem(line, line_en
[all...]
/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/deqp/framework/common/
H A DtcuDefs.cpp50 static std::string formatError (const char* message, const char* expr, const char* file, int line) argument
59 msg << " at " << de::FilePath(file).getBaseName() << ":" << line;
64 Exception::Exception (const char* message, const char* expr, const char* file, int line) argument
65 : std::runtime_error(formatError(message, expr, file, line))
76 TestException::TestException (const char* message, const char* expr, const char* file, int line, qpTestResult result) argument
77 : Exception (formatError(message, expr, file, line))
88 TestError::TestError (const char* message, const char* expr, const char* file, int line) argument
89 : TestException(message, expr, file, line, QP_TEST_RESULT_FAIL)
98 InternalError::InternalError (const char* message, const char* expr, const char* file, int line) argument
99 : TestException(message, expr, file, line, QP_TEST_RESULT_INTERNAL_ERRO
108 ResourceError(const char* message, const char* expr, const char* file, int line) argument
118 NotSupportedError(const char* message, const char* expr, const char* file, int line) argument
[all...]
/external/deqp/framework/egl/
H A DegluDefs.cpp37 void checkError (const char* message, const char* file, int line) argument
49 throw BadAllocError(desc.str().c_str(), DE_NULL, file, line);
51 throw Error(err, desc.str().c_str(), DE_NULL, file, line);
61 Error::Error (deInt32 errCode, const char* message, const char* expr, const char* file, int line) argument
62 : tcu::TestError (message, expr, file, line)
72 BadAllocError::BadAllocError (const char* message, const char* expr, const char* file, int line) argument
73 : tcu::ResourceError(message, expr, file, line)
/external/deqp/framework/opengl/
H A DgluDefs.cpp35 Error::Error (int error, const char* message, const char* expr, const char* file, int line) argument
36 : tcu::TestError (message, expr, file, line)
51 OutOfMemoryError::OutOfMemoryError (const char* message, const char* expr, const char* file, int line) argument
52 : tcu::ResourceError(message, expr, file, line)
65 void checkError (const RenderContext& context, const char* msg, const char* file, int line) argument
67 checkError(context.getFunctions().getError(), msg, file, line);
70 void checkError (deUint32 err, const char* msg, const char* file, int line) argument
81 throw OutOfMemoryError(msgStr.str().c_str(), DE_NULL, file, line);
83 throw Error(err, msgStr.str().c_str(), DE_NULL, file, line);
/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.cc103 char line[BUFSIZ], out[BUFSIZ]; local
104 while (fgets (line, sizeof(line), stdin) != 0)
108 const char *p = line;

Completed in 1530 milliseconds

1234567891011>>