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

1 2 3

  /external/clang/lib/Format/
BreakableToken.cpp 258 TokenText.substr(2, TokenText.size() - 4).split(Lines, "\n");
261 LeadingWhitespace.resize(Lines.size());
262 StartOfLineColumn.resize(Lines.size());
264 for (size_t i = 1; i < Lines.size(); ++i)
268 if (Lines.size() == 1 && !FirstInLine) {
271 // lines with the first one.
276 for (size_t i = 1, e = Lines.size(); i < e && !Decoration.empty(); ++i) {
278 if (i + 1 == e && Lines[i].empty())
280 while (!Lines[i].startswith(Decoration))
286 for (size_t i = 1; i < Lines.size(); ++i)
    [all...]
UnwrappedLineFormatter.h 12 /// linebreaks unwrapped lines can be formatted in.
40 unsigned format(const SmallVectorImpl<AnnotatedLine *> &Lines, bool DryRun,
147 /// If \p NewLine is true, we format the nested block on separate lines, i.e.
148 /// break after the "{", format all lines with correct indentation and the put
UnwrappedLineParser.h 35 /// within an unwrapped line does not affect any other unwrapped lines.
135 // Comments are sorted into unwrapped lines by whether they are in the same
143 // The parsed lines. Only added to through \c CurrentLines.
144 SmallVector<UnwrappedLine, 8> Lines;
146 // Preprocessor directives are parsed out-of-order from other unwrapped lines.
151 // New unwrapped lines are added via CurrentLines.
152 // Usually points to \c &Lines. While parsing a preprocessor directive when
TokenAnnotator.h 99 /// \c True if the leading empty lines of this line intersect with one of the
119 /// \brief Adapts the indent levels of comment lines to the indent of the
122 void setCommentLineLevels(SmallVectorImpl<AnnotatedLine *> &Lines);
BreakableToken.h 13 /// break long lines in tokens.
41 /// \brief Returns the number of lines in this token in the original code.
183 // Rearranges the whitespace between Lines[LineIndex-1] and Lines[LineIndex],
184 // so that all whitespace between the lines is accounted to Lines[LineIndex]
186 // - Lines[LineIndex] points to the text after that whitespace
187 // - Lines[LineIndex-1] shrinks by its trailing whitespace
189 // between the end of the text of Lines[LineIndex-1] and Lines[LineIndex
    [all...]
  /external/llvm/lib/Support/
Host.cpp 628 SmallVector<StringRef, 32> Lines;
629 Str.split(Lines, "\n");
633 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
634 if (Lines[I].startswith("CPU implementer"))
635 Implementer = Lines[I].substr(15).ltrim("\t :");
639 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
640 if (Lines[I].startswith("CPU part"))
644 return StringSwitch<const char *>(Lines[I].substr(8).ltrim("\t :"))
660 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
661 if (Lines[I].startswith("CPU part")
    [all...]
SpecialCaseList.cpp 89 SmallVector<StringRef, 16> Lines;
90 SplitString(MB->getBuffer(), Lines, "\n\r");
92 for (auto I = Lines.begin(), E = Lines.end(); I != E; ++I, ++LineNo) {
93 // Ignore empty lines and lines starting with "#"
  /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/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 135 DILineInfoTable Lines = Context->getLineInfoForAddressRange(Addr, Size);
136 DILineInfoTable::iterator Begin = Lines.begin();
137 DILineInfoTable::iterator End = Lines.end();
160 SourceFileName = Lines.front().second.FileName;
  /external/deqp/framework/referencerenderer/
rrPrimitiveTypes.hpp 38 PRIMITIVETYPE_LINES, //!< Separate lines
44 PRIMITIVETYPE_LINES_ADJACENCY, //!< Separate lines (adjacency)
56 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_LINES> { typedef pa::Line Type; typedef pa::Line BaseType; typedef pa::Lines Assembler; };
  /external/llvm/lib/DebugInfo/DWARF/
DWARFContext.cpp 422 DILineInfoTable Lines;
425 return Lines;
435 Lines.push_back(std::make_pair(Address, Result));
436 return Lines;
444 return Lines;
455 Lines.push_back(std::make_pair(Row.Address, Result));
458 return Lines;
  /external/llvm/include/llvm/Support/
GCOV.h 311 DstEdges(), Lines() {}
314 void addLine(uint32_t N) { Lines.push_back(N); }
315 uint32_t getLastLine() const { return Lines.back(); }
356 SmallVector<uint32_t, 16> Lines;
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 207 // list of line numbers and a single filename, representing lines that belong
213 Lines.push_back(Line);
218 return lengthOfGCOVString(Filename) + 2 + Lines.size();
224 for (int i = 0, e = Lines.size(); i != e; ++i)
225 write(Lines[i]);
235 SmallVector<uint32_t, 32> Lines;
240 // function, number of lines belonging to each block, and a set of edges to
245 GCOVLines *&Lines = LinesByFile[Filename];
246 if (!Lines) {
247 Lines = new GCOVLines(Filename, os)
    [all...]
  /external/llvm/lib/IR/
GCOV.cpp 225 // Read lines up to, but not including, the null terminator.
370 Lines.clear();
395 for (uint32_t N : Lines)
414 if (!Lines.empty()) {
416 for (uint32_t N : Lines)
622 // 1) Ensure that the number of logical lines is only incremented
625 // number of lines executed is incremented as long as at least
757 OS << format("Lines executed:%.2f%% of %u\n",
  /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...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
scesvc.h 53 PSCESVC_CONFIGURATION_LINE Lines;
77 PSCESVC_ANALYSIS_LINE Lines;

Completed in 583 milliseconds

1 2 3