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

1 2 3 4 56 7 8 91011>>

  /external/llvm/
Android.mk 66 # LLVM Command Line Tools
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventListener.cpp 85 DILineInfo Line) {
89 Result.LineNumber = Line.getLine();
128 // Now convert the line number information from the address/DebugLoc
  /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/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/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
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);
gen7_wm_state.c 53 if (ctx->Line.StippleFlag)
  /external/llvm/lib/IR/
DIBuilder.cpp 137 unsigned Line, StringRef Name,
145 ConstantInt::get(Type::getInt32Ty(C), Line),
153 ConstantInt::get(Type::getInt32Ty(C), Line),
165 DINameSpace NS, unsigned Line,
167 return ::createImportedModule(VMContext, Context, NS, Line, Name,
173 unsigned Line,
175 return ::createImportedModule(VMContext, Context, NS, Line, Name,
181 unsigned Line) {
186 ConstantInt::get(Type::getInt32Ty(VMContext), Line),
218 // Unspecified types are encoded in DIBasicType format. Line number, filename
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/PrettyPatch/
PrettyPatch.rb 21 # Just look at the first line to see if it is an SVN revision number as added
24 string.each_line do |line|
25 match = /^Subversion\ Revision: (\d*)$/.match(line)
40 def self.filename_from_diff_header(line)
42 match = format.match(line)
48 def self.diff_header?(line)
49 RELAXED_DIFF_HEADER_FORMATS.any? { |format| line =~ format }
85 # We won't search for intra-line diffs in lines longer than this length, to avoid hangs. See <http://webkit.org/b/56109>.
125 '\xcc\xb1' => '' # modifier - under line
283 .Line.add, .FileDiff .add
    [all...]
  /external/chromium_org/third_party/mesa/src/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/giflib/
dgif_lib.c 37 static int DGifDecompressLine(GifFileType *GifFile, GifPixelType *Line,
429 Get one full scanned line (Line) of length LineLen from GIF file.
432 DGifGetLine(GifFileType *GifFile, GifPixelType *Line, int LineLen)
451 if (DGifDecompressLine(GifFile, Line, LineLen) == GIF_OK) {
775 This version decompress the given GIF file into Line of length LineLen.
776 This routine can be called few times (one per scan line, for example), in
780 DGifDecompressLine(GifFileType *GifFile, GifPixelType *Line, int LineLen)
803 Line[i++] = Stack[--StackPtr];
830 Line[i++] = CrntCode
    [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/chromium_org/third_party/WebKit/Source/bindings/scripts/
deprecated_idl_parser.pm 141 Line => "",
152 my $line = shift;
153 my $msg = "Next token should be " . $value . ", but " . $token->value() . " at " . $self->{Line};
154 if (defined ($line)) {
155 $msg .= " deprecated_idl_parser.pm:" . $line;
165 die "Next token's type should be " . $type . ", but " . $token->type() . " at " . $self->{Line} unless $token->type() eq $type;
172 my $line = shift;
173 my $msg = "Unexpected token " . $token . " at " . $self->{Line};
174 if (defined ($line)) {
175 $msg .= " deprecated_idl_parser.pm:" . $line;
    [all...]
  /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/tools/libclang/
CIndexDiagnostic.cpp 249 // Print source location (file:line), along with optional column
252 unsigned Line, Column;
254 &File, &Line, &Column, 0);
257 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/chromium_org/third_party/WebKit/Source/core/html/track/
TextTrackCue.h 108 int line() const { return m_linePosition; } function in class:WebCore::TextTrackCue
227 Line,
  /external/clang/lib/AST/
CommentParser.cpp 642 // Don't create an empty line if verbatim opening command is followed
650 VerbatimBlockLineComment *Line;
652 Line = S.actOnVerbatimBlockLine(Tok.getLocation(),
659 // Empty line, just a tok::newline.
660 Line = S.actOnVerbatimBlockLine(Tok.getLocation(), "");
663 Lines.push_back(Line);
689 // Next token might not be a tok::verbatim_line_text if verbatim line
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp 85 // Construct a location that has a valid scope, but no line info.
304 /// getLineNumber - Get line number for the location. If location is invalid
576 // No need to fill in the Name, Line, Size, Alignment, Offset in case of
608 unsigned Line = getLineNumber(RD->getLocation());
622 return DBuilder.createForwardDecl(Tag, RDName, Ctx, DefUnit, Line);
766 unsigned Line = getLineNumber(Ty->getDecl()->getLocation());
773 DBuilder.createTypedef(Src, TyDecl->getName(), Unit, Line, TypedefContext);
809 unsigned line = getLineNumber(loc); local
826 return DBuilder.createMemberType(scope, name, file, line, sizeInBits,
2886 unsigned line = getLineNumber(loc); local
    [all...]

Completed in 2818 milliseconds

1 2 3 4 56 7 8 91011>>