Home
last modified time | relevance | path

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

12

/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/python/cpython2/Lib/test/
Dtest_StringIO.py16 _line = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!' variable in TestGenericStringIO
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]])
100 eq(line, self._line + '\n')
[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/harfbuzz_ng/src/
Dhb-private.hh273 #define _ASSERT_TYPE_POD1(_line, _type) union _type_##_type##_on_line_##_line##_is_not_POD { _type … argument
274 #define _ASSERT_TYPE_POD0(_line, _type) _ASSERT_TYPE_POD1 (_line, _type) argument
278 # define _ASSERT_INSTANCE_POD1(_line, _instance) \ argument
280 typedef __typeof__(_instance) _type_##_line; \
281 _ASSERT_TYPE_POD1 (_line, _type_##_line); \
284 # define _ASSERT_INSTANCE_POD1(_line, _instance) typedef int _assertion_on_line_##_line##_not_tested argument
286 # define _ASSERT_INSTANCE_POD0(_line, _instance) _ASSERT_INSTANCE_POD1 (_line, _instance) argument
290 #define _ASSERT_POD1(_line) \ argument
291 HB_UNUSED inline void _static_assertion_on_line_##_line (void) const \
292 { _ASSERT_INSTANCE_POD1 (_line, *this); /* Make sure it's POD. */ }
[all …]
Dhb-open-type-private.hh86 #define _DEFINE_INSTANCE_ASSERTION1(_line, _assertion) \ argument
87 inline void _instance_assertion_on_line_##_line (void) const \
92 # define _DEFINE_INSTANCE_ASSERTION0(_line, _assertion) _DEFINE_INSTANCE_ASSERTION1 (_line, _assert… argument
96 #define _DEFINE_COMPILES_ASSERTION1(_line, _code) \ argument
97 inline void _compiles_assertion_on_line_##_line (void) const \
99 # define _DEFINE_COMPILES_ASSERTION0(_line, _code) _DEFINE_COMPILES_ASSERTION1 (_line, _code) argument
/external/mesa3d/src/glx/apple/
Dapple_glx_log.c108 char *_line; in _apple_glx_vlog() local
109 asprintf(&_line, "%d", line); in _apple_glx_vlog()
110 if (_line) { in _apple_glx_vlog()
111 asl_set(msg, "Line", _line); in _apple_glx_vlog()
112 free(_line); in _apple_glx_vlog()
/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/autotest/client/common_lib/cros/manual/
Daudio_helper.py169 for _line in lines:
170 match = re.findall(r"(\d+):\d+.*USB\s+\*.*", _line)
212 for _line in lines:
213 nodes.append(re.findall(r"(\d+):\d+.*USB\s+\*.*", _line)[0])
/external/python/cpython3/Lib/
Dtraceback.py253 self._line = line
281 if self._line is None:
282 self._line = linecache.getline(self.filename, self.lineno).strip()
283 return self._line
Dpyclbr.py163 for tokentype, token, start, _end, _line in g:
/external/eigen/test/
Dgeo_parametrizedline.cpp16 template<typename LineType> void parametrizedline(const LineType& _line) in parametrizedline() argument
23 const Index dim = _line.dim(); in parametrizedline()
/external/nanopb-c/generator/google/protobuf/
Dtext_format.py317 self._line = -1
341 self._line += 1
564 self._line + 1, self._column + 1, message))
571 self._previous_line = self._line
/external/python/cpython2/Lib/
Dhttplib.py1373 self._line = line
1396 s = self._line[self._line_offset:]
1406 s = self._line[i:j]
1417 s = self._line[self._line_offset:]
1425 L = [self._line[self._line_offset:]]
Dpyclbr.py155 for tokentype, token, start, _end, _line in g:
/external/swiftshader/third_party/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
149 …::impl_fileline_FileLine"* %this, %"struct.kc::impl_casestring__Str"* %_file, i32 %_line) align 2 {
162 store i32 %_line, i32* %_line_addr
/external/llvm/test/Transforms/MergeFunc/
D2011-02-08-RemoveEqual.ll25 …leline_FileLine"* %this, %"struct.kc::impl_casestring__Str"* %_file, i32 %_line) align 2 personali…
38 store i32 %_line, i32* %_line_addr
151 …leline_FileLine"* %this, %"struct.kc::impl_casestring__Str"* %_file, i32 %_line) align 2 personali…
164 store i32 %_line, i32* %_line_addr
/external/protobuf/python/google/protobuf/
Dtext_format.py783 self._line = -1
815 self._line += 1
1077 self._line + 1, self._column + 1, message))
1084 self._previous_line = self._line
/external/mksh/src/
Ddot.mkshrc405 \\builtin cat "$@" | while \\builtin read _line; do
406 _line=${_line%%#*}
407 [[ -n $_line ]] && \\builtin print -r -- $_line
/external/scapy/scapy/arch/windows/
D__init__.py856 for _line in stdout:
857 if not _line.strip() and len(_buffer) > 0:
863 _buffer.append(_line)
/external/python/cpython3/Tools/clinic/
Dclinic.py1370 def _line(self, lookahead=False): member in BlockParser
1382 line = self._line()
1407 line = self._line()
1430 line = self._line(lookahead=True)
/external/python/cpython3/Lib/test/
Dtest_traceback.py808 self.assertEqual(None, f._line)
/external/annotation-tools/asmx/test/lib/
Djavancss.jar ... int _nr static java.text.NumberFormat _pNumberFormat StringBuffer _line private java.lang.String _formatListHeader (int, ...
/external/python/cpython2/Doc/reference/
Dlexical_analysis.rst42 .. _line-structure:

12