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

1 2 3 4 5 6 7 891011>>

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
CommonToken.cs 41 int line; field in class:Antlr.Runtime.CommonToken
88 line = oldToken.Line;
133 public int Line {
135 return line;
138 line = value;
211 return "[@" + TokenIndex + "," + start + ":" + stop + "='" + txt + "',<" + type + ">" + channelStr + "," + line + ":" + CharPositionInLine + "]";
  /external/clang/lib/Format/
ContinuationIndenter.h 37 /// \brief Constructs a \c ContinuationIndenter to format \p Line starting in
45 /// \brief Get the initial state, i.e. the state after placing \p Line's
47 LineState getInitialState(unsigned FirstIndent, const AnnotatedLine *Line,
52 /// \brief Returns \c true, if a line break after \p State is allowed.
55 /// \brief Returns \c true, if a line break after \p State is mandatory.
61 /// Puts the token on the current line if \p Newline is \c false and adds a
62 /// line break and necessary indentation otherwise.
69 /// \brief Get the column limit for this line. This is the style's column
90 /// \brief If the current token sticks out over the end of the line, break
95 /// The returned penalty will cover the cost of the additional line breaks an
    [all...]
Format.cpp     [all...]
ContinuationIndenter.cpp 29 // Returns the length of everything up to the first possible line break after
71 const AnnotatedLine *Line,
76 State.Line = Line;
77 State.NextToken = Line->First;
78 State.Stack.push_back(ParenState(FirstIndent, Line->Level, FirstIndent,
100 // The opening "{" of a braced list has to be on the same line as the first
162 (State.Column + State.Line->Last->TotalLength - Current.TotalLength + 2 >
194 // expression itself as otherwise, the line breaks seem superfluous.
220 // for cases where the entire line does not fit on a single line as
    [all...]
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
BitmapFontMetricsTest.java 77 smallFont.draw(spriteBatch, "line height", 20, viewHeight - 120);
92 renderer.begin(ShapeType.Line);
94 renderer.line(0, y, 9999, y);
96 renderer.line(0, baseline, 9999, baseline);
98 renderer.line(0, baseline + font.getXHeight(), 9999, baseline + font.getXHeight());
100 renderer.line(0, y + font.getAscent(), 9999, y + font.getAscent());
102 renderer.line(0, baseline + font.getDescent(), 9999, baseline + font.getDescent());
104 renderer.line(0, y - font.getLineHeight(), 9999, y - font.getLineHeight());
107 renderer.begin(ShapeType.Line);
  /external/llvm/bindings/go/llvm/
IRBindings.cpp 94 void LLVMSetCurrentDebugLocation2(LLVMBuilderRef Bref, unsigned Line,
98 DebugLoc::get(Line, Col, Scope ? unwrap<MDNode>(Scope) : nullptr,
  /external/mesa3d/src/mesa/drivers/x11/
xm_line.c 27 * This file contains "accelerated" point, line, and triangle functions.
28 * It should be fairly easy to write new special-purpose point, line or
115 /*** Line rendering ***/
127 * Draw a flat-shaded, PF_TRUECOLOR line into an XImage.
143 * Draw a flat-shaded, PF_8A8B8G8R line into an XImage.
160 * Draw a flat-shaded, PF_8A8R8G8B line into an XImage.
177 * Draw a flat-shaded, PF_8R8G8B line into an XImage.
194 * Draw a flat-shaded, PF_8R8G8B24 line into an XImage.
214 * Draw a flat-shaded, PF_5R6G5B line into an XImage.
231 * Draw a flat-shaded, PF_DITHER_5R6G5B line into an XImage
    [all...]
  /external/opencv3/modules/python/test/
tickets.py 50 # Draw the convex hull as a thick green line
52 cv.Line(vis, xform(a), xform(b), cv.RGB(0,128,0), 3)
54 # Draw the original contour as a white line
56 cv.Line(vis, xform(a), xform(b), (255,255,255))
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/lex/
slice.go 13 line int
17 func NewSlice(fileName string, line int, tokens []Token) *Slice {
21 line: line,
42 func (s *Slice) Line() int {
43 return s.line
51 func (s *Slice) SetPos(line int, file string) {
54 s.line = line
  /prebuilts/go/linux-x86/src/cmd/asm/internal/lex/
slice.go 13 line int
17 func NewSlice(fileName string, line int, tokens []Token) *Slice {
21 line: line,
42 func (s *Slice) Line() int {
43 return s.line
51 func (s *Slice) SetPos(line int, file string) {
54 s.line = line
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
UnbufferedTokenStream.cs 134 if (PreviousElement != null && PreviousElement.Line > 0)
  /external/google-breakpad/src/common/
dwarf_line_to_module.cc 92 fprintf(stderr, "warning: DWARF line number data refers to undefined"
116 // Should we omit this line? (See the comments for omitted_line_end_.)
128 fprintf(stderr, "warning: DWARF line number data refers to "
134 Module::Line line; local
135 line.address = address;
136 // We set the size when we get the next line or the EndSequence call.
137 line.size = length;
138 line.file = file;
139 line.number = line_num
    [all...]
  /external/llvm/lib/IR/
DIBuilder.cpp 156 // source line locations throughout the backend, we prevent codegen from
169 Metadata *NS, unsigned Line, StringRef Name,
171 auto *M = DIImportedEntity::get(C, Tag, Context, DINodeRef(NS), Line, Name);
178 unsigned Line) {
180 Context, NS, Line, StringRef(), AllImportedModules);
185 unsigned Line) {
187 Context, NS, Line, StringRef(), AllImportedModules);
191 unsigned Line) {
193 Context, M, Line, StringRef(), AllImportedModules);
198 unsigned Line,
    [all...]
  /external/llvm/test/MC/ELF/
discriminator.s 3 # RUN: llvm-dwarfdump -debug-dump=line %t.o | FileCheck %s -check-prefix=DWARF-DUMP
59 # DWARF-DUMP: Address Line Column File ISA Discriminator Flags
  /external/mesa3d/src/mesa/swrast/
s_aalinetemp.h 27 * Antialiased line template.
32 * Function to render each fragment in the AA line.
37 NAME(plot)(struct gl_context *ctx, struct LineInfo *line, int ix, int iy)
42 const GLfloat coverage = compute_coveragef(line, ix, iy);
43 const GLuint i = line->span.end;
50 line->span.end++;
51 line->span.array->coverage[i] = coverage;
52 line->span.array->x[i] = ix;
53 line->span.array->y[i] = iy;
60 line->span.array->z[i] = (GLuint) solve_plane(fx, fy, line->zPlane)
106 NAME(line)(struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1) function
114 struct LineInfo line; local
    [all...]
  /external/v8/test/mjsunit/
whitespaces.js 15 0x000A, // Line Feed LF
17 0x2028, // Line Separator LS
34 0x2028, // LINE SEPARATOR
eval-stack-trace.js 82 " throw new Error(3); \n" + // Line 2
84 "f(); \n"; // Line 4
116 " eval(code1); \n" + // Line 3
118 "h(); \n"; // Line 5
152 " g(); \n" + // Line 3
154 "h(); \n"; // Line 5
  /prebuilts/go/darwin-x86/src/go/token/
serialize_test.go 61 if l.Offset != m.Offset || l.Filename != m.Filename || l.Line != m.Line {
101 line := 1000
105 f.AddLineInfo(offs, fmt.Sprintf("file%d", offs), line)
106 line += 33
  /prebuilts/go/linux-x86/src/go/token/
serialize_test.go 61 if l.Offset != m.Offset || l.Filename != m.Filename || l.Line != m.Line {
101 line := 1000
105 f.AddLineInfo(offs, fmt.Sprintf("file%d", offs), line)
106 line += 33
  /external/clang/lib/Frontend/
LayoutOverrideSource.cpp 41 std::string Line;
42 getline(Input, Line);
44 StringRef LineStr(Line);
46 // Determine whether the following line will start a
  /external/google-breakpad/src/processor/
fast_source_line_resolver.cc 88 scoped_ptr<Line> line(new Line);
89 const Line* line_ptr = 0;
92 line.get()->CopyFrom(line_ptr);
93 FileMap::iterator it = files_.find(line->source_file_id);
96 files_.find(line->source_file_id).GetValuePtr();
98 frame->source_line = line->line;
208 // Even without a relevant STACK line, many functions contai
    [all...]
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventListener.cpp 67 DILineInfo Line) {
71 Result.LineNumber = Line.Line;
147 // Source line information for the address range is provided as
149 // a source line. JIT API treats offsets in LineNumberInfo structures
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen7_sf_state.c 251 uint32_t line_width_u3_7 = U_FIXED(CLAMP(ctx->Line.Width, 0.0, 7.99), 7);
252 /* TODO: line width of 0 is not allowed when MSAA enabled */
257 if (ctx->Line.SmoothFlag) {
261 if (ctx->Line.StippleFlag && intel->is_haswell) {
  /prebuilts/go/darwin-x86/src/runtime/trace/
trace_stack_test.go 140 Line int
261 if wf.Fn != f.Fn || wf.Line != 0 && wf.Line != f.Line {
273 t.Errorf("did not match event %v at %v:%v", trace.EventDescriptions[w.Type].Name, w.Stk[0].Fn, w.Stk[0].Line)
280 t.Logf(" %v:%v", f.Fn, f.Line)
  /prebuilts/go/linux-x86/src/runtime/trace/
trace_stack_test.go 140 Line int
261 if wf.Fn != f.Fn || wf.Line != 0 && wf.Line != f.Line {
273 t.Errorf("did not match event %v at %v:%v", trace.EventDescriptions[w.Type].Name, w.Stk[0].Fn, w.Stk[0].Line)
280 t.Logf(" %v:%v", f.Fn, f.Line)

Completed in 721 milliseconds

1 2 3 4 5 6 7 891011>>