Searched defs:Lines (Results 1 - 22 of 22) sorted by relevance

/external/clang/lib/Format/
H A DBreakableToken.h183 // 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]
192 // Lines[LineIndex] starts (note that the decoration, if present, is not
205 SmallVector<StringRef, 16> Lines; member in class:clang::format::BreakableBlockComment
208 // front of Lines[
[all...]
H A DUnwrappedLineParser.h138 SmallVector<UnwrappedLine, 8> Lines; member in class:clang::format::UnwrappedLineParser
146 // Usually points to \c &Lines. While parsing a preprocessor directive when
H A DTokenAnnotator.cpp457 // Lines can start with '}'.
1162 TokenAnnotator::setCommentLineLevels(SmallVectorImpl<AnnotatedLine *> &Lines) { argument
1164 for (SmallVectorImpl<AnnotatedLine *>::reverse_iterator I = Lines.rbegin(),
1165 E = Lines.rend();
H A DFormat.cpp799 unsigned format(const SmallVectorImpl<AnnotatedLine *> &Lines, bool DryRun, argument
803 &Lines, AdditionalIndent);
808 assert(!Lines.empty());
811 for (unsigned i = 0, e = Lines[0]->Level; i != e; ++i)
814 for (SmallVectorImpl<AnnotatedLine *>::const_iterator I = Lines.begin(),
815 E = Lines.end();
/external/llvm/lib/Support/
H A DSpecialCaseList.cpp81 SmallVector<StringRef, 16> Lines; local
82 SplitString(MB->getBuffer(), Lines, "\n\r");
87 for (SmallVectorImpl<StringRef>::iterator I = Lines.begin(), E = Lines.end();
H A DHost.cpp600 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[
708 SmallVector<StringRef, 32> Lines; local
[all...]
/external/chromium_org/net/tools/balsa/
H A Dbalsa_frame.h29 typedef std::vector<std::pair<size_t, size_t> > Lines; typedef in class:net::BalsaFrame
254 Lines lines_;
/external/deqp/framework/referencerenderer/
H A DrrPrimitiveAssembler.hpp202 struct Lines struct in namespace:rr::pa
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp223 DILineInfoTable Lines = Context->getLineInfoForAddressRange(Addr, Size); local
224 DILineInfoTable::iterator Begin = Lines.begin();
225 DILineInfoTable::iterator End = Lines.end();
236 SourceFileName = Lines.front().second.FileName;
/external/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp214 DILineInfoTable Lines = Context->getLineInfoForAddressRange(Addr, Size); local
215 DILineInfoTable::iterator Begin = Lines.begin();
216 DILineInfoTable::iterator End = Lines.end();
/external/clang/unittests/AST/
H A DCommentParser.cpp488 struct Lines {}; struct in namespace:clang::comments::__anon19530
516 Lines,
543 Lines,
1245 Lines(), " Aaa "));
1259 Lines(), " Aaa"));
1298 Lines(), " Aaa"));
1323 Lines(), " Aaa"));
1350 Lines(), " Aaa", " Bbb"));
/external/chromium_org/third_party/lcov/bin/
H A Dgenhtml4328 Lines: label
4364 push(@row_right, [[undef, "headerItem", "Lines:"],
/external/clang/lib/AST/
H A DCommentParser.cpp668 SmallVector<VerbatimBlockLineComment *, 8> Lines; local
684 Lines.push_back(Line);
691 S.copyArray(llvm::makeArrayRef(Lines)));
696 S.copyArray(llvm::makeArrayRef(Lines)));
H A DCommentSema.cpp440 ArrayRef<VerbatimBlockLineComment *> Lines) {
442 Block->setLines(Lines);
436 actOnVerbatimBlockFinish( VerbatimBlockComment *Block, SourceLocation CloseNameLocBegin, StringRef CloseName, ArrayRef<VerbatimBlockLineComment *> Lines) argument
/external/llvm/lib/DebugInfo/
H A DDWARFContext.cpp508 DILineInfoTable Lines; local
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/llvm/lib/Transforms/Instrumentation/
H A DDebugIR.cpp51 ValueMap<const Value *, unsigned int> Lines; member in class:__anon26253::ValueToLineMap
56 Lines.insert(std::make_pair(V, Out.getLine() + 1));
82 LineIter i = Lines.find(V);
83 if (i != Lines.end()) {
H A DGCOVProfiling.cpp215 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; member in class:__anon26255::GCOVLines
247 GCOVLines *&Lines = LinesByFile[Filename]; local
248 if (!Lines) {
249 Lines = new GCOVLines(Filename, os);
251 return *Lines;
540 GCOVLines &Lines local
[all...]
/external/llvm/include/llvm/Support/
H A DGCOV.h309 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; member in class:llvm::GCOVBlock
/external/clang/include/clang/AST/
H A DComment.h899 ArrayRef<VerbatimBlockLineComment *> Lines; member in class:clang::comments::ParamCommandComment::VerbatimBlockComment
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/utils/TableGen/
H A DNeonEmitter.cpp1371 std::vector<std::string> Lines; local
1389 Lines.push_back(replaceParamsIn(SI->getAsString()));
1392 Lines.push_back(DE.emitDag(DI).second + ";");
1396 assert(Lines.size() && "Empty def?");
1398 Lines.back().insert(0, RetVar.getName() + " = ");
1400 for (auto &L : Lines) {
/external/clang/lib/Driver/
H A DToolChains.cpp2870 SmallVector<StringRef, 8> Lines; local
2871 Data.split(Lines, "\n");
2873 for (unsigned i = 0, s = Lines.size(); i != s; ++i)
2874 if (Version == UnknownDistro && Lines[i].startswith("DISTRIB_CODENAME="))
2875 Version = llvm::StringSwitch<Distro>(Lines[i].substr(17))
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 580 milliseconds