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

1 2

  /external/clang/lib/Format/
BreakableToken.cpp 225 TokenText.substr(2, TokenText.size() - 4).split(Lines, "\n");
228 LeadingWhitespace.resize(Lines.size());
229 StartOfLineColumn.resize(Lines.size());
231 for (size_t i = 1; i < Lines.size(); ++i)
235 if (Lines.size() == 1 && !FirstInLine) {
238 // lines with the first one.
243 for (size_t i = 1, e = Lines.size(); i < e && !Decoration.empty(); ++i) {
245 if (i + 1 == e && Lines[i].empty())
247 while (!Lines[i].startswith(Decoration))
253 for (size_t i = 1; i < Lines.size(); ++i)
    [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
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...]
  /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/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 (SmallVectorImpl<uint32_t>::iterator I = Lines.begin(),
224 E = Lines.end(); I != E; ++I)
230 for (SmallVectorImpl<uint32_t>::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/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/chromium/net/tools/flip_server/
balsa_frame.h 31 typedef std::vector<std::pair<size_t, size_t> > Lines;
255 Lines lines_;
  /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/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/Transforms/Instrumentation/
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/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/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/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)));

Completed in 384 milliseconds

1 2