/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_gcda.output | 2 Lines executed:0.00% of 38 6 Lines executed:0.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_preserve_paths.output | 2 Lines executed:100.00% of 1 6 Lines executed:84.21% of 38
|
D | test_missing.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 …]
|
/external/llvm/lib/Support/ |
D | Host.cpp | 600 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 …]
|
D | SpecialCaseList.cpp | 81 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/ |
D | IntelJITEventListener.cpp | 223 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/ |
D | GCOVProfiling.cpp | 215 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/ |
D | StyleBuilderFunctions.cpp.tmpl | 467 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/ |
D | GCOV.h | 309 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/ |
D | DWARFContext.cpp | 508 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/ |
D | Comment.h | 899 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/ |
D | GCOV.cpp | 326 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/ |
D | balsa_frame.h | 29 typedef std::vector<std::pair<size_t, size_t> > Lines; typedef 254 Lines lines_;
|
/external/chromium-trace/trace-viewer/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()
|
/external/llvm/tools/llvm-rtdyld/ |
D | llvm-rtdyld.cpp | 214 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()
|