Home
last modified time | relevance | path

Searched refs:Lines (Results 1 – 25 of 87) 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_options.output2 Lines executed:84.21% of 38
6 Lines executed:100.00% of 1
Dtest_no_gcda.output2 Lines executed:0.00% of 38
6 Lines executed:0.00% of 1
Dtest_missing.output2 Lines executed:100.00% of 1
6 Lines executed:84.21% of 38
Dtest_no_preserve_paths.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 …]
DUnwrappedLineFormatter.cpp337 UnwrappedLineFormatter::format(const SmallVectorImpl<AnnotatedLine *> &Lines, in format() argument
344 &Lines, AdditionalIndent); in format()
349 assert(!Lines.empty()); in format()
352 for (unsigned i = 0, e = Lines[0]->Level; i != e; ++i) in format()
355 for (SmallVectorImpl<AnnotatedLine *>::const_iterator I = Lines.begin(), in format()
356 E = Lines.end(); in format()
/external/llvm/lib/Support/
DHost.cpp628 SmallVector<StringRef, 32> Lines; in getHostCPUName() local
629 Str.split(Lines, "\n"); in getHostCPUName()
633 for (unsigned I = 0, E = Lines.size(); I != E; ++I) in getHostCPUName()
634 if (Lines[I].startswith("CPU implementer")) in getHostCPUName()
635 Implementer = Lines[I].substr(15).ltrim("\t :"); in getHostCPUName()
639 for (unsigned I = 0, E = Lines.size(); I != E; ++I) in getHostCPUName()
640 if (Lines[I].startswith("CPU part")) in getHostCPUName()
644 return StringSwitch<const char *>(Lines[I].substr(8).ltrim("\t :")) in getHostCPUName()
660 for (unsigned I = 0, E = Lines.size(); I != E; ++I) in getHostCPUName()
661 if (Lines[I].startswith("CPU part")) in getHostCPUName()
[all …]
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/llvm/lib/ExecutionEngine/IntelJITEvents/
DIntelJITEventListener.cpp135 DILineInfoTable Lines = Context->getLineInfoForAddressRange(Addr, Size); in NotifyObjectEmitted() local
136 DILineInfoTable::iterator Begin = Lines.begin(); in NotifyObjectEmitted()
137 DILineInfoTable::iterator End = Lines.end(); in NotifyObjectEmitted()
160 SourceFileName = Lines.front().second.FileName; in NotifyObjectEmitted()
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
DCurve.java135 this.setMode(Mesh.Mode.Lines); in createCatmullRomMesh()
187 this.setMode(Mesh.Mode.Lines); in createBezierMesh()
224 this.setMode(Mesh.Mode.Lines); in createNurbMesh()
257 this.setMode(Mesh.Mode.Lines); in createLinearMesh()
/external/jmonkeyengine/engine/src/core/com/jme3/scene/mesh/
DVirtualIndexBuffer.java41 case Lines: in VirtualIndexBuffer()
60 if (meshMode == Mode.Triangles || meshMode == Mode.Lines || meshMode == Mode.Points){ in get()
DWrappedIndexBuffer.java31 case Lines: in WrappedIndexBuffer()
70 mesh.setMode(Mode.Lines); in convertToList()
/external/llvm/lib/DebugInfo/DWARF/
DDWARFContext.cpp422 DILineInfoTable Lines; in getLineInfoForAddressRange() local
425 return Lines; in getLineInfoForAddressRange()
435 Lines.push_back(std::make_pair(Address, Result)); in getLineInfoForAddressRange()
436 return Lines; in getLineInfoForAddressRange()
444 return Lines; in getLineInfoForAddressRange()
455 Lines.push_back(std::make_pair(Row.Address, Result)); in getLineInfoForAddressRange()
458 return Lines; in getLineInfoForAddressRange()
/external/llvm/lib/Transforms/Instrumentation/
DGCOVProfiling.cpp213 Lines.push_back(Line); in addLine()
218 return lengthOfGCOVString(Filename) + 2 + Lines.size(); in length()
224 for (int i = 0, e = Lines.size(); i != e; ++i) in writeOut()
225 write(Lines[i]); in writeOut()
235 SmallVector<uint32_t, 32> Lines; member in __anonb9b0140c0211::GCOVLines
245 GCOVLines *&Lines = LinesByFile[Filename]; in getFile() local
246 if (!Lines) { in getFile()
247 Lines = new GCOVLines(Filename, os); in getFile()
249 return *Lines; in getFile()
544 GCOVLines &Lines = Block.getFile(SP->getFilename()); in emitProfileNotes() local
[all …]
/external/llvm/include/llvm/Support/
DGCOV.h311 DstEdges(), Lines() {} in GCOVBlock()
314 void addLine(uint32_t N) { Lines.push_back(N); } in addLine()
315 uint32_t getLastLine() const { return Lines.back(); } in getLastLine()
356 SmallVector<uint32_t, 16> Lines; variable
/external/clang/include/clang/AST/
DComment.h901 ArrayRef<VerbatimBlockLineComment *> Lines; variable
917 return reinterpret_cast<child_iterator>(Lines.begin()); in child_begin()
921 return reinterpret_cast<child_iterator>(Lines.end()); in child_end()
930 Lines = L; in setLines()
938 return Lines.size(); in getNumLines()
942 return Lines[LineIdx]->getText(); in getText()
/external/chromium-trace/trace-viewer/tracing/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()

1234