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

1234567891011>>

/external/markdown/tests/misc/
H A Dheaders.txt2 Line 2
3 Line 3
/external/mesa3d/src/mesa/main/
H A Dlines.c71 if (ctx->Line.Width == width)
75 ctx->Line.Width = width;
105 if (ctx->Line.StippleFactor == factor &&
106 ctx->Line.StipplePattern == pattern)
110 ctx->Line.StippleFactor = factor;
111 ctx->Line.StipplePattern = pattern;
123 * Initializes __struct gl_contextRec::Line and line related constants in
129 ctx->Line.SmoothFlag = GL_FALSE;
130 ctx->Line.StippleFlag = GL_FALSE;
131 ctx->Line
[all...]
/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
/external/swiftshader/third_party/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/clang/lib/Format/
H A DAffectedRangeManager.cpp29 AnnotatedLine *Line = *I; local
30 Line->LeadingEmptyLinesAffected = affectsLeadingEmptyLines(*Line->First);
34 if (Line->InPPDirective) {
35 FormatToken *Last = Line->Last;
42 if (affectsTokenRange(*Line->First, *Last,
51 if (nonPPLineAffected(Line, PreviousLine))
54 PreviousLine = Line;
102 AnnotatedLine *Line, const AnnotatedLine *PreviousLine) {
104 Line
101 nonPPLineAffected( AnnotatedLine *Line, const AnnotatedLine *PreviousLine) argument
[all...]
H A DTokenAnnotator.h41 AnnotatedLine(const UnwrappedLine &Line) argument
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();
101 // FIXME: Line.Last points to other characters than tok::semi
147 void annotate(AnnotatedLine &Line);
[all...]
H A DUnwrappedLineParser.cpp39 ScopedDeclarationState(UnwrappedLine &Line, std::vector<bool> &Stack, argument
41 : Line(Line), Stack(Stack) {
42 Line.MustBeDeclaration = MustBeDeclaration;
48 Line.MustBeDeclaration = Stack.back();
50 Line.MustBeDeclaration = true;
54 UnwrappedLine &Line; member in class:clang::format::__anon1307::ScopedDeclarationState
60 ScopedMacroState(UnwrappedLine &Line, FormatTokenSource *&TokenSource, argument
62 : Line(Line), TokenSourc
108 UnwrappedLine &Line; member in class:clang::format::__anon1307::ScopedMacroState
453 isGoogScope(const UnwrappedLine &Line) argument
1974 printDebugInfo(const UnwrappedLine &Line, StringRef Prefix = �) argument
[all...]
/external/deqp/framework/referencerenderer/
H A DrrPrimitiveTypes.hpp39 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 BaseTyp
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/DebugInfo/
H A DDIContext.h29 uint32_t Line; member in class:llvm::DILineInfo
32 DILineInfo() : FileName("<invalid>"), Line(0), Column(0) {}
34 : FileName(fileName), Line(line), Column(column) {}
37 uint32_t getLine() const { return Line; }
41 return Line == RHS.Line && Column == RHS.Column &&
/external/clang/test/SemaCXX/
H A Dimplicit-member-functions.cpp96 template<typename K> struct Line;
99 Vector(const Line<K> &l);
106 template<typename K> struct Line { struct in namespace:Recursion
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/valgrind/none/tests/
H A Dvgprintf.stderr.exp5 Line two:
/external/llvm/lib/LineEditor/
H A DLineEditor.cpp260 const char *Line = ::el_gets(Data->EL, &LineLen); local
263 if (!Line || LineLen == 0)
268 (Line[LineLen - 1] == '\n' || Line[LineLen - 1] == '\r'))
273 ::history(Data->Hist, &HE, H_ENTER, Line);
275 return std::string(Line, LineLen);
304 std::string Line; local
309 if (Line.empty())
312 return Line;
314 Line
[all...]
/external/icu/icu4c/source/layoutex/layout/
H A DParagraphLayout.h69 class U_LAYOUTEX_API Line : public UObject class in class:ParagraphLayout
80 ~Line();
139 * visual run. This object is owned by the <code>Line</code> object which
140 * created it, and will remain valid for as long as the <code>Line</code>
182 inline Line();
183 inline Line(const Line &other);
184 inline Line &operator=(const Line & /*other*/) { return *this; };
200 * These objects are only created by <code>ParagraphLayout::Line</cod
665 inline ParagraphLayout::Line::Line() function in class:ParagraphLayout::Line
671 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/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugMacro.h28 uint64_t Line; member in union:llvm::DWARFDebugMacro::Entry::__anon12262
/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugMacro.cpp39 OS << " - lineno: " << E.Line;
43 OS << " - lineno: " << E.Line;
80 E.Line = data.getULEB128(&Offset);
86 E.Line = data.getULEB128(&Offset);
/external/llvm/tools/llvm-cov/
H A DSourceCoverageView.h54 unsigned Line; member in struct:llvm::InstantiationView
57 InstantiationView(StringRef FunctionName, unsigned Line, argument
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;
177 StringRef Line; member in struct:llvm::SourceCoverageView::LineRef
180 LineRef(StringRef Line, int64_t LineNo) argument
[all...]
/external/compiler-rt/lib/ubsan/
H A Dubsan_value.h47 u32 Line; member in class:__ubsan::SourceLocation
51 SourceLocation() : Filename(), Line(), Column() {}
52 SourceLocation(const char *Filename, unsigned Line, unsigned Column) argument
53 : Filename(Filename), Line(Line), Column(Column) {}
64 return SourceLocation(Filename, Line, OldColumn);
76 unsigned getLine() const { return Line; }
/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/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h510 unsigned Line; member in class:llvm::DIType
518 unsigned Line, uint64_t SizeInBits, uint64_t AlignInBits,
521 init(Line, SizeInBits, AlignInBits, OffsetInBits, Flags);
525 void init(unsigned Line, uint64_t SizeInBits, uint64_t AlignInBits, argument
527 this->Line = Line;
535 void mutate(unsigned Tag, unsigned Line, uint64_t SizeInBits, argument
539 init(Line, SizeInBits, AlignInBits, OffsetInBits, Flags);
547 unsigned getLine() const { return Line; }
670 unsigned Line, uint64_
517 DIType(LLVMContext &C, unsigned ID, StorageType Storage, unsigned Tag, unsigned Line, uint64_t SizeInBits, uint64_t AlignInBits, uint64_t OffsetInBits, unsigned Flags, ArrayRef<Metadata *> Ops) argument
669 DIDerivedType(LLVMContext &C, StorageType Storage, unsigned Tag, unsigned Line, uint64_t SizeInBits, uint64_t AlignInBits, uint64_t OffsetInBits, unsigned Flags, ArrayRef<Metadata *> Ops) argument
676 getImpl(LLVMContext &Context, unsigned Tag, StringRef Name, DIFile *File, unsigned Line, DIScopeRef Scope, DITypeRef BaseType, uint64_t SizeInBits, uint64_t AlignInBits, uint64_t OffsetInBits, unsigned Flags, Metadata *ExtraData, StorageType Storage, bool ShouldCreate = true) argument
773 DICompositeType(LLVMContext &C, StorageType Storage, unsigned Tag, unsigned Line, unsigned RuntimeLang, uint64_t SizeInBits, uint64_t AlignInBits, uint64_t OffsetInBits, unsigned Flags, ArrayRef<Metadata *> Ops) argument
783 mutate(unsigned Tag, unsigned Line, unsigned RuntimeLang, uint64_t SizeInBits, uint64_t AlignInBits, uint64_t OffsetInBits, unsigned Flags) argument
793 getImpl(LLVMContext &Context, unsigned Tag, StringRef Name, Metadata *File, unsigned Line, DIScopeRef Scope, DITypeRef BaseType, uint64_t SizeInBits, uint64_t AlignInBits, uint64_t OffsetInBits, uint64_t Flags, DINodeArray Elements, unsigned RuntimeLang, DITypeRef VTableHolder, DITemplateParameterArray TemplateParams, StringRef Identifier, StorageType Storage, bool ShouldCreate = true) argument
1184 getImpl(LLVMContext &Context, unsigned Line, unsigned Column, DILocalScope *Scope, DILocation *InlinedAt, StorageType Storage, bool ShouldCreate = true) argument
1279 unsigned Line; member in class:llvm::DICompileUnit::DISubprogram
1302 DISubprogram(LLVMContext &C, StorageType Storage, unsigned Line, unsigned ScopeLine, unsigned Virtuality, unsigned VirtualIndex, int ThisAdjustment, unsigned Flags, bool IsLocalToUnit, bool IsDefinition, bool IsOptimized, ArrayRef<Metadata *> Ops) argument
1813 unsigned Line; member in class:llvm::DICompileUnit::DIVariable
1816 DIVariable(LLVMContext &C, unsigned ID, StorageType Storage, unsigned Line, ArrayRef<Metadata *> Ops) argument
1860 DIGlobalVariable(LLVMContext &C, StorageType Storage, unsigned Line, bool IsLocalToUnit, bool IsDefinition, ArrayRef<Metadata *> Ops) argument
1868 getImpl(LLVMContext &Context, DIScope *Scope, StringRef Name, StringRef LinkageName, DIFile *File, unsigned Line, DITypeRef Type, bool IsLocalToUnit, bool IsDefinition, Constant *Variable, DIDerivedType *StaticDataMemberDeclaration, StorageType Storage, bool ShouldCreate = true) argument
1943 DILocalVariable(LLVMContext &C, StorageType Storage, unsigned Line, unsigned Arg, unsigned Flags, ArrayRef<Metadata *> Ops) argument
2246 unsigned Line; member in class:llvm::DICompileUnit::DIImportedEntity
2248 DIImportedEntity(LLVMContext &C, StorageType Storage, unsigned Tag, unsigned Line, ArrayRef<Metadata *> Ops) argument
2253 getImpl(LLVMContext &Context, unsigned Tag, DIScope *Scope, DINodeRef Entity, unsigned Line, StringRef Name, StorageType Storage, bool ShouldCreate = true) argument
2399 unsigned Line; member in class:llvm::DICompileUnit::DIMacroFile
2401 DIMacroFile(LLVMContext &C, StorageType Storage, unsigned MIType, unsigned Line, ArrayRef<Metadata *> Ops) argument
2406 getImpl(LLVMContext &Context, unsigned MIType, unsigned Line, DIFile *File, DIMacroNodeArray Elements, StorageType Storage, bool ShouldCreate = true) argument
[all...]

Completed in 572 milliseconds

1234567891011>>