HomeSort by relevance Sort by last modified time
    Searched refs:Line (Results 151 - 175 of 288) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/llvm/include/llvm/Support/
GCOV.h 102 /// readLineTag - If cursor points to a line tag then increment the
203 /// GCOVLines - A wrapper around a vector of int to keep track of line nos.
218 void addLineCount(StringRef Filename, uint32_t Line, uint32_t Count);
  /external/llvm/lib/DebugInfo/
DWARFContext.h 34 OwningPtr<DWARFDebugLine> Line;
102 /// Get a pointer to a parsed line table corresponding to a compile unit.
DWARFDebugLine.cpp 20 OS << "Line table prologue:\n"
61 Line = 1;
73 OS << format("0x%16.16" PRIx64 " %6u %6u", Address, Line, Column)
88 OS << "Address Line Column File ISA Flags\n"
121 fprintf(stderr, "warning: last sequence in debug line table is not"
156 // Parse and cache the line table for at this offset.
213 fprintf(stderr, "warning: parsing line table prologue at 0x%8.8x should"
340 // the line register of the state machine.
341 state.Line += debug_line_data.getSLEB128(offset_ptr);
435 // to be added to the line and address registers. The maximum lin
    [all...]
DWARFDebugLine.h 69 // Length of the line table data in bytes (not including the prologue).
101 // An unsigned integer indicating a source line number. Lines are numbered
103 // instruction cannot be attributed to any source line.
104 uint32_t Line;
105 // An unsigned integer indicating a column number within a source line.
107 // that a statement begins at the 'left edge' of the line.
135 // Represents a series of contiguous machine instructions. Line table for each
140 // and is described by line table rows [FirstRowIndex, LastRowIndex).
177 // Returns the index of the row with file/line info for a given address,
234 /// Parse a single line table (prologue and all rows)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen7_wm_state.c 53 if (ctx->Line.StippleFlag)
  /external/chromium_org/v8/src/
platform-win32.cc     [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
GradControl.java 128 public void actionDown(float x, float y, Line line) {
134 mDownPoint1X = line.getPoint1X();
135 mDownPoint1Y = line.getPoint1Y();
136 mDownPoint2X = line.getPoint2X();
137 mDownPoint2Y = line.getPoint2Y();
140 public void actionMove(int handle, float x, float y, Line line) {
163 line.setPoint1(mDownPoint1X + dx, mDownPoint1Y + dy);
164 line.setPoint2(mDownPoint2X + dx, mDownPoint2Y + dy)
    [all...]
  /external/chromium_org/third_party/icu/source/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/chromium_org/third_party/mesa/src/src/mesa/drivers/osmesa/
osmesa.c 128 * Macros for optimized line/triangle rendering.
144 * Draw a flat-shaded, RGB line into an osmesa buffer.
163 * Draw a flat-shaded, Z-less, RGB line into an osmesa buffer.
188 * Analyze context state to see if we can provide a fast line drawing
198 if (ctx->Line.SmoothFlag) return NULL;
201 if (ctx->Line.Width != 1.0F) return NULL;
202 if (ctx->Line.StippleFlag) return NULL;
203 if (ctx->Line.SmoothFlag) return NULL;
344 swrast->Line = osmesa_choose_line_function( ctx );
345 if (!swrast->Line)
    [all...]
  /external/icu4c/test/intltest/
tsmthred.cpp 102 #define TSMTHREAD_FAIL(msg) errln("%s at file %s, line %d", msg, __FILE__, __LINE__)
987 struct Line {
1013 const Line *lines;
1024 void setCollator(Collator *c, Line *l, int32_t nl, UBool atLeastUCA62)
1051 error(UnicodeString("Compare result not symmetrical on line ") + (i + 1));
1056 error(UnicodeString("Difference between coll->compare and sortkey compare on line ") + (i + 1));
    [all...]
  /external/mesa3d/src/mesa/drivers/osmesa/
osmesa.c 128 * Macros for optimized line/triangle rendering.
144 * Draw a flat-shaded, RGB line into an osmesa buffer.
163 * Draw a flat-shaded, Z-less, RGB line into an osmesa buffer.
188 * Analyze context state to see if we can provide a fast line drawing
198 if (ctx->Line.SmoothFlag) return NULL;
201 if (ctx->Line.Width != 1.0F) return NULL;
202 if (ctx->Line.StippleFlag) return NULL;
203 if (ctx->Line.SmoothFlag) return NULL;
344 swrast->Line = osmesa_choose_line_function( ctx );
345 if (!swrast->Line)
    [all...]
  /external/llvm/lib/Support/
YAMLParser.cpp 177 /// a simple key (we moved on to the next line or went further than 1024 chars).
183 unsigned Line;
312 // A production matching a single line break.
320 // A production matching complete line(s).
372 /// @brief Scan ns-plain-one-line[133] starting at \a Cur.
384 /// Pos is whitespace or a new line
394 /// Invalid simple keys are not on the current line or are further than 1024
480 /// @brief Current line number.
481 unsigned Line;
700 , Line(0
    [all...]
SourceMgr.cpp 42 // Delete the line # cache if allocated.
86 /// getLineAndColumn - Find the line and column number for the specified
102 // If we have a line number cache, and if the query is to a later point in the
117 // Allocate the line number cache if it doesn't exist.
121 // Update the line # cache.
157 // location to pull out the source line.
170 // Scan backward to find the start of the line.
177 // Get the end of the line.
184 // Convert any ranges to column ranges that only intersect the line of the
190 // If the line doesn't contain any part of the range, then ignore it
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 203 // list of line numbers and a single filename, representing lines that belong
207 void addLine(uint32_t Line) {
208 Lines.push_back(Line);
457 uint32_t Line = 0;
462 if (Line == Loc.getLine()) continue;
463 Line = Loc.getLine();
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_aaline.c 40 * Info about the AA line we're rendering
48 GLfloat halfWidth; /* half of line width */
49 GLfloat xAdj, yAdj; /* X and Y adjustment for quad corners around line */
77 * Compute the equation of a plane used to interpolate line fragment data
79 * Input: (x0, y0) and (x1,y1) are the endpoints of the line.
84 * We take the endpoints of the line and compute a plane such that
85 * the cross product of the line vector and the plane normal is
326 typedef void (*plot_func)(struct gl_context *ctx, struct LineInfo *line,
332 * Draw an AA line segment (called many times per line when stippling
    [all...]
  /external/clang/lib/Lex/
Preprocessor.cpp 17 // -fworking-directory - #line's with preprocessor's working dir.
359 for (unsigned Line = 1; Line < CompleteLine; ++Line) {
364 // Eat \r\n or \n\r as a single line.
460 // cause FileID's to accumulate information from both runs (e.g. #line
  /external/mesa3d/src/mesa/swrast/
s_aaline.c 40 * Info about the AA line we're rendering
48 GLfloat halfWidth; /* half of line width */
49 GLfloat xAdj, yAdj; /* X and Y adjustment for quad corners around line */
77 * Compute the equation of a plane used to interpolate line fragment data
79 * Input: (x0, y0) and (x1,y1) are the endpoints of the line.
84 * We take the endpoints of the line and compute a plane such that
85 * the cross product of the line vector and the plane normal is
326 typedef void (*plot_func)(struct gl_context *ctx, struct LineInfo *line,
332 * Draw an AA line segment (called many times per line when stippling
    [all...]
  /external/clang/lib/Frontend/
CompilerInstance.cpp 354 unsigned Line,
357 // line and column.
365 // Truncate the named file at the given line/column.
366 PP.SetCodeCompletionPoint(Entry, Line, Column);
375 Loc.FileName, Loc.Line, Loc.Column,
381 Loc.Line, Loc.Column)) {
400 unsigned Line,
404 if (EnableCodeCompletion(PP, Filename, Line, Column))
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
CSharp2.stg 213 eof.Line = Line;
221 state.tokenStartLine = input.Line;
529 DebugLocation(<ruleDescriptor.tree.line>, <ruleDescriptor.EORNode.charPositionInLine>);
563 DebugLocation(<ruleDescriptor.EORNode.line>, <ruleDescriptor.EORNode.charPositionInLine>);
901 /** Dump the elements one per line */
904 DebugLocation(<it.line>, <it.pos>);<\n>
1000 int <label>StartLine<elementIndex> = Line;<\n>
1003 <label>.Line = <label>StartLine<elementIndex>;<\n>
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
CSharp3.stg 208 eof.Line = Line;
216 state.tokenStartLine = input.Line;
507 DebugLocation(<ruleDescriptor.tree.line>, <ruleDescriptor.EORNode.charPositionInLine>);
541 DebugLocation(<ruleDescriptor.EORNode.line>, <ruleDescriptor.EORNode.charPositionInLine>);
877 /** Dump the elements one per line */
880 DebugLocation(<it.line>, <it.pos>);<\n>
980 int <label>StartLine<elementIndex> = Line;<\n>
983 <label>.Line = <label>StartLine<elementIndex>;<\n>
1043 int <label>StartLine<elementIndex> = Line;<\n
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/common/
driverfuncs.c 268 ctx->Driver.Enable(ctx, GL_LINE_SMOOTH, ctx->Line.SmoothFlag);
294 ctx->Driver.LineWidth(ctx, ctx->Line.Width);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
state.c 409 if (ctx->Line.SmoothFlag)
411 if (ctx->Line.StippleFlag)
  /external/clang/include/clang/Frontend/
ASTUnit.h 214 /// \brief Whether the preamble ends at the start of a new line.
217 /// a line after skipping the preamble.
544 /// \brief Get the source location for the given file:line:col triplet.
550 unsigned Line, unsigned Col) const;
752 /// LoadFromCommandLine - Create an ASTUnit from a vector of command line
789 /// \brief Reparse the source files using the same command-line options that
797 /// \brief Perform code completion at the given file, line, and
802 /// \param Line The line at which code completion will occur.
817 void CodeComplete(StringRef File, unsigned Line, unsigned Column
    [all...]
  /external/llvm/include/llvm/Analysis/
DependenceAnalysis.h 378 /// 2) Line - A line ax + by = c, where a, b, and c are parameters,
386 enum ConstraintKind { Empty, Point, Distance, Line, Any } Kind;
402 /// isLine - Return true if the constraint is of kind Line.
405 bool isLine() const { return Kind == Line || Kind == Distance; }
418 /// getA - If constraint is a line AX + BY = C, returns A.
422 /// getB - If constraint is a line AX + BY = C, returns B.
426 /// getC - If constraint is a line AX + BY = C, returns C.
440 /// setLine - Change a constraint to Line.
    [all...]
  /external/llvm/lib/MC/
MCObjectStreamer.cpp 202 // a line entry for any .loc directive that has been seen.
261 void MCObjectStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
267 // first one gets a line entry.
270 this->MCStreamer::EmitDwarfLocDirective(FileNo, Line, Column, Flags,
379 // Dump out the dwarf file & directory tables and line tables.

Completed in 763 milliseconds

1 2 3 4 5 67 8 91011>>