Searched refs:Line (Results 1 - 25 of 150) sorted by relevance

123456

/external/markdown/tests/misc/
H A Dheaders.txt2 Line 2
3 Line 3
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DICharStream.cs57 int Line { property in interface:Antlr.Runtime.ICharStream
H A DIToken.cs48 int Line { property in interface:Antlr.Runtime.IToken
H A DRecognitionException.cs150 this._line = _token.Line;
157 this._line = ((ICharStream)input).Line;
172 _line = info.GetInt32("Line");
248 public int Line { property in class:Antlr.Runtime.RecognitionException
273 info.AddValue("Line", _line);
285 this._line = lastRealToken.Line;
296 if (payload.Line <= 0) {
302 if (priorPayload != null && priorPayload.Line > 0) {
304 this._line = priorPayload.Line;
313 this._line = payload.Line;
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DICharStream.cs59 int Line property in interface:Antlr.Runtime.ICharStream
H A DIToken.cs52 int Line property in interface:Antlr.Runtime.IToken
H A DRecognitionException.cs160 this._line = _token.Line;
175 this._line = ((ICharStream)input).Line;
194 _line = info.GetInt32("Line");
292 public int Line property in class:Antlr.Runtime.RecognitionException
324 info.AddValue("Line", _line);
340 this._line = lastRealToken.Line;
352 if (payload.Line <= 0)
360 if (priorPayload != null && priorPayload.Line > 0)
363 this._line = priorPayload.Line;
382 this._line = payload.Line;
[all...]
/external/llvm/lib/Support/
H A DMemory.cpp61 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
62 asm volatile("dcbf 0, %0" : : "r"(Line));
65 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
66 asm volatile("icbi 0, %0" : : "r"(Line));
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A D3d-cube.js193 if (!Q.Line[0]) { DrawLine(Q[0], Q[1]); Q.Line[0] = true; };
194 if (!Q.Line[1]) { DrawLine(Q[1], Q[2]); Q.Line[1] = true; };
195 if (!Q.Line[2]) { DrawLine(Q[2], Q[3]); Q.Line[2] = true; };
196 if (!Q.Line[3]) { DrawLine(Q[3], Q[0]); Q.Line[3] = true; };
199 if (!Q.Line[2]) { DrawLine(Q[3], Q[2]); Q.Line[
[all...]
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A D3d-cube.js193 if (!Q.Line[0]) { DrawLine(Q[0], Q[1]); Q.Line[0] = true; };
194 if (!Q.Line[1]) { DrawLine(Q[1], Q[2]); Q.Line[1] = true; };
195 if (!Q.Line[2]) { DrawLine(Q[2], Q[3]); Q.Line[2] = true; };
196 if (!Q.Line[3]) { DrawLine(Q[3], Q[0]); Q.Line[3] = true; };
199 if (!Q.Line[2]) { DrawLine(Q[3], Q[2]); Q.Line[
[all...]
/external/skia/src/svg/
H A DSkSVGLine.h16 DECLARE_SVG_INFO(Line);
/external/skia/src/text/
H A DSkTextLayout.cpp65 struct SkTextLayout::Line { struct in class:SkTextLayout
66 Line() {} function in struct:SkTextLayout::Line
67 ~Line();
73 SkTextLayout::Line::~Line() {
/external/llvm/include/llvm/DebugInfo/
H A DDIContext.h31 uint32_t Line; member in class:llvm::DILineInfo
36 Line(0), Column(0) {}
41 Line(line), Column(column) {}
45 uint32_t getLine() const { return Line; }
49 return Line == RHS.Line && Column == RHS.Column &&
/external/valgrind/main/none/tests/
H A Dvgprintf.stderr.exp5 Line two:
/external/icu4c/layoutex/layout/
H A DParagraphLayout.h60 class U_LAYOUTEX_API Line : public UObject class in class:ParagraphLayout
71 ~Line();
130 * visual run. This object is owned by the <code>Line</code> object which
131 * created it, and will remain valid for as long as the <code>Line</code>
173 inline Line();
174 inline Line(const Line &other);
175 inline Line &operator=(const Line & /*other*/) { return *this; };
191 * These objects are only created by <code>ParagraphLayout::Line</cod
653 inline ParagraphLayout::Line::Line() function in class:ParagraphLayout::Line
659 inline ParagraphLayout::Line::Line(const Line & /*other*/) function in class:ParagraphLayout::Line
[all...]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
H A DAntlr.Runtime.Tests.pas52 CheckEquals(1, Stream.Line);
57 CheckEquals(1, Stream.Line);
62 CheckEquals(1, Stream.Line);
67 CheckEquals(1, Stream.Line);
72 CheckEquals(1, Stream.Line);
77 CheckEquals(2, Stream.Line);
82 CheckEquals(2, Stream.Line);
87 CheckEquals(2, Stream.Line);
92 CheckEquals(2, Stream.Line);
97 CheckEquals(2, Stream.Line);
[all...]
/external/skia/src/animator/
H A DSkDrawLine.h17 DECLARE_MEMBER_INFO(Line);
/external/clang/unittests/Tooling/
H A DCommentHandlerTest.cpp16 Comment(const std::string &Message, unsigned Line, unsigned Col) argument
17 : Message(Message), Line(Line), Col(Col) { }
20 unsigned Line, Col; member in struct:clang::Comment
103 << Current->Message << "\" at line " << Current->Line << ", column "
108 void Match(const char *Message, unsigned Line, unsigned Col) { argument
113 EXPECT_TRUE(C.Message == Message && C.Line == Line && C.Col == Col)
115 << "\" at line " << Line << ", column " << Col
117 << "\" at line " << C.Line << ", colum
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DCommonTree.cs110 public override int Line { property in class:Antlr.Runtime.Tree.CommonTree
112 if (token == null || token.Line == 0) {
114 return Children[0].Line;
118 return token.Line;
121 base.Line = value;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DCommonTree.cs128 public override int Line property in class:Antlr.Runtime.Tree.CommonTree
132 if ( Token == null || Token.Line == 0 )
135 return Children[0].Line;
140 return Token.Line;
145 base.Line = value;
/external/icu4c/layoutex/
H A Dplayout.cpp145 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line;
153 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line;
165 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line;
177 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line;
189 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) lin
[all...]
/external/clang/lib/Rewrite/Frontend/
H A DInclusionRewriter.cpp64 void WriteLineInfo(const char *Filename, int Line,
92 /// \p Line we are located at, using the specified \p EOL line separator, and
94 void InclusionRewriter::WriteLineInfo(const char *Filename, int Line, argument
100 OS << "#line" << ' ' << Line << ' ' << '"' << Filename << '"';
104 OS << '#' << ' ' << Line << ' ' << '"' << Filename << '"';
196 StringRef EOL, int &Line,
202 Line += std::count(FromFile.getBufferStart() + WriteFrom,
215 /// and \p Line to track the number of source lines visited and the progress
221 unsigned &NextToWrite, int &Line) {
223 SM.getFileOffset(StartToken.getLocation()), EOL, Line);
194 OutputContentUpTo(const MemoryBuffer &FromFile, unsigned &WriteFrom, unsigned WriteTo, StringRef EOL, int &Line, bool EnsureNewline) argument
217 CommentOutDirective(Lexer &DirectiveLex, const Token &StartToken, const MemoryBuffer &FromFile, StringRef EOL, unsigned &NextToWrite, int &Line) argument
269 int Line = 1; // The current input file line number. local
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
H A DANTLRxxxxStreamFixture.cs142 Assert.AreEqual(1, inputStream.Line);
147 Assert.AreEqual(1, inputStream.Line);
152 Assert.AreEqual(1, inputStream.Line);
157 Assert.AreEqual(1, inputStream.Line);
162 Assert.AreEqual(1, inputStream.Line);
167 Assert.AreEqual(2, inputStream.Line);
172 Assert.AreEqual(2, inputStream.Line);
177 Assert.AreEqual(2, inputStream.Line);
182 Assert.AreEqual(2, inputStream.Line);
187 Assert.AreEqual(2, inputStream.Line);
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
H A Dplugin.properties21 javaLineBreakpoint.name=Java Line Breakpoints
32 CommonJavaLineBreakpoint.name = Common Java Line Breakpoint
33 JavaLineBreakpoint.name = Java Line Breakpoint
40 JavaStratumLineBreakpoint.name = Java Stratum Line Breakpoint
/external/skia/include/text/
H A DSkTextLayout.h51 struct Line;
53 SkTDArray<Line*> fLines;

Completed in 356 milliseconds

123456