/external/llvm/test/tools/llvm-cov/Inputs/ |
D | test_-f.output | 2 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 …]
|
D | test_-b_-f.output | 2 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 …]
|
D | test_no_output.output | 2 Lines executed:84.21% of 38 5 Lines executed:100.00% of 1
|
D | test_no_options.output | 2 Lines executed:84.21% of 38 6 Lines executed:100.00% of 1
|
D | test_no_gcda.output | 2 Lines executed:0.00% of 38 6 Lines executed:0.00% of 1
|
D | test_missing.output | 2 Lines executed:100.00% of 1 6 Lines executed:84.21% of 38
|
D | test_no_preserve_paths.output | 2 Lines executed:100.00% of 1 6 Lines executed:84.21% of 38
|
D | test_preserve_paths.output | 2 Lines executed:100.00% of 1 6 Lines executed:84.21% of 38
|
D | test_long_file_names.output | 2 Lines executed:100.00% of 1 6 Lines executed:84.21% of 38
|
D | test_-b.output | 2 Lines executed:84.21% of 38 9 Lines executed:100.00% of 1
|
D | test_long_paths.output | 2 Lines executed:100.00% of 1 6 Lines executed:84.21% of 38
|
/external/clang/lib/Format/ |
D | BreakableToken.cpp | 258 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 …]
|
D | UnwrappedLineFormatter.cpp | 337 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/ |
D | Host.cpp | 628 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 …]
|
D | SpecialCaseList.cpp | 89 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/ |
D | IntelJITEventListener.cpp | 135 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/ |
D | Curve.java | 135 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/ |
D | VirtualIndexBuffer.java | 41 case Lines: in VirtualIndexBuffer() 60 if (meshMode == Mode.Triangles || meshMode == Mode.Lines || meshMode == Mode.Points){ in get()
|
D | WrappedIndexBuffer.java | 31 case Lines: in WrappedIndexBuffer() 70 mesh.setMode(Mode.Lines); in convertToList()
|
/external/llvm/lib/DebugInfo/DWARF/ |
D | DWARFContext.cpp | 422 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/ |
D | GCOVProfiling.cpp | 213 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/ |
D | GCOV.h | 311 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/ |
D | Comment.h | 901 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/ |
D | README.chromium | 17 Lines ending with @supress longLineCheck do not warn.
|
/external/clang/unittests/AST/ |
D | CommentParser.cpp | 488 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()
|