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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_lines.c 38 * Init the mask[] array to implement a line stipple.
47 GLuint bit = (swrast->StippleCounter / ctx->Line.StippleFactor) & 0xf;
48 if ((1 << bit) & ctx->Line.StipplePattern) {
60 * To draw a wide line we can simply redraw the span N times, side by side.
65 const GLint width = (GLint) CLAMP(ctx->Line.Width,
117 /* Simple RGBA index line (no stipple, width=1, no Z, no fog, no tex)*/
124 /* Z, fog, wide, stipple RGBA line */
129 if (ctx->Line.StippleFlag) { \
133 if (ctx->Line.Width > 1.0) { \
142 /* General-purpose line (any/all features). *
    [all...]
  /external/icu4c/layoutex/
playout.cpp 143 pl_closeLine(pl_line *line)
145 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line;
151 pl_countLineRuns(const pl_line *line)
153 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line;
163 pl_getLineAscent(const pl_line *line)
165 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_lines.c 38 * Init the mask[] array to implement a line stipple.
47 GLuint bit = (swrast->StippleCounter / ctx->Line.StippleFactor) & 0xf;
48 if ((1 << bit) & ctx->Line.StipplePattern) {
60 * To draw a wide line we can simply redraw the span N times, side by side.
65 const GLint width = (GLint) CLAMP(ctx->Line.Width,
117 /* Simple RGBA index line (no stipple, width=1, no Z, no fog, no tex)*/
124 /* Z, fog, wide, stipple RGBA line */
129 if (ctx->Line.StippleFlag) { \
133 if (ctx->Line.Width > 1.0) { \
142 /* General-purpose line (any/all features). *
    [all...]
  /external/llvm/include/llvm/DebugInfo/
DIContext.h 31 /// DILineInfo - a format-neutral container for source line information.
35 uint32_t Line;
40 Line(0), Column(0) {}
43 uint32_t line, uint32_t column)
45 Line(line), Column(column) {}
49 uint32_t getLine() const { return Line; }
53 return Line == RHS.Line && Column == RHS.Column &&
91 // Use file/line info by default
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
ANTLRxxxxStreamFixture.cs 142 Assert.AreEqual(1, inputStream.Line);
147 Assert.AreEqual(1, inputStream.Line);
152 Assert.AreEqual(1, inputStream.Line);
157 Assert.AreEqual(1, inputStream.Line);
162 Assert.AreEqual(1, inputStream.Line);
167 Assert.AreEqual(2, inputStream.Line);
172 Assert.AreEqual(2, inputStream.Line);
177 Assert.AreEqual(2, inputStream.Line);
182 Assert.AreEqual(2, inputStream.Line);
187 Assert.AreEqual(2, inputStream.Line);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
plugin.properties 21 javaLineBreakpoint.name=Java Line Breakpoints
32 CommonJavaLineBreakpoint.name = Common Java Line Breakpoint
33 JavaLineBreakpoint.name = Java Line Breakpoint
40 JavaStratumLineBreakpoint.name = Java Stratum Line Breakpoint
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
IToken.cs 47 /** <summary>The line number on which this token was matched; line=1..n</summary> */
48 int Line {
53 /** <summary>The index of the first character relative to the beginning of the line 0..n-1</summary> */
Lexer.cs 73 public int Line {
75 return input.Line;
78 input.Line = value;
116 state.tokenStartLine = input.Line;
120 eof.Line = Line;
201 t.Line = state.tokenStartLine;
345 string inputSymbol = ((char)input.LT(1)) + " line=" + Line + ":" + CharPositionInLine;
351 string inputSymbol = ((char)input.LT(1)) + " line=" + Line + ":" + CharPositionInLine
    [all...]
RecognitionException.cs 66 * knows its state (such as current input symbol and line info) that
69 * perhaps print an entire line of input not just a single token, for example.
101 * Track the line (1-based) at which the error occurred in case this is
103 * unexpected char doesn't carry the line info.
109 /// The 0-based index into the line where the error occurred.
115 * imaginary nodes w/o line/col info. We now search backwards looking
116 * for most recent token with line/col info, but notify getErrorHeader()
150 this._line = _token.Line;
157 this._line = ((ICharStream)input).Line;
172 _line = info.GetInt32("Line");
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
IToken.cs 51 /** <summary>The line number on which this token was matched; line=1..n</summary> */
52 int Line
58 /** <summary>The index of the first character relative to the beginning of the line 0..n-1</summary> */
Lexer.cs 82 public int Line
86 return input.Line;
90 input.Line = value;
136 state.tokenStartLine = input.Line;
141 eof.Line = Line;
243 t.Line = state.tokenStartLine;
419 string inputSymbol = ( (char)input.LT( 1 ) ) + " line=" + Line + ":" + CharPositionInLine;
426 string inputSymbol = ( (char)input.LT( 1 ) ) + " line=" + Line + ":" + CharPositionInLine
    [all...]
RecognitionException.cs 67 * knows its state (such as current input symbol and line info) that
70 * perhaps print an entire line of input not just a single token, for example.
103 * Track the line (1-based) at which the error occurred in case this is
105 * unexpected char doesn't carry the line info.
111 /// The 0-based index into the line where the error occurred.
117 * imaginary nodes w/o line/col info. We now search backwards looking
118 * for most recent token with line/col info, but notify getErrorHeader()
160 this._line = _token.Line;
175 this._line = ((ICharStream)input).Line;
194 _line = info.GetInt32("Line");
    [all...]
  /external/chromium_org/third_party/skia/src/svg/
SkSVGLine.cpp 20 DEFINE_SVG_INFO(Line)
23 parser._startElement("line");
  /external/skia/src/svg/
SkSVGLine.cpp 20 DEFINE_SVG_INFO(Line)
23 parser._startElement("line");
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonTree.cs 110 public override int Line {
112 if (token == null || token.Line == 0) {
114 return Children[0].Line;
118 return token.Line;
121 base.Line = value;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonTree.cs 128 public override int Line
132 if ( Token == null || Token.Line == 0 )
135 return Children[0].Line;
140 return Token.Line;
145 base.Line = value;
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
QuicktimeTextTrackImpl.java 43 List<Line> subs = new LinkedList<Line>();
45 public List<Line> getSubs() {
67 for (Line sub : subs) {
96 for (Line sub : subs) {
130 public static class Line {
136 public Line(long from, long to, String text) {
TextTrackImpl.java 39 List<Line> subs = new LinkedList<Line>();
41 public List<Line> getSubs() {
70 for (Line sub : subs) {
99 for (Line sub : subs) {
133 public static class Line {
139 public Line(long from, long to, String text) {
  /external/chromium_org/v8/test/mjsunit/harmony/
debug-evaluate-blockscopes.js 40 { // Line 1.
41 let i = 1; // Line 2.
42 try { // Line 3.
43 throw 'stuff'; // Line 4.
44 } catch (e) { // Line 5.
45 x = 2; // Line 6.
52 // Set breakpoint on line 6.
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1586.js 34 var i = 1; // Line 1.
35 { // Line 2.
36 try { // Line 3.
37 throw 'stuff'; // Line 4.
38 } catch (e) { // Line 5.
39 x = 2; // Line 6.
46 // Set breakpoint on line 6.
  /external/v8/test/mjsunit/harmony/
debug-evaluate-blockscopes.js 40 { // Line 1.
41 let i = 1; // Line 2.
42 try { // Line 3.
43 throw 'stuff'; // Line 4.
44 } catch (e) { // Line 5.
45 x = 2; // Line 6.
52 // Set breakpoint on line 6.
  /external/v8/test/mjsunit/regress/
regress-1586.js 34 var i = 1; // Line 1.
35 { // Line 2.
36 try { // Line 3.
37 throw 'stuff'; // Line 4.
38 } catch (e) { // Line 5.
39 x = 2; // Line 6.
46 // Set breakpoint on line 6.
  /external/clang/lib/Format/
TokenAnnotator.cpp 32 AnnotatingParser(AnnotatedLine &Line, IdentifierInfo &Ident_in)
33 : Line(Line), CurrentToken(Line.First), KeywordVirtualFound(false),
65 Line.First->isNot(tok::kw_template))
263 Line.StartsDefinition = true;
307 if (Tok->Previous == NULL && Line.MustBeDeclaration)
319 Line.First->Type == TT_ObjCMethodSpecifier) {
354 if (Line.MustBeDeclaration && NameFound && !Contexts.back().IsExpression)
355 Line.MightBeFunctionDecl = true
    [all...]
  /external/chromium_org/third_party/icu/source/test/perf/collationperf/
collperf.cpp 20 // A file of names is required as input, one per line. It must be in utf-8 or utf-16 format,
102 // Command line option variables
104 // on the command line by the user.
138 // Definitions for the command line options
187 // struct Line
189 // Each line from the source file (containing a name, presumably) gets
192 struct Line {
203 Line *gFileLines; // Ptr to array of Line structs, one per line in the file
370 int line; local
467 int line; local
1160 int line; local
1605 int line; local
    [all...]
  /external/icu4c/test/perf/collationperf/
collperf.cpp 20 // A file of names is required as input, one per line. It must be in utf-8 or utf-16 format,
102 // Command line option variables
104 // on the command line by the user.
138 // Definitions for the command line options
187 // struct Line
189 // Each line from the source file (containing a name, presumably) gets
192 struct Line {
203 Line *gFileLines; // Ptr to array of Line structs, one per line in the file
370 int line; local
467 int line; local
1160 int line; local
1611 int line; local
    [all...]

Completed in 1941 milliseconds

12 3 4 5 6 7 8 91011>>