/external/markdown/tests/misc/ |
headers.txt | 2 Line 2 3 Line 3
|
/external/llvm/include/llvm/DebugInfo/ |
DIContext.h | 26 /// DILineInfo - a format-neutral container for source line information. 29 uint32_t Line; 32 DILineInfo() : FileName("<invalid>"), Line(0), Column(0) {} 33 DILineInfo(const char *fileName, uint32_t line, uint32_t column) 34 : FileName(fileName), Line(line), Column(column) {} 37 uint32_t getLine() const { return Line; } 41 return Line == RHS.Line && Column == RHS.Column &&
|
/external/llvm/lib/Support/ |
Memory.cpp | 61 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize) 62 asm volatile("dcbf 0, %0" : : "r"(Line)); 65 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize) 66 asm volatile("icbi 0, %0" : : "r"(Line));
|
/external/skia/src/animator/ |
SkDrawLine.h | 25 DECLARE_MEMBER_INFO(Line);
|
/external/skia/src/svg/ |
SkSVGLine.h | 24 DECLARE_SVG_INFO(Line);
|
SkSVGLine.cpp | 28 DEFINE_SVG_INFO(Line) 31 parser._startElement("line");
|
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/ |
3d-cube.js | 193 if (!Q.Line[0]) { DrawLine(Q[0], Q[1]); Q.Line[0] = true; }; 194 if (!Q.Line[1]) { DrawLine(Q[1], Q[2]); Q.Line[1] = true; }; 195 if (!Q.Line[2]) { DrawLine(Q[2], Q[3]); Q.Line[2] = true; }; 196 if (!Q.Line[3]) { DrawLine(Q[3], Q[0]); Q.Line[3] = true; }; 199 if (!Q.Line[2]) { DrawLine(Q[3], Q[2]); Q.Line[2] = true; } [all...] |
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/ |
3d-cube.js | 193 if (!Q.Line[0]) { DrawLine(Q[0], Q[1]); Q.Line[0] = true; }; 194 if (!Q.Line[1]) { DrawLine(Q[1], Q[2]); Q.Line[1] = true; }; 195 if (!Q.Line[2]) { DrawLine(Q[2], Q[3]); Q.Line[2] = true; }; 196 if (!Q.Line[3]) { DrawLine(Q[3], Q[0]); Q.Line[3] = true; }; 199 if (!Q.Line[2]) { DrawLine(Q[3], Q[2]); Q.Line[2] = true; } [all...] |
/external/bluetooth/glib/tests/ |
unicode-collate.c | 13 } Line; 19 const Line *line_a = a; 20 const Line *line_b = b; 28 const Line *line_a = a; 29 const Line *line_b = b; 38 GArray *line_array = g_array_new (FALSE, FALSE, sizeof(Line)); 95 Line line; local 103 line.key = g_utf8_collate_key_for_filename (str, -1); 105 line.key = g_utf8_collate_key (str, -1) [all...] |
/external/skia/src/text/ |
SkTextLayout.cpp | 58 struct SkTextLayout::Line { 59 Line() {} 60 ~Line(); 66 SkTextLayout::Line::~Line() {
|
/external/skia/include/text/ |
SkTextLayout.h | 44 struct Line; 46 SkTDArray<Line*> fLines;
|
/external/valgrind/main/none/tests/ |
vgprintf.stderr.exp | 4 Backtrace line one 5 Line two:
|
/external/icu4c/layoutex/layout/ |
ParagraphLayout.h | 41 * Clients can use this to break a paragraph into lines, and to display the glyphs in each line. 50 * This class represents a single line of text in a <code>ParagraphLayout</code>. They 51 * can only be created by calling <code>ParagraphLayout::nextLine()</code>. Each line 60 class U_LAYOUTEX_API Line : public UObject 71 ~Line(); 74 * Count the number of visual runs in the line. 83 * Get the ascent of the line. This is the maximum ascent 84 * of all the fonts on the line. 86 * @return the ascent of the line. 93 * Get the descent of the line. This is the maximum descen [all...] |
/external/icu4c/layoutex/ |
playout.cpp | 143 pl_closeLine(pl_line *line) 145 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; 151 pl_countLineRuns(const pl_line *line) 153 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; 163 pl_getLineAscent(const pl_line *line) 165 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line [all...] |
ParagraphLayout.cpp | 662 ParagraphLayout::Line *ParagraphLayout::nextLine(float width) 678 // If no glyphs fit on the line, force one to fit. 681 // start of a line unless the paragraph consists of 684 // the previous line...) 1006 ParagraphLayout::Line *ParagraphLayout::computeVisualRuns() 1023 Line *line = new Line(); local 1040 appendRun(line, run, firstChar, lastChar); 1044 return line; [all...] |
/external/icu4c/test/perf/collationperf/ |
collperf.cpp | 20 // A file of names is required as input, one per line. It must be in utf-8 or utf-16 format, 102 // Command line option variables 104 // on the command line by the user. 138 // Definitions for the command line options 187 // struct Line 189 // Each line from the source file (containing a name, presumably) gets 192 struct Line { 203 Line *gFileLines; // Ptr to array of Line structs, one per line in the file 370 int line; local 467 int line; local 1160 int line; local 1605 int line; local [all...] |
/external/clang/include/clang/Frontend/ |
CommandLineSourceLoc.h | 11 // Command line parsing for source locations. 24 /// \brief A source location that has been parsed on the command line. 27 unsigned Line; 41 !LineSplit.second.getAsInteger(10, PSL.Line)) { 44 // On the command-line, stdin may be specified via "-". Inside the 58 /// \brief Command-line option parser that parses source locations. 60 /// Source locations are of the form filename:line:column. 78 << "source location must be of the form filename:line:column\n";
|
LogDiagnosticPrinter.h | 24 /// The primary message line of the diagnostic. 30 /// The source file line number, if available. 31 unsigned Line;
|
/external/icu4c/samples/layout/ |
paragraph.h | 49 void addLine(const ParagraphLayout::Line *line); 61 const ParagraphLayout::Line **fLines;
|
paragraph.cpp | 94 fLines = LE_NEW_ARRAY(const ParagraphLayout::Line *, fLinesMax); 162 for (le_int32 line = 0; line < fLineCount; line += 1) { 163 delete /*(LineInfo *)*/ fLines[line]; 171 void Paragraph::addLine(const ParagraphLayout::Line *line) 174 fLines = (const ParagraphLayout::Line **) LE_GROW_ARRAY(fLines, fLinesMax + fLinesGrow); 178 fLines[fLineCount++] = line; 193 const ParagraphLayout::Line *line local 224 const ParagraphLayout::Line *line = fLines[li]; local [all...] |
/external/llvm/lib/DebugInfo/ |
DWARFContext.cpp | 83 if (!Line) 84 Line.reset(new DWARFDebugLine()); 90 return 0; // No line table for this compile unit. 92 // See if the line table is cached. 93 if (const DWARFDebugLine::LineTable *lt = Line->getLineTable(stmtOffset)) 99 return Line->getOrParseLineTable(lineData, stmtOffset); 150 // Get the line table for this compile unit. 154 // Get the index of the row we're looking for in the line table. 166 return DILineInfo(fileName.c_str(), row.Line, row.Column);
|
/external/llvm/include/llvm/MC/ |
MCDwarf.h | 80 // Line - the line number. 81 unsigned Line; 102 MCDwarfLoc(unsigned fileNum, unsigned line, unsigned column, unsigned flags, 104 : FileNum(fileNum), Line(line), Column(column), Flags(flags), Isa(isa), 114 /// getLine - Get the Line of this MCDwarfLoc. 115 unsigned getLine() const { return Line; } 132 /// setLine - Set the Line of this MCDwarfLoc. 133 void setLine(unsigned line) { Line = line; [all...] |
/external/clang/include/clang/Basic/ |
SourceManagerInternals.h | 25 // Line Table Implementation 29 /// FileOffset - The offset in this file that the line entry occurs at. 32 /// LineNo - The presumed line number of this line entry: #line 4. 35 /// FilenameID - The ID of the filename identified by this line entry: 36 /// #line 4 "foo.c". This is -1 if not specified. 47 static LineEntry get(unsigned Offs, unsigned Line, int Filename, 52 E.LineNo = Line; 75 /// represent #line information [all...] |
/external/llvm/lib/VMCore/ |
DebugLoc.cpp | 73 DebugLoc DebugLoc::get(unsigned Line, unsigned Col, 80 // Saturate line and col to "unknown". 82 if (Line >= (1 << 24)) Line = 0; 83 Result.LineCol = Line | (Col << 24); 123 if (ConstantInt *Line = dyn_cast_or_null<ConstantInt>(N->getOperand(0))) 124 LineNo = Line->getZExtValue(); 139 if (ConstantInt *Line = dyn_cast_or_null<ConstantInt>(N->getOperand(2))) 140 LineNo = Line->getZExtValue();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt.ndk/src/com/android/ide/eclipse/adt/ndk/internal/discovery/ |
NdkDiscoveryUpdater.java | 78 String line = reader.readLine();
local 79 while (line != null) {
80 checkBuildLine(line);
81 line = reader.readLine();
150 private static class Line {
151 private final String line;
field in class:NdkDiscoveryUpdater.Line 154 public Line(String line) {
155 this.line = line;
210 Line line = new Line(text); local 265 String line = reader.readLine(); local 295 String line = reader.readLine(); local [all...] |