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

1 2 3 4 5 6 7 8 91011>>

  /external/markdown/tests/misc/
headers.txt 2 Line 2
3 Line 3
  /external/mesa3d/src/mesa/main/
lines.c 34 * Set the line width.
36 * \param width line width in pixels.
57 * "Wide lines and line stipple - LineWidth is not deprecated, but
71 if (ctx->Line.Width == width)
75 ctx->Line.Width = width;
83 * Set the line stipple pattern.
105 if (ctx->Line.StippleFactor == factor &&
106 ctx->Line.StipplePattern == pattern)
110 ctx->Line.StippleFactor = factor;
111 ctx->Line.StipplePattern = pattern
    [all...]
  /external/clang/lib/Format/
TokenAnnotator.h 31 LT_ObjCDecl, // An @interface, @implementation, or @protocol line.
33 LT_ObjCProperty, // An @property line.
41 AnnotatedLine(const UnwrappedLine &Line)
42 : First(Line.Tokens.front().Tok), Level(Line.Level),
43 InPPDirective(Line.InPPDirective),
44 MustBeDeclaration(Line.MustBeDeclaration), MightBeFunctionDecl(false),
47 assert(!Line.Tokens.empty());
54 for (std::list<UnwrappedLineNode>::const_iterator I = ++Line.Tokens.begin(),
55 E = Line.Tokens.end()
    [all...]
UnwrappedLineParser.cpp 39 ScopedDeclarationState(UnwrappedLine &Line, std::vector<bool> &Stack,
41 : Line(Line), Stack(Stack) {
42 Line.MustBeDeclaration = MustBeDeclaration;
48 Line.MustBeDeclaration = Stack.back();
50 Line.MustBeDeclaration = true;
54 UnwrappedLine &Line;
60 ScopedMacroState(UnwrappedLine &Line, FormatTokenSource *&TokenSource,
62 : Line(Line), TokenSource(TokenSource), ResetToken(ResetToken)
    [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/src/animator/
SkDrawLine.h 17 DECLARE_MEMBER_INFO(Line);
  /external/skia/src/svg/parser/
SkSVGLine.h 16 DECLARE_SVG_INFO(Line);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
Line.java 19 public interface Line {
  /external/deqp/framework/referencerenderer/
rrPrimitiveTypes.hpp 39 PRIMITIVETYPE_LINE_STRIP, //!< Line strip
40 PRIMITIVETYPE_LINE_LOOP, //!< Line loop
45 PRIMITIVETYPE_LINE_STRIP_ADJACENCY, //!< Line strip (adjacency)
56 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_LINES> { typedef pa::Line Type; typedef pa::Line BaseType; typedef pa::Lines Assembler; };
57 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_LINE_STRIP> { typedef pa::Line Type; typedef pa::Line BaseType; typedef pa::LineStrip Assembler; };
58 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_LINE_LOOP> { typedef pa::Line Type; typedef pa::Line BaseType; typedef pa::LineLoop Assembler; };
60 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_LINES_ADJACENCY> { typedef pa::LineAdjacency Type; typedef pa::Line BaseType; typedef pa::LinesAdjacency Assembler; }
    [all...]
  /external/llvm/tools/llvm-cov/
SourceCoverageView.h 54 unsigned Line;
57 InstantiationView(StringRef FunctionName, unsigned Line,
59 : FunctionName(FunctionName), Line(Line), View(std::move(View)) {}
61 : FunctionName(std::move(RHS.FunctionName)), Line(std::move(RHS.Line)),
65 Line = std::move(RHS.Line);
72 return LHS.Line < RHS.Line;
    [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_value.h 47 u32 Line;
51 SourceLocation() : Filename(), Line(), Column() {}
52 SourceLocation(const char *Filename, unsigned Line, unsigned Column)
53 : Filename(Filename), Line(Line), Column(Column) {}
64 return SourceLocation(Filename, Line, OldColumn);
75 /// \brief Get the presumed line number.
76 unsigned getLine() const { return Line; }
77 /// \brief Get the column within the presumed line.
  /external/valgrind/none/tests/
vgprintf.stderr.exp 4 Backtrace line one
5 Line two:
  /external/llvm/lib/LineEditor/
LineEditor.cpp 1 //===-- LineEditor.cpp - line editor --------------------------------------===//
119 // the line editor business, here we are.
155 // to the end of the line, so that when we emit a newline we will be on
156 // a new blank line. The tab causes libedit to call this function again
166 // Move cursor to a blank line.
178 // the line after this.
183 // the distance between end of line and the original cursor position.
254 const char *Line = ::el_gets(Data->EL, &LineLen);
257 if (!Line || LineLen == 0)
262 (Line[LineLen - 1] == '\n' || Line[LineLen - 1] == '\r')
    [all...]
  /external/icu/icu4c/source/layoutex/layout/
ParagraphLayout.h 41 * Clients can use this to break a paragraph into lines, and to display the glyphs in each line.
57 * This class represents a single line of text in a <code>ParagraphLayout</code>. They
58 * can only be created by calling <code>ParagraphLayout::nextLine()</code>. Each line
67 class U_LAYOUTEX_API Line : public UObject
78 ~Line();
81 * Count the number of visual runs in the line.
90 * Get the ascent of the line. This is the maximum ascent
91 * of all the fonts on the line.
93 * @return the ascent of the line.
100 * 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/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/icu/icu4c/source/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/icu/icu4c/source/test/cintltst/
sorttest.c 103 typedef struct Line {
106 } Line;
109 printLines(const Line *lines) {
113 const Line *line=lines+i;
115 printf("%04x ", line->s[j]);
117 printf(" #%5d\n", line->recordNumber);
126 const Line *leftLine=(const Line *)left;
127 const Line *rightLine=(const Line *)right
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_lines.c 38 * Init the mask[] array to implement a line stipple.
47 GLuint bit = (swrast->StippleCounter / ctx->Line.StippleFactor) & 0xf;
48 if ((1 << bit) & ctx->Line.StipplePattern) {
60 * To draw a wide line we can simply redraw the span N times, side by side.
65 const GLint width = (GLint) CLAMP(ctx->Line.Width,
117 /* Simple RGBA index line (no stipple, width=1, no Z, no fog, no tex)*/
124 /* Z, fog, wide, stipple RGBA line */
129 if (ctx->Line.StippleFlag) { \
133 if (ctx->Line.Width > 1.0) { \
142 /* General-purpose line (any/all features). *
    [all...]
  /external/llvm/lib/IR/
LLVMContextImpl.h 233 unsigned Line;
238 MDNodeKeyImpl(unsigned Line, unsigned Column, Metadata *Scope,
240 : Line(Line), Column(Column), Scope(Scope), InlinedAt(InlinedAt) {}
243 : Line(L->getLine()), Column(L->getColumn()), Scope(L->getRawScope()),
247 return Line == RHS->getLine() && Column == RHS->getColumn() &&
251 return hash_combine(Line, Column, Scope, InlinedAt);
335 unsigned Line;
344 MDNodeKeyImpl(unsigned Tag, StringRef Name, Metadata *File, unsigned Line,
348 : Tag(Tag), Name(Name), File(File), Line(Line), Scope(Scope)
    [all...]
DebugInfoMetadata.cpp 22 MDLocation::MDLocation(LLVMContext &C, StorageType Storage, unsigned Line,
28 // Set line and column.
31 SubclassData32 = Line;
41 MDLocation *MDLocation::getImpl(LLVMContext &Context, unsigned Line,
52 MDLocationInfo::KeyTy(Line, Column, Scope, InlinedAt)))
65 MDLocation(Context, Storage, Line, Column, Ops),
256 unsigned Line, Metadata *Scope, Metadata *BaseType, uint64_t SizeInBits,
260 DEFINE_GETIMPL_LOOKUP(MDDerivedType, (Tag, getString(Name), File, Line, Scope,
265 MDDerivedType, (Tag, Line, SizeInBits, AlignInBits, OffsetInBits, Flags),
271 unsigned Line, Metadata *Scope, Metadata *BaseType, uint64_t SizeInBits
    [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
  /external/google-breakpad/src/processor/
module_comparer.h 74 typedef BasicSourceLineResolver::Line BasicLine;
75 typedef FastSourceLineResolver::Line FastLine;

Completed in 394 milliseconds

1 2 3 4 5 6 7 8 91011>>