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

  /external/llvm/lib/Support/
SpecialCaseList.cpp 81 SmallVector<StringRef, 16> Lines;
82 SplitString(MB->getBuffer(), Lines, "\n\r");
87 for (SmallVectorImpl<StringRef>::iterator I = Lines.begin(), E = Lines.end();
89 // Ignore empty lines and lines starting with "#"
Host.cpp 600 SmallVector<StringRef, 32> Lines;
601 Str.split(Lines, "\n");
605 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
606 if (Lines[I].startswith("CPU implementer"))
607 Implementer = Lines[I].substr(15).ltrim("\t :");
611 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
612 if (Lines[I].startswith("CPU part"))
616 return StringSwitch<const char *>(Lines[I].substr(8).ltrim("\t :"))
632 for (unsigned I = 0, E = Lines.size(); I != E; ++I)
633 if (Lines[I].startswith("CPU part")
    [all...]
  /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.
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...]
UnwrappedLineParser.h 34 /// within an unwrapped line does not affect any other unwrapped lines.
129 // Comments are sorted into unwrapped lines by whether they are in the same
137 // The parsed lines. Only added to through \c CurrentLines.
138 SmallVector<UnwrappedLine, 8> Lines;
140 // Preprocessor directives are parsed out-of-order from other unwrapped lines.
145 // New unwrapped lines are added via CurrentLines.
146 // Usually points to \c &Lines. While parsing a preprocessor directive when
  /external/deqp/framework/referencerenderer/
rrPrimitiveAssembler.hpp 202 struct Lines
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 214 DILineInfoTable Lines = Context->getLineInfoForAddressRange(Addr, Size);
215 DILineInfoTable::iterator Begin = Lines.begin();
216 DILineInfoTable::iterator End = Lines.end();
  /external/chromium_org/net/tools/balsa/
balsa_frame.h 29 typedef std::vector<std::pair<size_t, size_t> > Lines;
254 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/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventListener.cpp 223 DILineInfoTable Lines = Context->getLineInfoForAddressRange(Addr, Size);
224 DILineInfoTable::iterator Begin = Lines.begin();
225 DILineInfoTable::iterator End = Lines.end();
236 SourceFileName = Lines.front().second.FileName;
  /external/llvm/lib/DebugInfo/
DWARFContext.cpp 508 DILineInfoTable Lines;
511 return Lines;
521 Lines.push_back(std::make_pair(Address, Result));
522 return Lines;
530 return Lines;
541 Lines.push_back(std::make_pair(Row.Address, Result));
544 return Lines;
  /external/chromium_org/third_party/lcov/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.
279 our $highlight; # If set, highlight lines covered by converted data only
599 --highlight Highlight lines with converted-only data
664 info(" lines......: %s\n",
665 get_overall_line($ln_found, $ln_hit, "line", "lines"))
1039 # Return hash of line numbers of those lines which were only covered i
    [all...]
  /external/clang/lib/AST/
CommentParser.cpp 668 SmallVector<VerbatimBlockLineComment *, 8> Lines;
684 Lines.push_back(Line);
691 S.copyArray(llvm::makeArrayRef(Lines)));
696 S.copyArray(llvm::makeArrayRef(Lines)));
  /external/llvm/include/llvm/Support/
GCOV.h 309 DstEdgesAreSorted(true), SrcEdges(), DstEdges(), Lines() {}
312 void addLine(uint32_t N) { Lines.push_back(N); }
313 uint32_t getLastLine() const { return Lines.back(); }
346 SmallVector<uint32_t, 16> Lines;
  /external/llvm/lib/Transforms/Instrumentation/
DebugIR.cpp 51 ValueMap<const Value *, unsigned int> Lines;
56 Lines.insert(std::make_pair(V, Out.getLine() + 1));
82 LineIter i = Lines.find(V);
83 if (i != Lines.end()) {
GCOVProfiling.cpp 209 // list of line numbers and a single filename, representing lines that belong
215 Lines.push_back(Line);
220 return lengthOfGCOVString(Filename) + 2 + Lines.size();
226 for (int i = 0, e = Lines.size(); i != e; ++i)
227 write(Lines[i]);
237 SmallVector<uint32_t, 32> Lines;
242 // function, number of lines belonging to each block, and a set of edges to
247 GCOVLines *&Lines = LinesByFile[Filename];
248 if (!Lines) {
249 Lines = new GCOVLines(Filename, os)
    [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;
ksmedia.h     [all...]
  /external/clang/include/clang/AST/
Comment.h 893 /// opening and a closing command and contains multiple lines of text
899 ArrayRef<VerbatimBlockLineComment *> Lines;
915 return reinterpret_cast<child_iterator>(Lines.begin());
919 return reinterpret_cast<child_iterator>(Lines.end());
928 Lines = L;
936 return Lines.size();
940 return Lines[LineIdx]->getText();
  /external/clang/lib/Driver/
ToolChains.cpp     [all...]
  /external/clang/utils/TableGen/
NeonEmitter.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.jasper_5.5.17.v201004212143.jar 

Completed in 2147 milliseconds