Home
last modified time | relevance | path

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

123

/external/llvm/lib/Support/
DHost.cpp486 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/
DGCOV.cpp177 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/
DBlackList.cpp43 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()
DGCOVProfiling.cpp199 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/
DGCOV.h200 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/
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()
DLine.java60 setMode(Mode.Lines); in Line()
/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/ExecutionEngine/IntelJITEvents/
DIntelJITEventListener.cpp224 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/
DDWARFContext.cpp374 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/
Dllvm-rtdyld.cpp166 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/
DUnwrappedLineParser.cpp115 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()
DUnwrappedLineParser.h173 std::vector<UnwrappedLine> Lines; variable
/external/chromium/net/tools/flip_server/
Dbalsa_frame.h31 typedef std::vector<std::pair<size_t, size_t> > Lines; typedef
255 Lines lines_;
/external/clang/include/clang/AST/
DComment.h866 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/
DCommentParser.cpp488 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/
DHELP.TXT33 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/
DWireFrustum.java66 setMode(Mode.Lines); in WireFrustum()
DGrid.java99 setMode(Mode.Lines); in Grid()
DWireBox.java70 setMode(Mode.Lines); in WireBox()
DArrow.java103 setMode(Mode.Lines); in Arrow()
/external/mdnsresponder/mDNSPosix/
DServices.txt4 # Lines beginning with '#' are comments/ignored.
/external/clang/lib/AST/
DCommentParser.cpp652 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.gitignore2 # Lines that start with '#' are comments.

123