Home
last modified time | relevance | path

Searched refs:Lines (Results 1 – 25 of 222) sorted by relevance

123456789

/external/clang/lib/Format/
DBreakableToken.cpp259 TokenText.substr(2, TokenText.size() - 4).split(Lines, "\n"); in BreakableBlockComment()
262 LeadingWhitespace.resize(Lines.size()); in BreakableBlockComment()
263 StartOfLineColumn.resize(Lines.size()); in BreakableBlockComment()
265 for (size_t i = 1; i < Lines.size(); ++i) in BreakableBlockComment()
269 if (Lines.size() == 1 && !FirstInLine) { in BreakableBlockComment()
277 for (size_t i = 1, e = Lines.size(); i < e && !Decoration.empty(); ++i) { in BreakableBlockComment()
279 if (i + 1 == e && Lines[i].empty()) in BreakableBlockComment()
281 if (!Lines[i].empty() && i + 1 != e && Decoration.startswith(Lines[i])) in BreakableBlockComment()
283 while (!Lines[i].startswith(Decoration)) in BreakableBlockComment()
289 for (size_t i = 1; i < Lines.size(); ++i) { in BreakableBlockComment()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-cov/Inputs/
Dtest_-f.output2 Lines executed:100.00% of 1
5 Lines executed:100.00% of 1
8 Lines executed:100.00% of 1
11 Lines executed:0.00% of 1
14 Lines executed:0.00% of 1
17 Lines executed:100.00% of 2
20 Lines executed:0.00% of 2
23 Lines executed:100.00% of 3
26 Lines executed:100.00% of 4
29 Lines executed:91.67% of 24
[all …]
Dtest_-b_-f.output2 Lines executed:100.00% of 1
7 Lines executed:0.00% of 1
12 Lines executed:0.00% of 1
17 Lines executed:100.00% of 2
22 Lines executed:0.00% of 2
27 Lines executed:100.00% of 3
32 Lines executed:100.00% of 4
38 Lines executed:91.67% of 24
44 Lines executed:100.00% of 1
54 Lines executed:84.21% of 38
[all …]
Dtest_no_output.output2 Lines executed:100.00% of 1
5 Lines executed:84.21% of 38
Dtest_no_gcda.output2 Lines executed:0.00% of 1
6 Lines executed:0.00% of 38
/external/llvm/test/tools/llvm-cov/Inputs/
Dtest_-f.output2 Lines executed:100.00% of 1
5 Lines executed:0.00% of 1
8 Lines executed:0.00% of 1
11 Lines executed:100.00% of 2
14 Lines executed:0.00% of 2
17 Lines executed:100.00% of 3
20 Lines executed:100.00% of 4
23 Lines executed:91.67% of 24
26 Lines executed:100.00% of 1
29 Lines executed:100.00% of 1
[all …]
Dtest_-b_-f.output2 Lines executed:100.00% of 1
7 Lines executed:0.00% of 1
12 Lines executed:0.00% of 1
17 Lines executed:100.00% of 2
22 Lines executed:0.00% of 2
27 Lines executed:100.00% of 3
32 Lines executed:100.00% of 4
38 Lines executed:91.67% of 24
44 Lines executed:100.00% of 1
54 Lines executed:84.21% of 38
[all …]
Dtest_no_output.output2 Lines executed:84.21% of 38
5 Lines executed:100.00% of 1
/external/llvm/lib/Support/
DHost.cpp1047 SmallVector<StringRef, 32> Lines; in getHostCPUName() local
1048 Str.split(Lines, "\n"); in getHostCPUName()
1052 for (unsigned I = 0, E = Lines.size(); I != E; ++I) in getHostCPUName()
1053 if (Lines[I].startswith("CPU implementer")) in getHostCPUName()
1054 Implementer = Lines[I].substr(15).ltrim("\t :"); in getHostCPUName()
1058 for (unsigned I = 0, E = Lines.size(); I != E; ++I) in getHostCPUName()
1059 if (Lines[I].startswith("CPU part")) in getHostCPUName()
1063 return StringSwitch<const char *>(Lines[I].substr(8).ltrim("\t :")) in getHostCPUName()
1079 for (unsigned I = 0, E = Lines.size(); I != E; ++I) in getHostCPUName()
1080 if (Lines[I].startswith("CPU part")) in getHostCPUName()
[all …]
DSignals.cpp145 SmallVector<StringRef, 32> Lines; in printSymbolizedStackTrace() local
146 Output.split(Lines, "\n"); in printSymbolizedStackTrace()
147 auto CurLine = Lines.begin(); in printSymbolizedStackTrace()
157 if (CurLine == Lines.end()) in printSymbolizedStackTrace()
165 if (CurLine == Lines.end()) in printSymbolizedStackTrace()
DSpecialCaseList.cpp89 SmallVector<StringRef, 16> Lines; in parse() local
90 SplitString(MB->getBuffer(), Lines, "\n\r"); in parse()
92 for (auto I = Lines.begin(), E = Lines.end(); I != E; ++I, ++LineNo) { in parse()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/
DCodeViewYAMLDebugSections.cpp122 YAMLLinesSubsection() : YAMLSubsectionBase(DebugSubsectionKind::Lines) {} in YAMLLinesSubsection()
131 const DebugLinesSubsectionRef &Lines);
133 SourceLineInfo Lines; member
147 const DebugInlineeLinesSubsectionRef &Lines);
280 IO.mapRequired("Lines", Obj.Lines); in mapping()
327 IO.mapRequired("CodeSize", Lines.CodeSize); in map()
329 IO.mapRequired("Flags", Lines.Flags); in map()
330 IO.mapRequired("RelocOffset", Lines.RelocOffset); in map()
331 IO.mapRequired("RelocSegment", Lines.RelocSegment); in map()
332 IO.mapRequired("Blocks", Lines.Blocks); in map()
[all …]
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DHost.cpp1089 SmallVector<StringRef, 32> Lines; in getHostCPUName() local
1090 Str.split(Lines, "\n"); in getHostCPUName()
1094 for (unsigned I = 0, E = Lines.size(); I != E; ++I) in getHostCPUName()
1095 if (Lines[I].startswith("CPU implementer")) in getHostCPUName()
1096 Implementer = Lines[I].substr(15).ltrim("\t :"); in getHostCPUName()
1100 for (unsigned I = 0, E = Lines.size(); I != E; ++I) in getHostCPUName()
1101 if (Lines[I].startswith("CPU part")) in getHostCPUName()
1105 return StringSwitch<const char *>(Lines[I].substr(8).ltrim("\t :")) in getHostCPUName()
1121 for (unsigned I = 0, E = Lines.size(); I != E; ++I) in getHostCPUName()
1122 if (Lines[I].startswith("CPU part")) in getHostCPUName()
[all …]
DSignals.cpp145 SmallVector<StringRef, 32> Lines; in printSymbolizedStackTrace() local
146 Output.split(Lines, "\n"); in printSymbolizedStackTrace()
147 auto CurLine = Lines.begin(); in printSymbolizedStackTrace()
157 if (CurLine == Lines.end()) in printSymbolizedStackTrace()
165 if (CurLine == Lines.end()) in printSymbolizedStackTrace()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DHost.cpp153 SmallVector<StringRef, 32> Lines; in getHostCPUNameForARM() local
154 ProcCpuinfoContent.split(Lines, "\n"); in getHostCPUNameForARM()
159 for (unsigned I = 0, E = Lines.size(); I != E; ++I) { in getHostCPUNameForARM()
160 if (Lines[I].startswith("CPU implementer")) in getHostCPUNameForARM()
161 Implementer = Lines[I].substr(15).ltrim("\t :"); in getHostCPUNameForARM()
162 if (Lines[I].startswith("Hardware")) in getHostCPUNameForARM()
163 Hardware = Lines[I].substr(8).ltrim("\t :"); in getHostCPUNameForARM()
174 for (unsigned I = 0, E = Lines.size(); I != E; ++I) in getHostCPUNameForARM()
175 if (Lines[I].startswith("CPU part")) in getHostCPUNameForARM()
179 return StringSwitch<const char *>(Lines[I].substr(8).ltrim("\t :")) in getHostCPUNameForARM()
[all …]
DSignals.cpp178 SmallVector<StringRef, 32> Lines; in printSymbolizedStackTrace() local
179 Output.split(Lines, "\n"); in printSymbolizedStackTrace()
180 auto CurLine = Lines.begin(); in printSymbolizedStackTrace()
190 if (CurLine == Lines.end()) in printSymbolizedStackTrace()
198 if (CurLine == Lines.end()) in printSymbolizedStackTrace()
/external/swiftshader/third_party/LLVM/lib/VMCore/
DGCOV.cpp175 DeleteContainerSeconds(Lines); in ~GCOVBlock()
179 GCOVLines *&LinesForFile = Lines[Filename]; in addLine()
188 for (StringMap<GCOVLines *>::iterator I = Lines.begin(), in collectLineCounts()
189 E = Lines.end(); I != E; ++I) in collectLineCounts()
203 if (!Lines.empty()) { in dump()
205 for (StringMap<GCOVLines *>::iterator LI = Lines.begin(), in dump()
206 LE = Lines.end(); LI != LE; ++LI) { in dump()
221 for (SmallVector<uint32_t, 16>::iterator I = Lines.begin(), in collectLineCounts()
222 E = Lines.end(); I != E; ++I) in collectLineCounts()
228 for (SmallVector<uint32_t, 16>::iterator I = Lines.begin(), in dump()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/
DDebugLinesSubsection.cpp55 : DebugSubsectionRef(DebugSubsectionKind::Lines) {} in DebugLinesSubsectionRef()
74 : DebugSubsection(DebugSubsectionKind::Lines), Checksums(Checksums) {} in DebugLinesSubsection()
87 B.Lines.push_back(LNE); in addLineInfo()
95 assert(B.Lines.size() == B.Columns.size()); in addLineAndColumnInfo()
116 assert(B.Lines.size() == B.Columns.size() || B.Columns.empty()); in commit()
118 BlockHeader.NumLines = B.Lines.size(); in commit()
127 if (auto EC = Writer.writeArray(makeArrayRef(B.Lines))) in commit()
142 Size += B.Lines.size() * sizeof(LineNumberEntry); in calculateSerializedSize()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/PerfJITEvents/
DPerfJITEventListener.cpp81 void NotifyDebug(uint64_t CodeAddr, DILineInfoTable Lines);
273 DILineInfoTable Lines = Context->getLineInfoForAddressRange( in NotifyObjectEmitted() local
276 NotifyDebug(Addr, Lines); in NotifyObjectEmitted()
427 DILineInfoTable Lines) { in NotifyDebug() argument
431 if (Lines.empty()) in NotifyDebug()
439 rec.NrEntry = Lines.size(); in NotifyDebug()
442 DILineInfoTable::iterator Begin = Lines.begin(); in NotifyDebug()
443 DILineInfoTable::iterator End = Lines.end(); in NotifyDebug()
/external/skqp/docs/
DSkPath_Overview.bmh3 Path contains Lines and Curves which can be stroked or filled. Contour is
4 composed of a series of connected Lines and Curves. Path may contain zero,
8 Each pair of connected Lines and Curves share common Point; for instance, Path
9 containing two connected Lines are described the Path_Verb sequence:
15 Lines and Curves with as many Verbs and Points required
46 Lines and Curves is filled.
142 Even if Contour length is zero, stroked Lines are drawn if Paint_Stroke_Cap
/external/skia/docs/
DSkPath_Overview.bmh3 Path contains Lines and Curves which can be stroked or filled. Contour is
4 composed of a series of connected Lines and Curves. Path may contain zero,
8 Each pair of connected Lines and Curves share common Point; for instance, Path
9 containing two connected Lines are described the Path_Verb sequence:
15 Lines and Curves with as many Verbs and Points required
46 Lines and Curves is filled.
142 Even if Contour length is zero, stroked Lines are drawn if Paint_Stroke_Cap
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/OProfileJIT/
DOProfileJITEventListener.cpp116 DILineInfoTable Lines = Context->getLineInfoForAddressRange(Addr, Size); in NotifyObjectEmitted() local
118 size_t num_entries = Lines.size(); in NotifyObjectEmitted()
123 for (auto& It : Lines) { in NotifyObjectEmitted()
127 const_cast<char *>(Lines.front().second.FileName.c_str()); in NotifyObjectEmitted()
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DGCOV.h198 StringMap<GCOVLines *> Lines; variable
204 ~GCOVLines() { Lines.clear(); } in ~GCOVLines()
205 void add(uint32_t N) { Lines.push_back(N); } in add()
210 SmallVector<uint32_t, 4> Lines;
/external/swiftshader/third_party/LLVM/lib/Transforms/Instrumentation/
DGCOVProfiling.cpp166 Lines.push_back(Line); in addLine()
171 return lengthOfGCOVString(Filename) + 2 + Lines.size(); in length()
177 for (int i = 0, e = Lines.size(); i != e; ++i) in writeOut()
178 write(Lines[i]); in writeOut()
188 SmallVector<uint32_t, 32> Lines; member in __anon5586b7410211::GCOVLines
197 GCOVLines *&Lines = LinesByFile[Filename]; in getFile() local
198 if (!Lines) { in getFile()
199 Lines = new GCOVLines(Filename, os); in getFile()
201 return *Lines; in getFile()
400 GCOVLines &Lines = Block.getFile(SP.getFilename()); in emitGCNO() local
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
DDebugInlineeLinesSubsection.h76 Iterator begin() const { return Lines.begin(); }
77 Iterator end() const { return Lines.end(); }
81 VarStreamArray<InlineeSourceLine> Lines;

123456789