Home
last modified time | relevance | path

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

1234

/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
Dtest_no_gcda.output2 Lines executed:0.00% of 38
6 Lines executed:0.00% of 1
Dtest_no_options.output2 Lines executed:84.21% of 38
6 Lines executed:100.00% of 1
Dtest_no_preserve_paths.output2 Lines executed:100.00% of 1
6 Lines executed:84.21% of 38
Dtest_missing.output2 Lines executed:100.00% of 1
6 Lines executed:84.21% of 38
Dtest_preserve_paths.output2 Lines executed:100.00% of 1
6 Lines executed:84.21% of 38
Dtest_long_file_names.output2 Lines executed:100.00% of 1
6 Lines executed:84.21% of 38
Dtest_-b.output2 Lines executed:84.21% of 38
9 Lines executed:100.00% of 1
Dtest_long_paths.output2 Lines executed:100.00% of 1
6 Lines executed:84.21% of 38
/external/clang/lib/Format/
DBreakableToken.cpp258 TokenText.substr(2, TokenText.size() - 4).split(Lines, "\n"); in BreakableBlockComment()
261 LeadingWhitespace.resize(Lines.size()); in BreakableBlockComment()
262 StartOfLineColumn.resize(Lines.size()); in BreakableBlockComment()
264 for (size_t i = 1; i < Lines.size(); ++i) in BreakableBlockComment()
268 if (Lines.size() == 1 && !FirstInLine) { in BreakableBlockComment()
276 for (size_t i = 1, e = Lines.size(); i < e && !Decoration.empty(); ++i) { in BreakableBlockComment()
278 if (i + 1 == e && Lines[i].empty()) in BreakableBlockComment()
280 while (!Lines[i].startswith(Decoration)) in BreakableBlockComment()
286 for (size_t i = 1; i < Lines.size(); ++i) { in BreakableBlockComment()
287 if (Lines[i].empty()) { in BreakableBlockComment()
[all …]
/external/llvm/lib/Support/
DHost.cpp600 SmallVector<StringRef, 32> Lines; in getHostCPUName() local
601 Str.split(Lines, "\n"); in getHostCPUName()
605 for (unsigned I = 0, E = Lines.size(); I != E; ++I) in getHostCPUName()
606 if (Lines[I].startswith("CPU implementer")) in getHostCPUName()
607 Implementer = Lines[I].substr(15).ltrim("\t :"); in getHostCPUName()
611 for (unsigned I = 0, E = Lines.size(); I != E; ++I) in getHostCPUName()
612 if (Lines[I].startswith("CPU part")) in getHostCPUName()
616 return StringSwitch<const char *>(Lines[I].substr(8).ltrim("\t :")) in getHostCPUName()
632 for (unsigned I = 0, E = Lines.size(); I != E; ++I) in getHostCPUName()
633 if (Lines[I].startswith("CPU part")) in getHostCPUName()
[all …]
DSpecialCaseList.cpp81 SmallVector<StringRef, 16> Lines; in parse() local
82 SplitString(MB->getBuffer(), Lines, "\n\r"); in parse()
87 for (SmallVectorImpl<StringRef>::iterator I = Lines.begin(), E = Lines.end(); in parse()
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
DIntelJITEventListener.cpp223 DILineInfoTable Lines = Context->getLineInfoForAddressRange(Addr, Size); in NotifyObjectEmitted() local
224 DILineInfoTable::iterator Begin = Lines.begin(); in NotifyObjectEmitted()
225 DILineInfoTable::iterator End = Lines.end(); in NotifyObjectEmitted()
236 SourceFileName = Lines.front().second.FileName; in NotifyObjectEmitted()
/external/llvm/lib/Transforms/Instrumentation/
DGCOVProfiling.cpp215 Lines.push_back(Line); in addLine()
220 return lengthOfGCOVString(Filename) + 2 + Lines.size(); in length()
226 for (int i = 0, e = Lines.size(); i != e; ++i) in writeOut()
227 write(Lines[i]); in writeOut()
237 SmallVector<uint32_t, 32> Lines; member in __anon6c247a230211::GCOVLines
247 GCOVLines *&Lines = LinesByFile[Filename]; in getFile() local
248 if (!Lines) { in getFile()
249 Lines = new GCOVLines(Filename, os); in getFile()
251 return *Lines; in getFile()
540 GCOVLines &Lines = Block.getFile(SP.getFilename()); in emitProfileNotes() local
[all …]
/external/chromium_org/third_party/WebKit/Source/build/scripts/templates/
DStyleBuilderFunctions.cpp.tmpl467 state.style()->setNamedGrid{{type}}Lines(RenderStyle::initialNamedGrid{{type}}Lines());
468 …state.style()->setOrderedNamedGrid{{type}}Lines(RenderStyle::initialOrderedNamedGrid{{type}}Lines(…
474 state.style()->setNamedGrid{{type}}Lines(state.parentStyle()->namedGrid{{type}}Lines());
475 …state.style()->setOrderedNamedGrid{{type}}Lines(state.parentStyle()->orderedNamedGrid{{type}}Lines
489 state.style()->setNamedGrid{{type}}Lines(namedGridLines);
490 state.style()->setOrderedNamedGrid{{type}}Lines(orderedNamedGridLines);
/external/llvm/include/llvm/Support/
DGCOV.h309 DstEdgesAreSorted(true), SrcEdges(), DstEdges(), Lines() {} in GCOVBlock()
312 void addLine(uint32_t N) { Lines.push_back(N); } in addLine()
313 uint32_t getLastLine() const { return Lines.back(); } in getLastLine()
346 SmallVector<uint32_t, 16> Lines; variable
/external/llvm/lib/DebugInfo/
DDWARFContext.cpp508 DILineInfoTable Lines; in getLineInfoForAddressRange() local
511 return Lines; in getLineInfoForAddressRange()
521 Lines.push_back(std::make_pair(Address, Result)); in getLineInfoForAddressRange()
522 return Lines; in getLineInfoForAddressRange()
530 return Lines; in getLineInfoForAddressRange()
541 Lines.push_back(std::make_pair(Row.Address, Result)); in getLineInfoForAddressRange()
544 return Lines; in getLineInfoForAddressRange()
/external/clang/include/clang/AST/
DComment.h899 ArrayRef<VerbatimBlockLineComment *> Lines; variable
915 return reinterpret_cast<child_iterator>(Lines.begin()); in child_begin()
919 return reinterpret_cast<child_iterator>(Lines.end()); in child_end()
928 Lines = L; in setLines()
936 return Lines.size(); in getNumLines()
940 return Lines[LineIdx]->getText(); in getText()
/external/llvm/lib/IR/
DGCOV.cpp326 Lines.clear(); in ~GCOVBlock()
351 for (SmallVectorImpl<uint32_t>::iterator I = Lines.begin(), in collectLineCounts()
352 E = Lines.end(); I != E; ++I) in collectLineCounts()
375 if (!Lines.empty()) { in dump()
377 for (SmallVectorImpl<uint32_t>::const_iterator I = Lines.begin(), in dump()
378 E = Lines.end(); I != E; ++I) in dump()
/external/chromium_org/net/tools/balsa/
Dbalsa_frame.h29 typedef std::vector<std::pair<size_t, size_t> > Lines; typedef
254 Lines lines_;
/external/chromium-trace/trace-viewer/third_party/closure_linter/
DREADME.chromium17 Lines ending with @supress longLineCheck do not warn.
/external/clang/unittests/AST/
DCommentParser.cpp488 struct Lines {}; struct
516 Lines, in HasVerbatimBlockAt() argument
543 Lines, in HasVerbatimBlockAt() argument
1245 Lines(), " Aaa ")); in TEST_F()
1259 Lines(), " Aaa")); in TEST_F()
1298 Lines(), " Aaa")); in TEST_F()
1323 Lines(), " Aaa")); in TEST_F()
1350 Lines(), " Aaa", " Bbb")); in TEST_F()
/external/llvm/tools/llvm-rtdyld/
Dllvm-rtdyld.cpp214 DILineInfoTable Lines = Context->getLineInfoForAddressRange(Addr, Size); in printLineInfoForInput() local
215 DILineInfoTable::iterator Begin = Lines.begin(); in printLineInfoForInput()
216 DILineInfoTable::iterator End = Lines.end(); in printLineInfoForInput()

1234