HomeSort by relevance Sort by last modified time
    Searched refs:Line (Results 26 - 50 of 90) sorted by null

12 3 4

  /external/webkit/Source/WebCore/platform/text/qt/
TextBreakIteratorQt.cpp 92 setUpIterator(*staticLineBreakIterator, QTextBoundaryFinder::Line, string, length);
97 lineBreakIterator = new TextBreakIterator(QTextBoundaryFinder::Line, QString(reinterpret_cast<const QChar*>(string), length));
  /external/jhead/
jhead.c 37 // Command line options flags
83 static char * CommentInsertLiteral = NULL; // Insert this comment (from command line)
206 char Line[500];
220 // Process the line.
222 Line[Len] = 0;
223 //printf("Line: '%s'\n",Line);
228 printf("Error: Unknown tag '%s'\n", Line); // Deletes the tag.
232 if (memcmp(Line, KnownTags[a], l) == 0){
233 if (Line[l] == ' ' || Line[l] == '=' || Line[l] == 0)
    [all...]
  /external/llvm/include/llvm/MC/
MCContext.h 97 /// The current dwarf line information from the last dwarf .loc directive.
106 /// The dwarf line information from the .loc directives for the sections
230 void addMCLineSection(const MCSection *Sec, MCLineSection *Line) {
231 MCLineSections[Sec] = Line;
237 /// is assembled an entry in the line number table with this information and
239 void setCurrentDwarfLoc(unsigned FileNum, unsigned Line, unsigned Column,
243 CurrentDwarfLoc.setLine(Line);
  /external/llvm/include/llvm/Support/
DebugLoc.h 25 /// and MachineInstr to compactly encode file/line/scope information for an
46 /// LineCol - This 32-bit value encodes the line and column number for the
47 /// location, encoded as 24-bits for line and 8 bits for col. A value of 0
57 /// get - Get a new DebugLoc that corresponds to the specified line/col
59 static DebugLoc get(unsigned Line, unsigned Col,
GCOV.h 100 /// readLineTag - If cursor points to a line tag then increment the
201 /// GCOVLines - A wrapper around a vector of int to keep track of line nos.
216 void addLineCount(StringRef Filename, uint32_t Line, uint32_t Count);
SourceMgr.h 61 /// LineNoCache - This is a cache for line number queries, its implementation
124 /// FindLineNumber - Find the line number for the specified location in the
143 /// PrintIncludeStack - Prints the names of included files and the line of the
147 /// @param IncludeLoc - The line of the include.
168 // Diagnostic with no location (e.g. file not found, command line arg error).
176 int Line, int Col, SourceMgr::DiagKind Kind,
  /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.cpp 19 OS << "Line table prologue:\n"
59 Line = 1;
71 OS << format("0x%16.16llx %6u %6u", Address, Line, Column)
86 OS << "Address Line Column File ISA Flags\n"
122 // Parse and cache the line table for at this offset.
179 fprintf(stderr, "warning: parsing line table prologue at 0x%8.8x should"
296 // the line register of the state machine.
297 state.Line += debug_line_data.getSLEB128(offset_ptr);
391 // to be added to the line and address registers. The maximum line
    [all...]
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/v8/test/mjsunit/
debug-step.js 45 // Clear the break point on line 2 if set.
58 var i; // Line 1.
59 for (i = 0; i < 1000; i++) { // Line 2.
60 x = 1; // Line 3.
64 // Set a breakpoint on the for statement (line 1).
74 // for loop (line 2) will only make i 0 as a real break point breaks even when
  /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/MC/
MCNullStreamer.cpp 90 virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
MCLoggingStreamer.cpp 219 virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
224 "FileNo:" + Twine(FileNo) + " Line:" + Twine(Line) +
227 return Child->EmitDwarfLocDirective(FileNo, Line, Column, Flags,
  /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/llvm/lib/VMCore/
GCOV.cpp 71 /// collectLineCounts - Collect line counts. This must be used after
134 // read line table.
161 /// collectLineCounts - Collect line counts. This must be used after
185 /// collectLineCounts - Collect line counts. This must be used after
217 /// collectLineCounts - Collect line counts. This must be used after
236 /// addLineCount - Add line count for the given line number in a file.
237 void FileInfo::addLineCount(StringRef Filename, uint32_t Line, uint32_t Count) {
246 L[Line-1] = Count;
251 L[Line-1] = Count
    [all...]
  /external/llvm/lib/Support/
SourceMgr.cpp 38 // Delete the line # cache if allocated.
82 /// FindLineNumber - Find the line number for the specified location in the
96 // If we have a line number cache, and if the query is to a later point in the
112 // Allocate the line number cache if it doesn't exist.
116 // Update the line # cache.
154 // Scan backward to find the start of the line.
160 // Get the end of the line.
167 // Convert any ranges to column ranges that only intersect the line of the
174 // If the line doesn't contain any part of the range, then ignore it.
219 int Line, int Col, SourceMgr::DiagKind Kind
    [all...]
  /external/valgrind/main/exp-bbv/tests/ppc32-linux/
ll.S 151 # First Line
189 # Middle-Line
221 # my iBook's /proc/cpuinfo does not have a "processor" line ???
  /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...]
  /external/giflib/
dgif_lib.c 53 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.
729 * This routine can be called few times (one per scan line, for example), in
734 GifPixelType * Line,
758 Line[i++] = Stack[--StackPtr];
788 Line[i++] = CrntCode
    [all...]
  /external/clang/lib/Lex/
Preprocessor.cpp 17 // -fworking-directory - #line's with preprocessor's working dir.
290 for (unsigned Line = 1; Line < CompleteLine; ++Line) {
295 // Eat \r\n or \n\r as a single line.
386 // cause FileID's to accumulate information from both runs (e.g. #line
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp 234 /// getLineNumber - Get line number for the location. If location is invalid
459 // No need to fill in the Name, Line, Size, Alignment, Offset in case of
490 unsigned Line = getLineNumber(RD->getLocation());
496 Line, 0, 0, llvm::DIType::FlagFwdDecl,
500 Line, 0, 0, llvm::DIType::FlagFwdDecl,
505 Line, 0, 0, 0, llvm::DIType::FlagFwdDecl,
604 unsigned Line = getLineNumber(Ty->getDecl()->getLocation());
610 DBuilder.createTypedef(Src, TyDecl->getName(), Unit, Line, TydefContext);
647 unsigned line = getLineNumber(loc); local
664 return DBuilder.createMemberType(scope, name, file, line, sizeInBits
2160 unsigned line = getLineNumber(loc); local
    [all...]
  /external/v8/src/
platform-win32.cc     [all...]

Completed in 1256 milliseconds

12 3 4