Searched defs:Line (Results 1 - 25 of 42) sorted by relevance

12

/external/bison/doc/
H A Drefcard.tex317 \section{Command Line Options}
/external/skia/src/text/
H A DSkTextLayout.cpp58 struct SkTextLayout::Line { struct in class:SkTextLayout
59 Line() {} function in struct:SkTextLayout::Line
60 ~Line();
66 SkTextLayout::Line::~Line() {
/external/llvm/include/llvm/DebugInfo/
H A DDIContext.h29 uint32_t Line; member in class:llvm::DILineInfo
32 DILineInfo() : FileName("<invalid>"), Line(0), Column(0) {}
34 : FileName(fileName), Line(line), Column(column) {}
37 uint32_t getLine() const { return Line; }
41 return Line == RHS.Line && Column == RHS.Column &&
/external/clang/include/clang/Frontend/
H A DCommandLineSourceLoc.h27 unsigned Line; member in struct:clang::ParsedSourceLocation
41 !LineSplit.second.getAsInteger(10, PSL.Line)) {
H A DLogDiagnosticPrinter.h31 unsigned Line; member in struct:clang::LogDiagnosticPrinter::DiagEntry
/external/bluetooth/glib/tests/
H A Dunicode-collate.c13 } Line; typedef in typeref:struct:__anon718
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;
117 qsort (line_array->data, line_array->len, sizeof (Line), do_key ? compare_key : compare_collate);
119 printf ("%s\n", g_array_index (line_array, Line, i).str);
/external/clang/include/clang/Basic/
H A DSourceManagerInternals.h25 // Line Table Implementation
47 static LineEntry get(unsigned Offs, unsigned Line, int Filename, argument
52 E.LineNo = Line;
H A DSourceLocation.h349 unsigned Line, Col; member in class:clang::PresumedLoc
354 : Filename(FN), Line(Ln), Col(Co), IncludeLoc(IL) {
369 unsigned getLine() const { return Line; }
/external/llvm/lib/DebugInfo/
H A DDWARFContext.h32 OwningPtr<DWARFDebugLine> Line; member in class:llvm::DWARFContext
H A DDWARFDebugLine.h98 uint32_t Line; member in struct:llvm::DWARFDebugLine::Row
/external/webkit/Source/WebCore/dom/
H A DWheelEvent.h34 enum Granularity { Pixel, Line, Page }; enumerator in enum:WebCore::WheelEvent::Granularity
/external/clang/tools/libclang/
H A DCIndexDiagnostic.cpp68 unsigned Line, Column; local
70 &File, &Line, &Column, 0); local
73 Out << clang_getCString(FName) << ":" << Line << ":";
/external/giflib/
H A Ddgif_lib.c53 static int DGifDecompressLine(GifFileType *GifFile, GifPixelType *Line,
424 * Get one full scanned line (Line) of length LineLen from GIF file.
428 GifPixelType * Line,
452 if (DGifDecompressLine(GifFile, Line, LineLen) == GIF_OK) {
728 * This version decompress the given gif file into Line of length LineLen.
734 GifPixelType * Line,
758 Line[i++] = Stack[--StackPtr];
788 Line[i++] = CrntCode;
832 Line[i++] = Stack[--StackPtr];
427 DGifGetLine(GifFileType * GifFile, GifPixelType * Line, int LineLen) argument
733 DGifDecompressLine(GifFileType * GifFile, GifPixelType * Line, int LineLen) argument
/external/llvm/lib/Support/
H A DSourceMgr.cpp219 int Line, int Col, SourceMgr::DiagKind Kind,
223 : SM(&sm), Loc(L), Filename(FN), LineNo(Line), ColumnNo(Col), Kind(Kind),
218 SMDiagnostic(const SourceMgr &sm, SMLoc L, const std::string &FN, int Line, int Col, SourceMgr::DiagKind Kind, const std::string &Msg, const std::string &LineStr, ArrayRef<std::pair<unsigned,unsigned> > Ranges) argument
/external/llvm/lib/VMCore/
H A DDebugLoc.cpp73 DebugLoc DebugLoc::get(unsigned Line, unsigned Col, argument
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();
/external/icu4c/layoutex/layout/
H A DParagraphLayout.h60 class U_LAYOUTEX_API Line : public UObject class in class:ParagraphLayout
71 ~Line();
130 * visual run. This object is owned by the <code>Line</code> object which
131 * created it, and will remain valid for as long as the <code>Line</code>
173 inline Line();
174 inline Line(const Line &other);
175 inline Line &operator=(const Line & /*other*/) { return *this; };
191 * These objects are only created by <code>ParagraphLayout::Line</cod
653 inline ParagraphLayout::Line::Line() function in class:ParagraphLayout::Line
659 inline ParagraphLayout::Line::Line(const Line & /*other*/) function in class:ParagraphLayout::Line
[all...]
/external/llvm/include/llvm/MC/
H A DMCContext.h230 void addMCLineSection(const MCSection *Sec, MCLineSection *Line) { argument
231 MCLineSections[Sec] = Line;
239 void setCurrentDwarfLoc(unsigned FileNum, unsigned Line, unsigned Column, argument
243 CurrentDwarfLoc.setLine(Line);
H A DMCDwarf.h80 // Line - the line number.
81 unsigned Line; member in class:llvm::MCDwarfLoc
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; }
/external/llvm/lib/MC/
H A DMCNullStreamer.cpp90 virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line, argument
H A DMCLoggingStreamer.cpp219 virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line, argument
224 "FileNo:" + Twine(FileNo) + " Line:" + Twine(Line) +
227 return Child->EmitDwarfLocDirective(FileNo, Line, Column, Flags,
/external/clang/lib/Frontend/
H A DCompilerInstance.cpp343 unsigned Line,
355 PP.SetCodeCompletionPoint(Entry, Line, Column);
364 Loc.FileName, Loc.Line, Loc.Column,
372 Loc.Line, Loc.Column)) {
391 unsigned Line,
397 if (EnableCodeCompletion(PP, Filename, Line, Column))
341 EnableCodeCompletion(Preprocessor &PP, const std::string &Filename, unsigned Line, unsigned Column) argument
389 createCodeCompletionConsumer(Preprocessor &PP, const std::string &Filename, unsigned Line, unsigned Column, bool ShowMacros, bool ShowCodePatterns, bool ShowGlobals, raw_ostream &OS) argument
/external/icu4c/layoutex/
H A DParagraphLayout.cpp662 ParagraphLayout::Line *ParagraphLayout::nextLine(float width)
1006 ParagraphLayout::Line *ParagraphLayout::computeVisualRuns()
1023 Line *line = new Line();
1047 void ParagraphLayout::appendRun(ParagraphLayout::Line *line, le_int32 run, le_int32 firstChar, le_int32 lastChar)
1152 const char ParagraphLayout::Line::fgClassID = 0;
1157 ParagraphLayout::Line::~Line()
1168 le_int32 ParagraphLayout::Line::getAscent() const
1171 ((ParagraphLayout::Line *)thi
[all...]
/external/icu4c/test/intltest/
H A Dtsmthred.cpp836 struct Line { struct
845 const Line *lines;
854 void setCollator(UCollator *c, Line *l, int32_t nl)
892 error(UnicodeString("Line %i is not greater or equal than previous line ")+ UnicodeString(i));
977 Line *lines = new Line[200000];
978 memset(lines, 0, sizeof(Line)*200000);
/external/llvm/lib/Analysis/
H A DDIBuilder.cpp152 // nullptr is encoded in DIBasicType format. Line number, filename,
159 ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Line
175 // Basic types are encoded in DIBasicType format. Line number, filename,
182 ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Line
201 ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Line
220 ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Line
239 ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Line
279 ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Line
300 ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Line
867 unsigned Line, unsigne
866 createLexicalBlock(DIDescriptor Scope, DIFile File, unsigned Line, unsigned Col) argument
[all...]
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.h49 unsigned Line; // Source line number. member in class:llvm::SrcLineInfo
55 : Line(L), Column(C), SourceID(S), Label(label) {}
58 unsigned getLine() const { return Line; }
427 void recordSourceLine(unsigned Line, unsigned Col, const MDNode *Scope,

Completed in 571 milliseconds

12