/external/llvm/lib/Support/ |
D | Host.cpp | 486 SmallVector<StringRef, 32> Lines; in getHostCPUName() local 487 Str.split(Lines, "\n"); in getHostCPUName() 491 for (unsigned I = 0, E = Lines.size(); I != E; ++I) in getHostCPUName() 492 if (Lines[I].startswith("CPU implementer")) in getHostCPUName() 493 Implementer = Lines[I].substr(15).ltrim("\t :"); in getHostCPUName() 497 for (unsigned I = 0, E = Lines.size(); I != E; ++I) in getHostCPUName() 498 if (Lines[I].startswith("CPU part")) in getHostCPUName() 502 return StringSwitch<const char *>(Lines[I].substr(8).ltrim("\t :")) in getHostCPUName() 541 SmallVector<StringRef, 32> Lines; in getHostCPUFeatures() local 542 Str.split(Lines, "\n"); in getHostCPUFeatures() [all …]
|
/external/llvm/lib/IR/ |
D | GCOV.cpp | 177 DeleteContainerSeconds(Lines); in ~GCOVBlock() 181 GCOVLines *&LinesForFile = Lines[Filename]; in addLine() 190 for (StringMap<GCOVLines *>::iterator I = Lines.begin(), in collectLineCounts() 191 E = Lines.end(); I != E; ++I) in collectLineCounts() 205 if (!Lines.empty()) { in dump() 207 for (StringMap<GCOVLines *>::iterator LI = Lines.begin(), in dump() 208 LE = Lines.end(); LI != LE; ++LI) { in dump() 223 for (SmallVector<uint32_t, 16>::iterator I = Lines.begin(), in collectLineCounts() 224 E = Lines.end(); I != E; ++I) in collectLineCounts() 230 for (SmallVector<uint32_t, 16>::iterator I = Lines.begin(), in dump() [all …]
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | BlackList.cpp | 43 SmallVector<StringRef, 16> Lines; in BlackList() local 44 SplitString(File.take()->getBuffer(), Lines, "\n\r"); in BlackList() 46 for (SmallVector<StringRef, 16>::iterator I = Lines.begin(), E = Lines.end(); in BlackList()
|
D | GCOVProfiling.cpp | 199 Lines.push_back(Line); in addLine() 204 return lengthOfGCOVString(Filename) + 2 + Lines.size(); in length() 210 for (int i = 0, e = Lines.size(); i != e; ++i) in writeOut() 211 write(Lines[i]); in writeOut() 221 SmallVector<uint32_t, 32> Lines; member in __anona7842e720211::GCOVLines 230 GCOVLines *&Lines = LinesByFile[Filename]; in getFile() local 231 if (!Lines) { in getFile() 232 Lines = new GCOVLines(Filename, os); in getFile() 234 return *Lines; in getFile() 435 GCOVLines &Lines = Block.getFile(SP.getFilename()); in emitProfileNotes() local [all …]
|
/external/llvm/include/llvm/Support/ |
D | GCOV.h | 200 StringMap<GCOVLines *> Lines; variable 206 ~GCOVLines() { Lines.clear(); } in ~GCOVLines() 207 void add(uint32_t N) { Lines.push_back(N); } in add() 212 SmallVector<uint32_t, 4> Lines;
|
/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()
|
D | Line.java | 60 setMode(Mode.Lines); in Line()
|
/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/ExecutionEngine/IntelJITEvents/ |
D | IntelJITEventListener.cpp | 224 DILineInfoTable Lines = Context->getLineInfoForAddressRange(Addr, Size); in NotifyObjectEmitted() local 225 DILineInfoTable::iterator Begin = Lines.begin(); in NotifyObjectEmitted() 226 DILineInfoTable::iterator End = Lines.end(); in NotifyObjectEmitted() 237 SourceFileName = Lines.front().second.getFileName(); in NotifyObjectEmitted()
|
/external/llvm/lib/DebugInfo/ |
D | DWARFContext.cpp | 374 DILineInfoTable Lines; in getLineInfoForAddressRange() local 377 return Lines; in getLineInfoForAddressRange() 398 Lines.push_back(std::make_pair(Address, in getLineInfoForAddressRange() 401 return Lines; in getLineInfoForAddressRange() 411 return Lines; in getLineInfoForAddressRange() 421 Lines.push_back(std::make_pair(Row.Address, in getLineInfoForAddressRange() 426 return Lines; in getLineInfoForAddressRange()
|
/external/llvm/tools/llvm-rtdyld/ |
D | llvm-rtdyld.cpp | 166 DILineInfoTable Lines = Context->getLineInfoForAddressRange(Addr, Size); in printLineInfoForInput() local 167 DILineInfoTable::iterator Begin = Lines.begin(); in printLineInfoForInput() 168 DILineInfoTable::iterator End = Lines.end(); in printLineInfoForInput()
|
/external/clang/lib/Format/ |
D | UnwrappedLineParser.cpp | 115 Parser.CurrentLines = &Parser.Lines; in ~ScopedLineState() 129 CurrentLines(&Lines), Diag(Diag), Style(Style), Tokens(&Tokens), in UnwrappedLineParser() 136 for (std::vector<UnwrappedLine>::iterator I = Lines.begin(), in parse() 137 E = Lines.end(); in parse() 783 if (CurrentLines == &Lines && !PreprocessorDirectives.empty()) { in addUnwrappedLine() 833 CurrentLines == &Lines; in readToken()
|
D | UnwrappedLineParser.h | 173 std::vector<UnwrappedLine> Lines; variable
|
/external/chromium/net/tools/flip_server/ |
D | balsa_frame.h | 31 typedef std::vector<std::pair<size_t, size_t> > Lines; typedef 255 Lines lines_;
|
/external/clang/include/clang/AST/ |
D | Comment.h | 866 ArrayRef<VerbatimBlockLineComment *> Lines; variable 882 return reinterpret_cast<child_iterator>(Lines.begin()); in child_begin() 886 return reinterpret_cast<child_iterator>(Lines.end()); in child_end() 895 Lines = L; in setLines() 903 return Lines.size(); in getNumLines() 907 return Lines[LineIdx]->getText(); in getText()
|
/external/clang/unittests/AST/ |
D | CommentParser.cpp | 488 struct Lines {}; struct 516 Lines, in HasVerbatimBlockAt() argument 543 Lines, in HasVerbatimBlockAt() argument 1220 Lines(), " Aaa ")); in TEST_F() 1234 Lines(), " Aaa")); in TEST_F() 1273 Lines(), " Aaa")); in TEST_F() 1298 Lines(), " Aaa")); in TEST_F() 1325 Lines(), " Aaa", " Bbb")); in TEST_F()
|
/external/quake/quake/src/WinQuake/data/ |
D | HELP.TXT | 33 Lines Open from 12 noon to 10pm Central Time, 7 Days a 48 Lines Open 24 hours a day, 365 days a year, or 366 days 101 Lines Open 24 hours a day, 365 days a year, or 366 days
|
/external/jmonkeyengine/engine/src/core/com/jme3/scene/debug/ |
D | WireFrustum.java | 66 setMode(Mode.Lines); in WireFrustum()
|
D | Grid.java | 99 setMode(Mode.Lines); in Grid()
|
D | WireBox.java | 70 setMode(Mode.Lines); in WireBox()
|
D | Arrow.java | 103 setMode(Mode.Lines); in Arrow()
|
/external/mdnsresponder/mDNSPosix/ |
D | Services.txt | 4 # Lines beginning with '#' are comments/ignored.
|
/external/clang/lib/AST/ |
D | CommentParser.cpp | 652 SmallVector<VerbatimBlockLineComment *, 8> Lines; in parseVerbatimBlock() local 668 Lines.push_back(Line); in parseVerbatimBlock() 675 S.copyArray(llvm::makeArrayRef(Lines))); in parseVerbatimBlock() 680 S.copyArray(llvm::makeArrayRef(Lines))); in parseVerbatimBlock()
|
/external/protobuf/ |
D | .gitignore | 2 # Lines that start with '#' are comments.
|