HomeSort by relevance Sort by last modified time
    Searched refs:Line (Results 1 - 25 of 170) sorted by null

1 2 3 4 5 6 7

  /external/markdown/tests/misc/
headers.txt 2 Line 2
3 Line 3
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
3d-cube.js 193 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; }
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
3d-cube.js 193 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; }
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ICharStream.cs 55 /** <summary>ANTLR tracks the line information automatically</summary> */
56 /** <summary>Because this stream can rewind, we need to be able to reset the line</summary> */
57 int Line {
62 /** <summary>The index of the character relative to the beginning of the line 0..n-1</summary> */
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ICharStream.cs 57 /** <summary>ANTLR tracks the line information automatically</summary> */
58 /** <summary>Because this stream can rewind, we need to be able to reset the line</summary> */
59 int Line
65 /** <summary>The index of the character relative to the beginning of the line 0..n-1</summary> */
  /external/skia/legacy/src/animator/
SkDrawLine.h 17 DECLARE_MEMBER_INFO(Line);
  /external/skia/src/animator/
SkDrawLine.h 17 DECLARE_MEMBER_INFO(Line);
  /external/skia/src/svg/
SkSVGLine.h 16 DECLARE_SVG_INFO(Line);
  /external/clang/lib/Format/
UnwrappedLineParser.cpp 27 ScopedDeclarationState(UnwrappedLine &Line, std::vector<bool> &Stack,
29 : Line(Line), Stack(Stack) {
30 Line.MustBeDeclaration = MustBeDeclaration;
36 Line.MustBeDeclaration = Stack.back();
38 Line.MustBeDeclaration = true;
41 UnwrappedLine &Line;
47 ScopedMacroState(UnwrappedLine &Line, FormatTokenSource *&TokenSource,
49 : Line(Line), TokenSource(TokenSource), ResetToken(ResetToken)
    [all...]
TokenAnnotator.h 66 LT_ObjCDecl, // An @interface, @implementation, or @protocol line.
68 LT_ObjCProperty // An @property line.
129 /// \brief The total length of the line up to and including this token.
137 /// \brief Penalty for inserting a line break before this token.
165 AnnotatedLine(const UnwrappedLine &Line)
166 : First(Line.Tokens.front()), Level(Line.Level),
167 InPPDirective(Line.InPPDirective),
168 MustBeDeclaration(Line.MustBeDeclaration),
170 assert(!Line.Tokens.empty())
    [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_value.h 54 u32 Line;
58 SourceLocation() : Filename(), Line(), Column() {}
59 SourceLocation(const char *Filename, unsigned Line, unsigned Column)
60 : Filename(Filename), Line(Line), Column(Column) {}
71 return SourceLocation(Filename, Line, OldColumn);
82 /// \brief Get the presumed line number.
83 unsigned getLine() const { return Line; }
84 /// \brief Get the column within the presumed line.
  /external/skia/legacy/src/text/
SkTextLayout.cpp 65 struct SkTextLayout::Line {
66 Line() {}
67 ~Line();
73 SkTextLayout::Line::~Line() {
  /external/skia/src/text/
SkTextLayout.cpp 67 struct SkTextLayout::Line {
68 Line() {}
69 ~Line();
75 SkTextLayout::Line::~Line() {
  /external/skia/include/text/
SkTextLayout.h 55 struct Line;
57 SkTDArray<Line*> fLines;
  /external/skia/legacy/include/text/
SkTextLayout.h 51 struct Line;
53 SkTDArray<Line*> fLines;
  /external/valgrind/main/none/tests/
vgprintf.stderr.exp 4 Backtrace line one
5 Line two:
  /external/icu4c/layoutex/layout/
ParagraphLayout.h 41 * Clients can use this to break a paragraph into lines, and to display the glyphs in each line.
50 * This class represents a single line of text in a <code>ParagraphLayout</code>. They
51 * can only be created by calling <code>ParagraphLayout::nextLine()</code>. Each line
60 class U_LAYOUTEX_API Line : public UObject
71 ~Line();
74 * Count the number of visual runs in the line.
83 * Get the ascent of the line. This is the maximum ascent
84 * of all the fonts on the line.
86 * @return the ascent of the line.
93 * Get the descent of the line. This is the maximum descen
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Tests.pas 52 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/clang/unittests/Tooling/
CommentHandlerTest.cpp 16 Comment(const std::string &Message, unsigned Line, unsigned Col)
17 : Message(Message), Line(Line), Col(Col) { }
20 unsigned Line, Col;
47 EXPECT_TRUE(!Invalid) << "Invalid line number on comment " << C;
103 << Current->Message << "\" at line " << Current->Line << ", column "
108 void Match(const char *Message, unsigned Line, unsigned Col) {
113 EXPECT_TRUE(C.Message == Message && C.Line == Line && C.Col == Col
    [all...]
  /external/clang/test/SemaCXX/
implicit-member-functions.cpp 45 // in an out-of-line initializer, make sure the functions aren't in
96 template<typename K> struct Line;
99 Vector(const Line<K> &l);
106 template<typename K> struct Line {
110 // Trigger declaration of Line copy ctor, which causes substitution into
113 // on Vector's constructors, which requires declaring all of Line's
117 Line<void> L1;
118 Line<void> L2(L1);
  /external/icu4c/layoutex/
playout.cpp 143 pl_closeLine(pl_line *line)
145 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line;
151 pl_countLineRuns(const pl_line *line)
153 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line;
163 pl_getLineAscent(const pl_line *line)
165 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line
    [all...]
  /external/clang/lib/Rewrite/Frontend/
InclusionRewriter.cpp 39 bool ShowLineMarkers; ///< Show #line markers.
40 bool UseLineDirective; ///< Use of line directives or line markers.
65 void WriteLineInfo(const char *Filename, int Line,
87 // If we're in microsoft mode, use normal #line instead of line markers.
91 /// Write appropriate line information as either #line directives or GNU line
93 /// \p Line we are located at, using the specified \p EOL line separator, an
    [all...]
  /external/llvm/include/llvm/DebugInfo/
DIContext.h 30 /// DILineInfo - a format-neutral container for source line information.
34 uint32_t Line;
39 Line(0), Column(0) {}
42 uint32_t line, uint32_t column)
44 Line(line), Column(column) {}
48 uint32_t getLine() const { return Line; }
52 return Line == RHS.Line && Column == RHS.Column &&
90 // Use file/line info by default
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
ANTLRxxxxStreamFixture.cs 142 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/
plugin.properties 21 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

Completed in 862 milliseconds

1 2 3 4 5 6 7