HomeSort by relevance Sort by last modified time
    Searched defs:Lines (Results 1 - 19 of 19) sorted by null

  /external/clang/lib/Format/
BreakableToken.h 13 /// break long lines in tokens.
41 /// \brief Returns the number of lines in this token in the original code.
164 // Rearranges the whitespace between Lines[LineIndex-1] and Lines[LineIndex],
165 // so that all whitespace between the lines is accounted to Lines[LineIndex]
167 // - Lines[LineIndex] points to the text after that whitespace
168 // - Lines[LineIndex-1] shrinks by its trailing whitespace
170 // between the end of the text of Lines[LineIndex-1] and Lines[LineIndex
    [all...]
UnwrappedLineParser.h 32 /// within an unwrapped line does not affect any other unwrapped lines.
110 // Comments are sorted into unwrapped lines by whether they are in the same
118 // The parsed lines. Only added to through \c CurrentLines.
119 std::vector<UnwrappedLine> Lines;
121 // Preprocessor directives are parsed out-of-order from other unwrapped lines.
126 // New unwrapped lines are added via CurrentLines.
127 // Usually points to \c &Lines. While parsing a preprocessor directive when
  /external/llvm/lib/Transforms/Utils/
SpecialCaseList.cpp 70 SmallVector<StringRef, 16> Lines;
71 SplitString(MB->getBuffer(), Lines, "\n\r");
73 for (SmallVectorImpl<StringRef>::iterator I = Lines.begin(), E = Lines.end();
75 // Ignore empty lines and lines starting with "#"
  /external/llvm/lib/Support/
Host.cpp 517 SmallVector<StringRef, 32> Lines;
518 Str.split(Lines, "\n");
522 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
523 if (Lines[I].startswith("CPU implementer"))
524 Implementer = Lines[I].substr(15).ltrim("\t :");
528 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
529 if (Lines[I].startswith("CPU part"))
533 return StringSwitch<const char *>(Lines[I].substr(8).ltrim("\t :"))
572 SmallVector<StringRef, 32> Lines;
573 Str.split(Lines, "\n")
    [all...]
  /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/chromium_org/net/tools/flip_server/
balsa_frame.h 31 typedef std::vector<std::pair<size_t, size_t> > Lines;
256 Lines 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...]
  /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/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/llvm/lib/DebugInfo/
DWARFContext.cpp 402 DILineInfoTable Lines;
405 return Lines;
426 Lines.push_back(std::make_pair(Address,
429 return Lines;
439 return Lines;
449 Lines.push_back(std::make_pair(Row.Address,
454 return Lines;
  /external/chromium_org/third_party/lcov-1.9/bin/
genhtml 36 # actually hit some source lines are kept
100 # difference in lines between the position a user selected from the overview
106 # line in the window. This number specifies that offset in lines.
110 # few lines before the first line of code of that function. This number
111 # specifies that offset in lines.
271 our $highlight; # If set, highlight lines covered by converted data only
562 --highlight Highlight lines with converted-only data
628 info(" lines......: %s\n",
629 get_overall_line($ln_found, $ln_hit, "line", "lines"))
995 # Return hash of line numbers of those lines which were only covered i
    [all...]
  /external/clang/lib/AST/
CommentParser.cpp 647 SmallVector<VerbatimBlockLineComment *, 8> Lines;
663 Lines.push_back(Line);
670 S.copyArray(llvm::makeArrayRef(Lines)));
675 S.copyArray(llvm::makeArrayRef(Lines)));
  /external/llvm/lib/Transforms/Instrumentation/
DebugIR.cpp 52 ValueMap<const Value *, unsigned int> Lines;
57 Lines.insert(std::make_pair(V, Out.getLine() + 1));
82 LineIter i = Lines.find(V);
83 if (i != Lines.end()) {
GCOVProfiling.cpp 203 // list of line numbers and a single filename, representing lines that belong
208 Lines.push_back(Line);
213 return lengthOfGCOVString(Filename) + 2 + Lines.size();
219 for (int i = 0, e = Lines.size(); i != e; ++i)
220 write(Lines[i]);
230 SmallVector<uint32_t, 32> Lines;
243 // function, number of lines belonging to each block, and a set of edges to
248 GCOVLines *&Lines = LinesByFile[Filename];
249 if (!Lines) {
250 Lines = new GCOVLines(Filename, os)
    [all...]
  /external/clang/include/clang/AST/
Comment.h 874 /// opening and a closing command and contains multiple lines of text
880 ArrayRef<VerbatimBlockLineComment *> Lines;
896 return reinterpret_cast<child_iterator>(Lines.begin());
900 return reinterpret_cast<child_iterator>(Lines.end());
909 Lines = L;
917 return Lines.size();
921 return Lines[LineIdx]->getText();
  /external/clang/lib/Driver/
ToolChains.cpp     [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
Mesh.java 68 * <li>Lines - 2 vertices represent a line segment, with the width specified
91 * to set the width of the lines.
93 Lines(true),
99 * be used to set the width of the lines.
107 * to set the width of the lines.
150 * Will return true for the types {@link #Points}, {@link #Lines} and
525 * as {@link Mode#Lines}. The line width is specified as on-screen pixels,
662 case Lines:
725 * number of elements/primitives, e.g. how many lines or how many points,
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.jasper_5.5.17.v201004212143.jar 

Completed in 1091 milliseconds