HomeSort by relevance Sort by last modified time
    Searched refs:Line (Results 251 - 275 of 661) sorted by null

<<11121314151617181920>>

  /external/clang/lib/ASTMatchers/Dynamic/
Diagnostics.cpp 155 if (Range.Start.Line > 0 && Range.Start.Column > 0) {
156 OS << Range.Start.Line << ":" << Range.Start.Column << ": ";
  /external/clang/lib/StaticAnalyzer/Core/
IssueHash.cpp 118 static StringRef GetNthLineOfFile(llvm::MemoryBuffer *Buffer, int Line) {
123 for (; !LI.is_at_eof() && LI.line_number() != Line; ++LI)
  /external/libgdx/extensions/gdx-bullet/src/com/badlogic/gdx/physics/bullet/
DebugDrawer.java 47 shapeRenderer.line(from, to);
55 shapeRenderer.line(pointOnB, normalOnB.scl(distance).add(pointOnB));
61 shapeRenderer.line(v0, v1);
62 shapeRenderer.line(v1, v2);
63 shapeRenderer.line(v2, v0);
96 shapeRenderer.begin(ShapeType.Line);
117 shapeRenderer.begin(ShapeType.Line);
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/extensions/
FreeTypeMetricsTest.java 87 smallFont.draw(spriteBatch, "line height", 20, viewHeight - 120);
102 renderer.begin(ShapeType.Line);
104 renderer.line(0, y, 9999, y);
106 renderer.line(0, baseline, 9999, baseline);
108 renderer.line(0, baseline + font.getXHeight(), 9999, baseline + font.getXHeight());
110 renderer.line(0, y + font.getAscent(), 9999, y + font.getAscent());
112 renderer.line(0, baseline + font.getDescent(), 9999, baseline + font.getDescent());
114 renderer.line(0, y - font.getLineHeight(), 9999, y - font.getLineHeight());
117 renderer.begin(ShapeType.Line);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_sf_state.c 235 sf->sf6.line_width = CLAMP(ctx->Line.Width, 1.0, 5.0) * (1<<1);
238 if (ctx->Line.SmoothFlag)
gen6_sf_state.c 222 uint32_t line_width_u3_7 = U_FIXED(CLAMP(ctx->Line.Width, 0.0, 7.99), 7);
223 /* TODO: line width of 0 is not allowed when MSAA enabled */
228 if (ctx->Line.SmoothFlag) {
brw_misc_state.c 700 * AA Line parameters
707 if (!ctx->Line.SmoothFlag || !brw->has_aa_line_parameters)
714 /* use legacy aa line coverage computation */
730 * Line stipple packet
740 if (!ctx->Line.StippleFlag)
748 OUT_BATCH(ctx->Line.StipplePattern);
749 tmp = 1.0 / (GLfloat) ctx->Line.StippleFactor;
751 OUT_BATCH(tmpi << 16 | ctx->Line.StippleFactor);
  /external/mesa3d/src/mesa/tnl_dd/
t_dd_dmatmp2.h 47 #error "must have line strips to use render template"
141 if ((flags & PRIM_BEGIN) && ctx->Line.StippleFlag) {
148 if ((flags & PRIM_END) && ctx->Line.StippleFlag)
164 if ((flags & PRIM_BEGIN) && ctx->Line.StippleFlag)
211 if (ctx->Line.StippleFlag)
240 dest = ALLOC_ELTS( nr*2 ); /* allocs room for 1 more line */
249 /* Emit 1 more line into space alloced above */
580 if ((flags & PRIM_BEGIN) && ctx->Line.StippleFlag) {
600 if ((flags & PRIM_END) && ctx->Line.StippleFlag)
621 if ((flags & PRIM_BEGIN) && ctx->Line.StippleFlag
    [all...]
  /external/valgrind/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 ???
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/asm/internal/lex/
slice.go 3 //line /Volumes/Android/buildbot/src/android/build-tools/out/obj/go/src/cmd/asm/internal/lex/slice.go:1
16 line int
20 func NewSlice(fileName string, line int, tokens []Token) *Slice {
24 line: line,
45 func (s *Slice) Line() int {
46 return s.line
54 func (s *Slice) SetPos(line int, file string) {
57 s.line = line
    [all...]
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/
util.go 3 //line /Volumes/Android/buildbot/src/android/build-tools/out/obj/go/src/cmd/compile/internal/gc/util.go:1
14 func (n *Node) Line() string {
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
util.go 11 func (n *Node) Line() string {
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/asm/internal/lex/
slice.go 3 //line /usr/local/google/buildbot/src/android/build-tools/out/obj/go/src/cmd/asm/internal/lex/slice.go:1
16 line int
20 func NewSlice(fileName string, line int, tokens []Token) *Slice {
24 line: line,
45 func (s *Slice) Line() int {
46 return s.line
54 func (s *Slice) SetPos(line int, file string) {
57 s.line = line
    [all...]
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/
util.go 3 //line /usr/local/google/buildbot/src/android/build-tools/out/obj/go/src/cmd/compile/internal/gc/util.go:1
14 func (n *Node) Line() string {
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
util.go 11 func (n *Node) Line() string {
  /external/llvm/tools/sancov/
sancov.cc 10 // This file is a command-line tool for reading and analyzing sanitizer
53 // --------- COMMAND LINE FLAGS ---------
145 return std::tie(FileName, Line) < std::tie(RHS.FileName, RHS.Line);
149 uint32_t Line;
188 FileLoc Loc = {FileName.str(), FrameInfo.Line};
396 OS << stripPathPrefix(FnLoc.Loc.FileName) << ":" << FnLoc.Loc.Line << " "
475 // Line format: <file_name>:<line> <function_name>
481 // Line format: <file_name>:<line> <function_name
    [all...]
  /prebuilts/go/darwin-x86/src/go/token/
position.go 17 // including the file, line, and column location.
18 // A Position is valid if the line number is > 0.
23 Line int // line number, starting at 1
28 func (pos *Position) IsValid() bool { return pos.Line > 0 }
32 // file:line:column valid position with file name
33 // line:column valid position without file name
43 s += fmt.Sprintf("%d:%d", pos.Line, pos.Column)
73 // The zero value for Pos is NoPos; there is no file and line information
89 // A File has a name, size, and line offset table
    [all...]
  /prebuilts/go/linux-x86/src/go/token/
position.go 17 // including the file, line, and column location.
18 // A Position is valid if the line number is > 0.
23 Line int // line number, starting at 1
28 func (pos *Position) IsValid() bool { return pos.Line > 0 }
32 // file:line:column valid position with file name
33 // line:column valid position without file name
43 s += fmt.Sprintf("%d:%d", pos.Line, pos.Column)
73 // The zero value for Pos is NoPos; there is no file and line information
89 // A File has a name, size, and line offset table
    [all...]
  /external/giflib/
dgif_lib.c 37 static int DGifDecompressLine(GifFileType *GifFile, GifPixelType *Line,
435 Get one full scanned line (Line) of length LineLen from GIF file.
438 DGifGetLine(GifFileType *GifFile, GifPixelType *Line, int LineLen)
457 if (DGifDecompressLine(GifFile, Line, LineLen) == GIF_OK) {
787 This version decompress the given GIF file into Line of length LineLen.
788 This routine can be called few times (one per scan line, for example), in
792 DGifDecompressLine(GifFileType *GifFile, GifPixelType *Line, int LineLen)
815 Line[i++] = Stack[--StackPtr];
842 Line[i++] = CrntCode
    [all...]
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...]
  /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...]

Completed in 681 milliseconds

<<11121314151617181920>>