HomeSort by relevance Sort by last modified time
    Searched refs:Lines (Results 1 - 25 of 42) sorted by null

1 2

  /external/llvm/lib/Support/
Host.cpp 486 SmallVector<StringRef, 32> Lines;
487 Str.split(Lines, "\n");
491 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
492 if (Lines[I].startswith("CPU implementer"))
493 Implementer = Lines[I].substr(15).ltrim("\t :");
497 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
498 if (Lines[I].startswith("CPU part"))
502 return StringSwitch<const char *>(Lines[I].substr(8).ltrim("\t :"))
541 SmallVector<StringRef, 32> Lines;
542 Str.split(Lines, "\n")
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
BlackList.cpp 43 SmallVector<StringRef, 16> Lines;
44 SplitString(File.take()->getBuffer(), Lines, "\n\r");
46 for (SmallVector<StringRef, 16>::iterator I = Lines.begin(), E = Lines.end();
48 // Ignore empty lines and lines starting with "#"
GCOVProfiling.cpp 194 // list of line numbers and a single filename, representing lines that belong
199 Lines.push_back(Line);
204 return lengthOfGCOVString(Filename) + 2 + Lines.size();
210 for (int i = 0, e = Lines.size(); i != e; ++i)
211 write(Lines[i]);
221 SmallVector<uint32_t, 32> Lines;
225 // function, number of lines belonging to each block, and a set of edges to
230 GCOVLines *&Lines = LinesByFile[Filename];
231 if (!Lines) {
232 Lines = new GCOVLines(Filename, os)
    [all...]
  /external/llvm/lib/IR/
GCOV.cpp 177 DeleteContainerSeconds(Lines);
181 GCOVLines *&LinesForFile = Lines[Filename];
190 for (StringMap<GCOVLines *>::iterator I = Lines.begin(),
191 E = Lines.end(); I != E; ++I)
205 if (!Lines.empty()) {
207 for (StringMap<GCOVLines *>::iterator LI = Lines.begin(),
208 LE = Lines.end(); LI != LE; ++LI) {
223 for (SmallVector<uint32_t, 16>::iterator I = Lines.begin(),
224 E = Lines.end(); I != E; ++I)
230 for (SmallVector<uint32_t, 16>::iterator I = Lines.begin()
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/mesh/
VirtualIndexBuffer.java 41 case Lines:
60 if (meshMode == Mode.Triangles || meshMode == Mode.Lines || meshMode == Mode.Points){
WrappedIndexBuffer.java 13 * into a list based mode such as {@link Mode#Triangles} or {@link Mode#Lines}.
31 case Lines:
70 mesh.setMode(Mode.Lines);
  /external/llvm/include/llvm/Support/
GCOV.h 200 StringMap<GCOVLines *> Lines;
206 ~GCOVLines() { Lines.clear(); }
207 void add(uint32_t N) { Lines.push_back(N); }
212 SmallVector<uint32_t, 4> Lines;
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/debug/
Grid.java 67 // add lines along X
80 // add lines along Y
99 setMode(Mode.Lines);
WireFrustum.java 66 setMode(Mode.Lines);
WireBox.java 70 setMode(Mode.Lines);
Arrow.java 103 setMode(Mode.Lines);
SkeletonWire.java 75 setMode(Mode.Lines);
WireSphere.java 76 setMode(Mode.Lines);
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
Curve.java 135 this.setMode(Mesh.Mode.Lines);
187 this.setMode(Mesh.Mode.Lines);
224 this.setMode(Mesh.Mode.Lines);
257 this.setMode(Mesh.Mode.Lines);
Line.java 60 setMode(Mode.Lines);
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventListener.cpp 224 DILineInfoTable Lines = Context->getLineInfoForAddressRange(Addr, Size);
225 DILineInfoTable::iterator Begin = Lines.begin();
226 DILineInfoTable::iterator End = Lines.end();
237 SourceFileName = Lines.front().second.getFileName();
  /external/chromium/net/tools/flip_server/
balsa_frame.h 31 typedef std::vector<std::pair<size_t, size_t> > Lines;
255 Lines lines_;
  /external/clang/lib/Format/
UnwrappedLineParser.h 86 /// within an unwrapped line does not affect any other unwrapped lines.
164 // Comments are sorted into unwrapped lines by whether they are in the same
172 // The parsed lines. Only added to through \c CurrentLines.
173 std::vector<UnwrappedLine> Lines;
175 // Preprocessor directives are parsed out-of-order from other unwrapped lines.
180 // New unwrapped lines are added via CurrentLines.
181 // Usually points to \c &Lines. While parsing a preprocessor directive when
UnwrappedLineParser.cpp 115 Parser.CurrentLines = &Parser.Lines;
129 CurrentLines(&Lines), Diag(Diag), Style(Style), Tokens(&Tokens),
136 for (std::vector<UnwrappedLine>::iterator I = Lines.begin(),
137 E = Lines.end();
783 if (CurrentLines == &Lines && !PreprocessorDirectives.empty()) {
833 CurrentLines == &Lines;
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 166 DILineInfoTable Lines = Context->getLineInfoForAddressRange(Addr, Size);
167 DILineInfoTable::iterator Begin = Lines.begin();
168 DILineInfoTable::iterator End = Lines.end();
  /external/llvm/lib/DebugInfo/
DWARFContext.cpp 374 DILineInfoTable Lines;
377 return Lines;
398 Lines.push_back(std::make_pair(Address,
401 return Lines;
411 return Lines;
421 Lines.push_back(std::make_pair(Row.Address,
426 return Lines;
  /external/clang/include/clang/AST/
Comment.h 860 /// opening and a closing command and contains multiple lines of text
866 ArrayRef<VerbatimBlockLineComment *> Lines;
882 return reinterpret_cast<child_iterator>(Lines.begin());
886 return reinterpret_cast<child_iterator>(Lines.end());
895 Lines = L;
903 return Lines.size();
907 return Lines[LineIdx]->getText();
CommentSema.h 171 ArrayRef<VerbatimBlockLineComment *> Lines);
  /external/clang/lib/AST/
CommentParser.cpp 652 SmallVector<VerbatimBlockLineComment *, 8> Lines;
668 Lines.push_back(Line);
675 S.copyArray(llvm::makeArrayRef(Lines)));
680 S.copyArray(llvm::makeArrayRef(Lines)));
  /external/clang/unittests/AST/
CommentParser.cpp 488 struct Lines {};
504 << "VerbatimBlockComment has " << VBC->getNumLines() << " lines(s), "
516 Lines,
525 << "VerbatimBlockComment has " << VBC->getNumLines() << " lines(s), "
531 << "VerbatimBlockComment has lines[0] \"" << ActualLine0.str() << "\", "
543 Lines,
553 << "VerbatimBlockComment has " << VBC->getNumLines() << " lines(s), "
559 << "VerbatimBlockComment has lines[0] \"" << ActualLine0.str() << "\", "
565 << "VerbatimBlockComment has lines[1] \"" << ActualLine1.str() << "\", "
    [all...]

Completed in 498 milliseconds

1 2