HomeSort by relevance Sort by last modified time
    Searched defs:Line (Results 1 - 25 of 30) sorted by null

1 2

  /external/bison/doc/
refcard.tex 16 % comment out this line if you want page numbers to appear.
163 \def\makefootline{\baselineskip10pt\hsize6.5in\line{\the\footline}}
193 \def\makefootline{\vskip 2in \hsize=6.86in\line{\the\footline}}
212 % This next line is useful when designing the layout.
317 \section{Command Line Options}
324 \key{Don't put {\tt \#line} directives in the parser.} {-l}
448 \key{Access data's line location.} {@{\it x}.{\it line\_spec}}
455 number, {\it x} is a number or \$, {\it line\_spec} one of {\tt
  /external/skia/src/text/
SkTextLayout.cpp 58 struct SkTextLayout::Line {
59 Line() {}
60 ~Line();
66 SkTextLayout::Line::~Line() {
  /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/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/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/llvm/lib/DebugInfo/
DWARFContext.h 32 OwningPtr<DWARFDebugLine> Line;
65 /// Get a pointer to a parsed line table corresponding to a compile unit.
DWARFDebugLine.h 67 // Length of the line table data in bytes (not including the prologue).
95 // An unsigned integer indicating a source line number. Lines are numbered
97 // instruction cannot be attributed to any source line.
98 uint32_t Line;
99 // An unsigned integer indicating a column number within a source line.
101 // that a statement begins at the 'left edge' of the line.
172 /// Parse a single line table (prologue and all rows).
  /external/webkit/Source/WebCore/dom/
WheelEvent.h 34 enum Granularity { Pixel, Line, Page };
  /external/clang/tools/libclang/
CIndexDiagnostic.cpp 65 // Print source location (file:line), along with optional column
68 unsigned Line, Column;
70 &File, &Line, &Column, 0);
73 Out << clang_getCString(FName) << ":" << Line << ":";
  /external/clang/include/clang/Basic/
SourceLocation.h 34 /// a source file (MemoryBuffer) along with its #include path and #line data.
70 /// to get at the full include stack, line and column information.
102 /// location in the source (e.g. a diagnostic is required for a command line
343 /// #line and GNU line marker directives and is always the expansion point of
349 unsigned Line, Col;
354 : Filename(FN), Line(Ln), Col(Co), IncludeLoc(IL) {
364 /// affected by #line etc.
367 /// getLine - Return the presumed line number of this location. This can be
368 /// affected by #line etc
    [all...]
  /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/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...]
  /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...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.h 46 /// SrcLineInfo - This class is used to record source line correspondence.
49 unsigned Line; // Source line number.
55 : Line(L), Column(C), SourceID(S), Label(label) {}
58 unsigned getLine() const { return Line; }
365 /// the line matrix.
424 /// recordSourceLine - Register a source line with debug info. Returns the
426 /// the source line list.
427 void recordSourceLine(unsigned Line, unsigned Col, const MDNode *Scope,
DwarfCompileUnit.cpp 118 unsigned Line = V.getLineNumber();
119 if (Line == 0)
125 addUInt(Die, dwarf::DW_AT_decl_line, 0, Line);
135 unsigned Line = G.getLineNumber();
136 if (Line == 0)
142 addUInt(Die, dwarf::DW_AT_decl_line, 0, Line);
151 // If the line number is 0, don't add it.
155 unsigned Line = SP.getLineNumber();
161 addUInt(Die, dwarf::DW_AT_decl_line, 0, Line);
171 unsigned Line = Ty.getLineNumber()
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 161 // list of line numbers and a single filename, representing lines that belong
165 void addLine(uint32_t Line) {
166 Lines.push_back(Line);
392 uint32_t Line = 0;
396 if (Line == Loc.getLine()) continue;
397 Line = Loc.getLine();
  /external/skia/src/ports/
SkFontHost_mac_atsui.cpp 105 static OSStatus Line(const Float32Point *pt, void *cb);
428 &SkScalerContext_Mac::Line,
441 OSStatus SkScalerContext_Mac::Line(const Float32Point *pt, void *cb)
  /external/icu4c/layoutex/
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/intltest/
tsmthred.cpp 96 #define TSMTHREAD_FAIL(msg) errln("%s at file %s, line %d", msg, __FILE__, __LINE__)
836 struct Line {
845 const Line *lines;
854 void setCollator(UCollator *c, Line *l, int32_t nl)
862 int32_t line = 0; local
882 error("Compare result not symmetrical on line "+ line);
887 error(UnicodeString("Difference between ucol_strcoll and sortkey compare on line ")+ UnicodeString(line));
892 error(UnicodeString("Line %i is not greater or equal than previous line ")+ UnicodeString(i))
    [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/icu4c/tools/gennames/
gennames.c 30 * dataVersion = Unicode version from -u or --unicode command line option, defaults to 3.0.0
250 } Line;
259 static Line lines[MAX_LINE_COUNT];
286 skipNoise(char *line, int16_t start, int16_t limit);
289 getWord(char *line, int16_t start, int16_t limit);
390 /* preset then read command line options */
398 "error in command line argument \"%s\"\n",
750 skipNoise(char *line, int16_t start, int16_t limit) {
752 while(start<limit && !isWordChar(line[start])) {
760 getWord(char *line, int16_t start, int16_t limit)
921 Line *line=NULL; local
1432 Line *line; local
1489 Line *line; local
    [all...]
  /external/llvm/lib/MC/
MCDwarf.cpp 35 // First special line opcode - leave room for the standard opcodes.
40 // Minimum line offset in a special line info. opcode. This value
44 // Range of line offsets in a special line info. opcode.
66 // a line entry made for it is made.
72 // Create a symbol at in the current section for use in the line entry.
80 // Create a (local) line entry with the symbol and the current .loc info.
92 // Create a new MCLineSection. This will be deleted after the dwarf line
100 // Add the line entry to this section's entries
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnPathProcessor.cpp 127 // Describes a segment of the path: either a cubic or a line segment.
136 Line
169 // Initializer for line segments.
177 m_kind = Line;
239 // Computes the number of times a query line starting at the given
277 // can be called either for line or cubic type segments.
317 builder.append(kind() == Line ? "line" : "cubic");
338 case Line:
740 // horizontal line going to x=+infinity, we build up an interva
    [all...]
  /external/dbus/test/
decode-gcov.c 298 printf ("Line %ld\n", val);
611 typedef struct Line Line;
657 struct Line
669 Line *lines;
2129 Line *line = l->data; local
    [all...]

Completed in 1440 milliseconds

1 2