Home
last modified time | relevance | path

Searched refs:_line (Results 1 – 17 of 17) sorted by relevance

/external/opencv/cv/src/
Dcvlinefit.cpp220 icvCalcDist2D( CvPoint2D32f * points, int count, float *_line, float *dist ) in icvCalcDist2D() argument
223 float px = _line[2], py = _line[3]; in icvCalcDist2D()
224 float nx = _line[1], ny = -_line[0]; in icvCalcDist2D()
242 icvCalcDist3D( CvPoint3D32f * points, int count, float *_line, float *dist ) in icvCalcDist3D() argument
245 float px = _line[3], py = _line[4], pz = _line[5]; in icvCalcDist3D()
246 float vx = _line[0], vy = _line[1], vz = _line[2]; in icvCalcDist3D()
348 float _line[6], _lineprev[6]; in icvFitLine2D() local
408 icvFitLine2D_wods( points, count, w, _line ); in icvFitLine2D()
419 double t = _line[0] * _lineprev[0] + _line[1] * _lineprev[1]; in icvFitLine2D()
426 x = (float) fabs( _line[2] - _lineprev[2] ); in icvFitLine2D()
[all …]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DRecognitionException.cs106 private int _line; field in Antlr.Runtime.RecognitionException
150 this._line = _token.Line; in RecognitionException()
157 this._line = ((ICharStream)input).Line; in RecognitionException()
172 _line = info.GetInt32("Line"); in RecognitionException()
250 return _line;
253 _line = value;
273 info.AddValue("Line", _line); in GetObjectData()
285 this._line = lastRealToken.Line; in ExtractInformationFromTreeNodeStream()
304 this._line = priorPayload.Line; in ExtractInformationFromTreeNodeStream()
313 this._line = payload.Line; in ExtractInformationFromTreeNodeStream()
[all …]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DRecognitionException.cs108 private int _line; field in Antlr.Runtime.RecognitionException
160 this._line = _token.Line; in RecognitionException()
175 this._line = ((ICharStream)input).Line; in RecognitionException()
194 _line = info.GetInt32("Line"); in RecognitionException()
296 return _line;
300 _line = value;
324 info.AddValue("Line", _line); in GetObjectData()
340 this._line = lastRealToken.Line; in ExtractInformationFromTreeNodeStream()
363 this._line = priorPayload.Line; in ExtractInformationFromTreeNodeStream()
382 this._line = payload.Line; in ExtractInformationFromTreeNodeStream()
[all …]
/external/webkit/Source/WebCore/inspector/front-end/
DSourceTokenizer.js38 this._line = line;
63 return cursor < this._line.length ? this._line.charAt(cursor) : "\n";
DSourceHTMLTokenizer.js93 this._line = line;
146 this.line = this._line;
147 if (cursor !== this._internalJavaScriptTokenizer._line.length) {
154 } else if (cursor !== this._line.length)
158 this.line = this._line;
159 if (cursor !== this._internalCSSTokenizer._line.length) {
166 } else if (cursor !== this._line.length)
649 var token = this._line.substring(cursorOnEnter, cursor);
655 var token = this._line.substring(cursorOnEnter, cursor);
DSourceHTMLTokenizer.re2js92 this._line = line;
145 this.line = this._line;
146 if (cursor !== this._internalJavaScriptTokenizer._line.length) {
153 } else if (cursor !== this._line.length)
157 this.line = this._line;
158 if (cursor !== this._internalCSSTokenizer._line.length) {
165 } else if (cursor !== this._line.length)
331 var token = this._line.substring(cursorOnEnter, cursor);
337 var token = this._line.substring(cursorOnEnter, cursor);
DSourceJavaScriptTokenizer.re2js162 var token = this._line.substring(cursorOnEnter, cursor);
DSourceCSSTokenizer.js375 var token = this._line.substring(cursorOnEnter, cursor);
DSourceJavaScriptTokenizer.js249 var token = this._line.substring(cursorOnEnter, cursor);
1181 var token = this._line.substring(cursorOnEnter, cursor);
DSourceCSSTokenizer.re2js240 var token = this._line.substring(cursorOnEnter, cursor);
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
DANTLRStringStream.as41 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;
DCommonToken.as34 protected var _line:int;
70 token._line = oldToken.line;
86 _line = line;
110 return _line;
/external/mksh/src/
Ddot.mkshrc346 cat "$@" | { set -o noglob; while read _line; do
347 _line=${_line%%#*}
348 [[ -n $_line ]] && print -r -- $_line
/external/protobuf/python/google/protobuf/
Dtext_format.py320 self._line = -1
344 self._line += 1
612 self._line + 1, self._column + 1, message))
622 self._previous_line = self._line
/external/llvm/test/Transforms/MergeFunc/
D2011-02-08-RemoveEqual.ll25 …::impl_fileline_FileLine"* %this, %"struct.kc::impl_casestring__Str"* %_file, i32 %_line) align 2 {
38 store i32 %_line, i32* %_line_addr
151 …::impl_fileline_FileLine"* %this, %"struct.kc::impl_casestring__Str"* %_file, i32 %_line) align 2 {
164 store i32 %_line, i32* %_line_addr
/external/kernel-headers/original/asm-mips/pci/
Dbridge.h619 #define BRIDGE_INT_DEV_SET(_dev, _line) (_dev << BRIDGE_INT_DEV_SHFT(_line)) argument
/external/webkit/Source/JavaScriptCore/
DChangeLog-2007-10-1412256 (KJS::Node::lineNo): Renamed _line to m_line