HomeSort by relevance Sort by last modified time
    Searched refs:Line (Results 201 - 225 of 377) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/giflib/
egif_lib.c 37 static int EGifCompressLine(GifFileType * GifFile, GifPixelType * Line,
438 Put one full scanned line (Line) of length LineLen into GIF file.
441 EGifPutLine(GifFileType * GifFile, GifPixelType *Line, int LineLen)
465 Line[i] &= Mask;
467 return EGifCompressLine(GifFile, Line, LineLen);
872 This version compresses the given buffer Line of length LineLen.
873 This routine can be called a few times (one per scan line, for example), in
878 GifPixelType *Line,
890 CrntCode = Line[i++]
    [all...]
  /external/google-breakpad/src/common/
dwarf_cu_to_module.cc 638 fprintf(stderr, "%s: warning: line number data offset beyond end"
662 void DwarfCUToModule::WarningReporter::UncoveredLine(const Module::Line &line) {
666 fprintf(stderr, " line%s: %s:%d at 0x%" PRIx64 "\n",
667 (line.size == 0 ? " (zero-length)" : ""),
668 line.file->name.c_str(), line.number, line.address);
721 case dwarf2reader::DW_AT_stmt_list: // Line number information.
842 // This would be simpler if we assumed that source line entrie
879 const Module::Line *line; local
    [all...]
module.cc 194 // Next, mark all files actually cited by our functions' line number
199 for (vector<Line>::iterator line_it = func->lines.begin();
206 // the line numbers, but doing it this way numbers the files in
264 for (vector<Line>::iterator line_it = func->lines.begin();
  /external/llvm/lib/DebugInfo/DWARF/
DWARFContext.cpp 375 if (!Line)
376 Line.reset(new DWARFDebugLine(&getLineSection().Relocs));
385 return nullptr; // No line table for this compile unit.
388 // See if the line table is cached.
389 if (const DWARFLineTable *lt = Line->getLineTable(stmtOffset))
395 return Line->getOrParseLineTable(lineData, stmtOffset);
495 // Get the index of row we're looking for in the line table.
501 // Take file number and line/column from the row.
507 Result.Line = Row.Line;
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_context.c 369 * Called via swrast->Line. Examine current GL state and choose a software
370 * line routine. Then call it.
379 ASSERT(swrast->Line);
382 swrast->SpecLine = swrast->Line;
383 swrast->Line = _swrast_add_spec_terms_line;
386 swrast->Line( ctx, v0, v1 );
455 swrast->Line = _swrast_validate_line;
643 SWRAST_CONTEXT(ctx)->Line( ctx, v0, v1 );
760 swrast->Line = _swrast_validate_line;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugEventSocketProxy.cs 48 * one event per line. ANTLRWorks listens on server socket with a
216 public override void Location(int line, int pos) {
217 Transmit("location\t" + line + "\t" + pos);
228 buf.Append(e.Line);
279 int line = -1;
282 line = token.Line;
286 buf.Append(line);
366 buf.Append(t.Line);
378 // escape \n and \r all text for token appears to exist on one line
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugEventSocketProxy.cs 47 * one event per line. ANTLRWorks listens on server socket with a
248 public override void Location( int line, int pos )
250 Transmit( "location\t" + line + "\t" + pos );
262 buf.Append( e.Line );
319 int line = -1;
323 line = token.Line;
327 buf.Append( line );
415 buf.Append( t.Line );
429 // escape \n and \r all text for token appears to exist on one line
    [all...]
  /external/clang/test/CodeGenCXX/
dllimport-members.cpp 28 template<int Line, typename T>
195 template<int Line, typename T> friend void useMemFun();
368 template<int Line, typename T> friend void useMemFun();
    [all...]
  /external/clang/tools/libclang/
CIndexDiagnostic.cpp 264 // Print source location (file:line), along with optional column
267 unsigned Line, Column;
269 &File, &Line, &Column, nullptr);
272 Out << clang_getCString(FName) << ":" << Line << ":";
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ANTLRStringStream.cs 56 /** <summary>line number 1..n within the input</summary> */
57 int line = 1; field in class:Antlr.Runtime.ANTLRStringStream
59 /** <summary>The index of the character relative to the beginning of the line 0..n-1</summary> */
67 * values line, charPositionInLine, and p that can change as you
122 public virtual int Line {
124 return line;
127 line = value;
147 line = 1;
158 System.out.println("newline char found on line: "+line
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeParser.cs 140 * We have DOWN/UP nodes in the stream that have no line info; override.
157 (e.ApproximateLineInfo ? "after " : "") + "line " + e.Line + ":" + e.CharPositionInLine;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ANTLRStringStream.cs 58 /** <summary>line number 1..n within the input</summary> */
59 int line = 1; field in class:Antlr.Runtime.ANTLRStringStream
61 /** <summary>The index of the character relative to the beginning of the line 0..n-1</summary> */
69 * values line, charPositionInLine, and p that can change as you
131 public virtual int Line
135 return line;
139 line = value;
163 line = 1;
177 System.out.println("newline char found on line: "+line
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeParser.cs 154 * We have DOWN/UP nodes in the stream that have no line info; override.
173 ( e.ApproximateLineInfo ? "after " : "" ) + "line " + e.Line + ":" + e.CharPositionInLine;
  /external/clang/lib/Format/
BreakableToken.cpp 139 encoding::columnWidthWithTabs(Line.substr(Offset, Length),
151 Line = Tok.TokenText.substr(
165 return getStringSplit(Line.substr(TailOffset),
221 return getCommentSplit(Line.substr(TailOffset), StartColumn + Prefix.size(),
278 // If the last line is empty, the closing "*/" will have a star.
292 // Empty last line means that we already have a star as a part of the
304 // The first line already excludes the star.
305 // For all other lines, adjust the line to exclude the star and
332 // inserting a line break.
337 // Calculate the end of the non-whitespace text in the previous line
    [all...]
BreakableToken.h 44 /// \brief Returns the number of columns required to format the piece of line
48 /// specified from the start of the (original) line.
49 /// \p Length can be set to StringRef::npos, which means "to the end of line".
54 /// \brief Returns a range (offset, length) at which to break the line at
88 /// \brief Base class for single line tokens that can be broken.
106 // The prefix a line needs after a break in the token.
108 // The postfix a line needs before introducing a break.
111 StringRef Line;
116 /// \brief Creates a breakable token for a single line string literal.
135 /// \brief Creates a breakable token for a line comment
    [all...]
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 79 // Length of the line table data in bytes (not including the prologue).
108 // An unsigned integer indicating a source line number. Lines are numbered
110 // instruction cannot be attributed to any source line.
111 uint32_t Line;
112 // An unsigned integer indicating a column number within a source line.
114 // that a statement begins at the 'left edge' of the line.
145 // Represents a series of contiguous machine instructions. Line table for each
150 // and is described by line table rows [FirstRowIndex, LastRowIndex).
184 // Returns the index of the row with file/line info for a given address,
197 // Fills the Result argument with the file and line informatio
    [all...]
  /external/llvm/include/llvm/MC/
MCObjectStreamer.h 116 void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
  /external/llvm/tools/llvm-cov/
CodeCoverage.cpp 10 // The 'CodeCoverageTool' class implements a command line tool to analyze and
187 unsigned Line = 0;
190 Line = std::max(CR.LineEnd, Line);
191 View->addInstantiation(Function->Name, Line, std::move(SubView));
298 "line-coverage-lt", cl::Optional,
299 cl::desc("Show code coverage only for functions with line coverage less "
304 "line-coverage-gt", cl::Optional,
305 cl::desc("Show code coverage only for functions with line coverage "
386 "show-line-counts", cl::Optional
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen7_wm_state.c 53 if (ctx->Line.StippleFlag)
  /external/llvm/include/llvm/ProfileData/
InstrProfReader.h 120 line_iterator Line;
128 : DataBuffer(std::move(DataBuffer_)), Line(*DataBuffer, true, '#') {}
  /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...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/settings/
SpacingAndPunctuationsTests.java 138 assertTrue("V Line", sp.isWordSeparator('|'));
189 assertFalse("V Line", sp.isWordConnector('|'));
235 assertFalse("V Line", sp.isUsuallyPrecededBySpace('|'));
296 assertFalse("V Line", sp.isUsuallyFollowedBySpace('|'));
343 assertFalse("V Line", sp.isUsuallyFollowedBySpace('|'));
  /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/deqp/framework/referencerenderer/
rrRenderer.cpp 117 void convertPrimitiveToBaseType(std::vector<pa::Line>& output, std::vector<pa::Line>& input)
127 void convertPrimitiveToBaseType(std::vector<pa::Line>& output, std::vector<pa::LineAdjacency>& input)
134 output[i] = pa::Line(input[i].v1, input[i].v2, baseProvokingVertexIndex);
155 * Calculate the intersection of line segment v0-v1 and a given plane. Line
171 * How much (in [0-1] range) of a line segment v0-v1 would be clipped
172 * of the v0 end of the line segment by clipping.
245 // A point on line might be far away, causing clipping ratio (clipLineSegmentEnd) to become extremely close to 1.0
246 // even if the another point is not on the plane. Prevent clipping ratio from saturating by using points on line
    [all...]
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp 92 // Construct a location that has a valid scope, but no line info.
616 // No need to fill in the Name, Line, Size, Alignment, Offset in case of
697 unsigned Line = getLineNumber(RD->getLocation());
712 getTagForRecord(RD), RDName, Ctx, DefUnit, Line, 0, Size, Align,
901 unsigned line = getLineNumber(loc); local
3160 unsigned line = getLineNumber(loc); local
    [all...]

Completed in 834 milliseconds

1 2 3 4 5 6 7 891011>>