HomeSort by relevance Sort by last modified time
    Searched refs:_line (Results 1 - 25 of 42) sorted by null

1 2

  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
ANTLRStringStream.as 41 protected var _line:int = 1;
78 _line = 1;
87 _line++;
142 state.line = _line;
152 _line = state.line;
187 return _line;
195 this._line = line;
CommonToken.as 34 protected var _line:int;
70 token._line = oldToken.line;
86 _line = line;
110 return _line;
  /external/chromium_org/third_party/mesa/src/src/glx/apple/
apple_glx_log.c 108 char *_line; local
109 asprintf(&_line, "%d", line);
110 if (_line) {
111 asl_set(msg, "Line", _line);
112 free(_line);
  /external/mesa3d/src/glx/apple/
apple_glx_log.c 108 char *_line; local
109 asprintf(&_line, "%d", line);
110 if (_line) {
111 asl_set(msg, "Line", _line);
112 free(_line);
  /external/opencv/cv/src/
cvlinefit.cpp 220 icvCalcDist2D( CvPoint2D32f * points, int count, float *_line, float *dist )
223 float px = _line[2], py = _line[3];
224 float nx = _line[1], ny = -_line[0];
242 icvCalcDist3D( CvPoint3D32f * points, int count, float *_line, float *dist )
245 float px = _line[3], py = _line[4], pz = _line[5];
246 float vx = _line[0], vy = _line[1], vz = _line[2]
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_StringIO.py 16 _line = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!' variable in class:TestGenericStringIO
18 # Constructor to use for the test data (._line is passed to this
23 self._lines = self.constructor((self._line + '\n') * 5)
29 eq(self._fp.read(10), self._line[:10])
32 eq(self._fp.readline(), self._line[10:] + '\n')
35 eq(self._fp.readline(-1), self._line + '\n')
40 f.write(self._line[:6])
42 f.write(self._line[20:26])
43 f.write(self._line[52])
48 f.writelines([self._line[0], self._line[1], self._line[2]]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_StringIO.py 16 _line = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!' variable in class:TestGenericStringIO
18 # Constructor to use for the test data (._line is passed to this
23 self._lines = self.constructor((self._line + '\n') * 5)
29 eq(self._fp.read(10), self._line[:10])
32 eq(self._fp.readline(), self._line[10:] + '\n')
35 eq(self._fp.readline(-1), self._line + '\n')
40 f.write(self._line[:6])
42 f.write(self._line[20:26])
43 f.write(self._line[52])
48 f.writelines([self._line[0], self._line[1], self._line[2]]
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
RecognitionException.cs 106 private int _line; field in class:Antlr.Runtime.RecognitionException
150 this._line = _token.Line;
157 this._line = ((ICharStream)input).Line;
172 _line = info.GetInt32("Line");
250 return _line;
253 _line = value;
273 info.AddValue("Line", _line);
285 this._line = lastRealToken.Line;
304 this._line = priorPayload.Line;
313 this._line = payload.Line
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
RecognitionException.cs 108 private int _line; field in class:Antlr.Runtime.RecognitionException
160 this._line = _token.Line;
175 this._line = ((ICharStream)input).Line;
194 _line = info.GetInt32("Line");
296 return _line;
300 _line = value;
324 info.AddValue("Line", _line);
340 this._line = lastRealToken.Line;
363 this._line = priorPayload.Line;
382 this._line = payload.Line
    [all...]
  /external/chromium_org/tools/gyp/pylib/gyp/
ninja_syntax.py 35 self._line('%s = %s' % (key, value), indent)
38 self._line('pool %s' % name)
44 self._line('rule %s' % name)
79 self._line('build %s: %s' % (' '.join(out_outputs),
94 self._line('include %s' % path)
97 self._line('subninja %s' % path)
100 self._line('default %s' % ' '.join(self._as_list(paths)))
111 def _line(self, text, indent=0): member in class:Writer