/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/balsa/ |
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/mojo/public/bindings/generators/ |
mojom_cpp_generator.py | 21 class Lines(object): 22 """Helper class to maintain list of template expanded lines.""" 26 self.lines = [] 33 self.lines.append(self.template.substitute(map)) 38 repr = '\n'.join(self.lines) 39 self.lines = map(lambda l: prefix + l, repr.splitlines()) 40 return '\n'.join(self.lines) 364 closes = Lines(self.close_handles_template, indent) 365 encodes = Lines(self.struct_serialization_encode_template, indent) 367 Lines(self.struct_serialization_encode_handle_template, indent [all...] |
/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 | 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 | |