Home
last modified time | relevance | path

Searched refs:Line (Results 1 – 25 of 759) sorted by relevance

12345678910>>...31

/external/llvm/test/DebugInfo/
Ddebuglineinfo.test11 TEST_INLINE-NEXT: Line info @ 0: test-inline.cpp, line:33
12 TEST_INLINE-NEXT: Line info @ 35: test-inline.cpp, line:34
13 TEST_INLINE-NEXT: Line info @ 165: test-inline.cpp, line:35
15 TEST_INLINE-NEXT: Line info @ 0: test-inline.cpp, line:28
16 TEST_INLINE-NEXT: Line info @ 2: test-inline.cpp, line:29
17 TEST_INLINE-NEXT: Line info @ 3: test-inline.cpp, line:29
19 TEST_INLINE-NEXT: Line info @ 0: test-inline.cpp, line:39
20 TEST_INLINE-NEXT: Line info @ 21: test-inline.cpp, line:41
21 TEST_INLINE-NEXT: Line info @ 39: test-inline.cpp, line:42
22 TEST_INLINE-NEXT: Line info @ 60: test-inline.cpp, line:44
[all …]
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
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[2] = true; };
200 if (!Q.Line[9]) { DrawLine(Q[2], Q[6]); Q.Line[9] = true; };
201 if (!Q.Line[6]) { DrawLine(Q[6], Q[7]); Q.Line[6] = true; };
202 if (!Q.Line[10]) { DrawLine(Q[7], Q[3]); Q.Line[10] = true; };
205 if (!Q.Line[4]) { DrawLine(Q[4], Q[5]); Q.Line[4] = true; };
206 if (!Q.Line[5]) { DrawLine(Q[5], Q[6]); Q.Line[5] = true; };
[all …]
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
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[2] = true; };
200 if (!Q.Line[9]) { DrawLine(Q[2], Q[6]); Q.Line[9] = true; };
201 if (!Q.Line[6]) { DrawLine(Q[6], Q[7]); Q.Line[6] = true; };
202 if (!Q.Line[10]) { DrawLine(Q[7], Q[3]); Q.Line[10] = true; };
205 if (!Q.Line[4]) { DrawLine(Q[4], Q[5]); Q.Line[4] = true; };
206 if (!Q.Line[5]) { DrawLine(Q[5], Q[6]); Q.Line[5] = true; };
[all …]
/external/clang/lib/Format/
DUnwrappedLineParser.cpp27 ScopedDeclarationState(UnwrappedLine &Line, std::vector<bool> &Stack, in ScopedDeclarationState() argument
29 : Line(Line), Stack(Stack) { in ScopedDeclarationState()
30 Line.MustBeDeclaration = MustBeDeclaration; in ScopedDeclarationState()
36 Line.MustBeDeclaration = Stack.back(); in ~ScopedDeclarationState()
38 Line.MustBeDeclaration = true; in ~ScopedDeclarationState()
41 UnwrappedLine &Line; member in clang::format::ScopedDeclarationState
47 ScopedMacroState(UnwrappedLine &Line, FormatTokenSource *&TokenSource, in ScopedMacroState() argument
49 : Line(Line), TokenSource(TokenSource), ResetToken(ResetToken), in ScopedMacroState()
50 PreviousLineLevel(Line.Level), PreviousTokenSource(TokenSource) { in ScopedMacroState()
52 Line.Level = 0; in ScopedMacroState()
[all …]
DTokenAnnotator.h165 AnnotatedLine(const UnwrappedLine &Line) in AnnotatedLine() argument
166 : First(Line.Tokens.front()), Level(Line.Level), in AnnotatedLine()
167 InPPDirective(Line.InPPDirective), in AnnotatedLine()
168 MustBeDeclaration(Line.MustBeDeclaration), in AnnotatedLine()
170 assert(!Line.Tokens.empty()); in AnnotatedLine()
172 for (std::list<FormatToken>::const_iterator I = ++Line.Tokens.begin(), in AnnotatedLine()
173 E = Line.Tokens.end(); in AnnotatedLine()
216 void annotate(AnnotatedLine &Line);
217 void calculateFormattingInformation(AnnotatedLine &Line);
221 unsigned splitPenalty(const AnnotatedLine &Line, const AnnotatedToken &Tok);
[all …]
DTokenAnnotator.cpp91 AnnotatingParser(SourceManager &SourceMgr, Lexer &Lex, AnnotatedLine &Line, in AnnotatingParser() argument
93 : SourceMgr(SourceMgr), Lex(Lex), Line(Line), CurrentToken(&Line.First), in AnnotatingParser()
328 Line.First.Type == TT_ObjCMethodSpecifier) { in consumeToken()
362 if (Line.MustBeDeclaration) in consumeToken()
363 Line.MightBeFunctionDecl = true; in consumeToken()
409 if (Line.First.is(tok::kw_for) && in consumeToken()
507 if (Line.First.Type == TT_ObjCMethodSpecifier) { in parseLine()
585 (Current.is(tok::l_paren) && !Line.MustBeDeclaration && in determineTokenType()
730 AnnotatedLine &Line; member in clang::format::AnnotatingParser
740 ExpressionParser(AnnotatedLine &Line) : Current(&Line.First) {} in ExpressionParser() argument
[all …]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
DANTLRxxxxStreamFixture.cs142 Assert.AreEqual(1, inputStream.Line); in TestConsumeOnANTLRInputStream()
147 Assert.AreEqual(1, inputStream.Line); in TestConsumeOnANTLRInputStream()
152 Assert.AreEqual(1, inputStream.Line); in TestConsumeOnANTLRInputStream()
157 Assert.AreEqual(1, inputStream.Line); in TestConsumeOnANTLRInputStream()
162 Assert.AreEqual(1, inputStream.Line); in TestConsumeOnANTLRInputStream()
167 Assert.AreEqual(2, inputStream.Line); in TestConsumeOnANTLRInputStream()
172 Assert.AreEqual(2, inputStream.Line); in TestConsumeOnANTLRInputStream()
177 Assert.AreEqual(2, inputStream.Line); in TestConsumeOnANTLRInputStream()
182 Assert.AreEqual(2, inputStream.Line); in TestConsumeOnANTLRInputStream()
187 Assert.AreEqual(2, inputStream.Line); in TestConsumeOnANTLRInputStream()
[all …]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
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/icu4c/layoutex/layout/
DParagraphLayout.h60 class U_LAYOUTEX_API Line : public UObject
71 ~Line();
173 inline Line();
174 inline Line(const Line &other);
175 inline Line &operator=(const Line & /*other*/) { return *this; };
334 friend class Line; variable
532 Line *nextLine(float width);
578 Line *computeVisualRuns();
579 void appendRun(Line *line, le_int32 run, le_int32 firstChar, le_int32 lastChar);
656 inline ParagraphLayout::Line::Line() in Line() function
[all …]
/external/icu4c/layoutex/
Dplayout.cpp145 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; in pl_closeLine()
153 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; in pl_countLineRuns()
165 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; in pl_getLineAscent()
177 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; in pl_getLineDescent()
189 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; in pl_getLineLeading()
201 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; in pl_getLineWidth()
213 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; in pl_getLineVisualRun()
/external/clang/lib/Rewrite/Frontend/
DInclusionRewriter.cpp65 void WriteLineInfo(const char *Filename, int Line,
95 void InclusionRewriter::WriteLineInfo(const char *Filename, int Line, in WriteLineInfo() argument
101 OS << "#line" << ' ' << Line << ' ' << '"' << Filename << '"'; in WriteLineInfo()
105 OS << '#' << ' ' << Line << ' ' << '"' << Filename << '"'; in WriteLineInfo()
198 StringRef EOL, int &Line, in OutputContentUpTo() argument
204 Line += std::count(FromFile.getBufferStart() + WriteFrom, in OutputContentUpTo()
223 unsigned &NextToWrite, int &Line) { in CommentOutDirective() argument
225 SM.getFileOffset(StartToken.getLocation()), EOL, Line); in CommentOutDirective()
233 EOL, Line); in CommentOutDirective()
271 int Line = 1; // The current input file line number. in Process() local
[all …]
/external/compiler-rt/lib/ubsan/
Dubsan_value.h54 u32 Line; variable
58 SourceLocation() : Filename(), Line(), Column() {} in SourceLocation()
59 SourceLocation(const char *Filename, unsigned Line, unsigned Column) in SourceLocation() argument
60 : Filename(Filename), Line(Line), Column(Column) {} in SourceLocation()
71 return SourceLocation(Filename, Line, OldColumn); in acquire()
83 unsigned getLine() const { return Line; } in getLine()
/external/clang/unittests/Tooling/
DCommentHandlerTest.cpp16 Comment(const std::string &Message, unsigned Line, unsigned Col) in Comment()
17 : Message(Message), Line(Line), Col(Col) { } in Comment()
20 unsigned Line, Col; member
103 << Current->Message << "\" at line " << Current->Line << ", column " in ~CommentVerifier()
108 void Match(const char *Message, unsigned Line, unsigned Col) { in Match() argument
113 EXPECT_TRUE(C.Message == Message && C.Line == Line && C.Col == Col) in Match()
115 << "\" at line " << Line << ", column " << Col in Match()
117 << "\" at line " << C.Line << ", column " << C.Col; in Match()
/external/icu4c/test/perf/collationperf/
Dcollperf.cpp192 struct Line { struct
203 Line *gFileLines; // Ptr to array of Line structs, one per line in the file. argument
208 Line **gSortedLines;
209 Line **gRandomLines;
278 int t = strcmp((*(Line **)a)->icuSortKey, (*(Line **)b)->icuSortKey); in ICUstrcmpK()
286 …t = ucol_strcoll(gCol, (*(Line **)a)->name, (*(Line **)a)->len, (*(Line **)b)->name, (*(Line **)b)… in ICUstrcmpL()
296 t = ucol_strcoll(gCol, (*(Line **)a)->name, -1, (*(Line **)b)->name, -1); in ICUstrcmp()
306 t = CompareStringW(gWinLCID, 0, (*(Line **)a)->name, -1, (*(Line **)b)->name, -1); in Winstrcmp()
314 t = strcoll((*(Line **)a)->unixName, (*(Line **)b)->unixName); in UNIXstrcmp()
322 …t = CompareStringW(gWinLCID, 0, (*(Line **)a)->name, (*(Line **)a)->len, (*(Line **)b)->name, (*(L… in WinstrcmpL()
[all …]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DRecognitionException.cs150 this._line = _token.Line; in RecognitionException()
157 this._line = ((ICharStream)input).Line; in RecognitionException()
248 public int Line { property in Antlr.Runtime.RecognitionException
285 this._line = lastRealToken.Line; in ExtractInformationFromTreeNodeStream()
296 if (payload.Line <= 0) { in ExtractInformationFromTreeNodeStream()
302 if (priorPayload != null && priorPayload.Line > 0) { in ExtractInformationFromTreeNodeStream()
304 this._line = priorPayload.Line; in ExtractInformationFromTreeNodeStream()
313 this._line = payload.Line; in ExtractInformationFromTreeNodeStream()
317 this._line = ((Tree.ITree)this._node).Line; in ExtractInformationFromTreeNodeStream()
DLexer.cs73 public int Line { property in Antlr.Runtime.Lexer
75 return input.Line;
78 input.Line = value;
116 state.tokenStartLine = input.Line; in NextToken()
120 eof.Line = Line; in NextToken()
201 t.Line = state.tokenStartLine; in Emit()
345 string inputSymbol = ((char)input.LT(1)) + " line=" + Line + ":" + CharPositionInLine; in TraceIn()
351 string inputSymbol = ((char)input.LT(1)) + " line=" + Line + ":" + CharPositionInLine; in TraceOut()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DRecognitionException.cs160 this._line = _token.Line; in RecognitionException()
175 this._line = ((ICharStream)input).Line; in RecognitionException()
292 public int Line property in Antlr.Runtime.RecognitionException
340 this._line = lastRealToken.Line; in ExtractInformationFromTreeNodeStream()
352 if (payload.Line <= 0) in ExtractInformationFromTreeNodeStream()
360 if (priorPayload != null && priorPayload.Line > 0) in ExtractInformationFromTreeNodeStream()
363 this._line = priorPayload.Line; in ExtractInformationFromTreeNodeStream()
382 this._line = payload.Line; in ExtractInformationFromTreeNodeStream()
388 this._line = ((Tree.ITree)this._node).Line; in ExtractInformationFromTreeNodeStream()
DLexer.cs82 public int Line property in Antlr.Runtime.Lexer
86 return input.Line;
90 input.Line = value;
136 state.tokenStartLine = input.Line; in NextToken()
141 eof.Line = Line; in NextToken()
243 t.Line = state.tokenStartLine; in Emit()
419 … string inputSymbol = ( (char)input.LT( 1 ) ) + " line=" + Line + ":" + CharPositionInLine; in TraceIn()
426 … string inputSymbol = ( (char)input.LT( 1 ) ) + " line=" + Line + ":" + CharPositionInLine; in TraceOut()
/external/markdown/tests/misc/
Dlazy-block-quote.txt1 > Line one of lazy block quote.
2 Line two of lazy block quote.
4 > Line one of paragraph two.
5 Line two of paragraph two.
/external/skia/legacy/src/text/
DSkTextLayout.cpp65 struct SkTextLayout::Line { struct in SkTextLayout
66 Line() {} in Line() function
67 ~Line();
73 SkTextLayout::Line::~Line() { in ~Line() argument
/external/skia/src/text/
DSkTextLayout.cpp67 struct SkTextLayout::Line { struct in SkTextLayout
68 Line() {} in Line() function
69 ~Line();
75 SkTextLayout::Line::~Line() { in ~Line() argument
/external/clang/test/SemaCXX/
Dimplicit-member-functions.cpp96 template<typename K> struct Line;
99 Vector(const Line<K> &l);
106 template<typename K> struct Line { struct
117 Line<void> L1;
118 Line<void> L2(L1);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
DTextTrackImpl.java39 List<Line> subs = new LinkedList<Line>();
41 public List<Line> getSubs() { in getSubs()
70 for (Line sub : subs) { in getSamples()
99 for (Line sub : subs) { in getDecodingTimeEntries()
133 public static class Line { class in TextTrackImpl
139 public Line(long from, long to, String text) { in Line() method in TextTrackImpl.Line
DQuicktimeTextTrackImpl.java43 List<Line> subs = new LinkedList<Line>();
45 public List<Line> getSubs() { in getSubs()
67 for (Line sub : subs) { in getSamples()
96 for (Line sub : subs) { in getDecodingTimeEntries()
130 public static class Line { class in QuicktimeTextTrackImpl
136 public Line(long from, long to, String text) { in Line() method in QuicktimeTextTrackImpl.Line
/external/llvm/include/llvm/DebugInfo/
DDIContext.h34 uint32_t Line; variable
39 Line(0), Column(0) {} in DILineInfo()
44 Line(line), Column(column) {} in DILineInfo()
48 uint32_t getLine() const { return Line; } in getLine()
52 return Line == RHS.Line && Column == RHS.Column &&

12345678910>>...31