/external/opencv/cv/src/ |
D | cvlinefit.cpp | 220 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/ |
D | RecognitionException.cs | 106 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/ |
D | RecognitionException.cs | 108 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/ |
D | hb-private.hh | 201 #define _ASSERT_STATIC1(_line, _cond) HB_UNUSED typedef int _static_assert_on_line_##_line##_failed… argument 202 #define _ASSERT_STATIC0(_line, _cond) _ASSERT_STATIC1 (_line, (_cond)) argument 230 #define _ASSERT_TYPE_POD1(_line, _type) union _type_##_type##_on_line_##_line##_is_not_POD { _type … argument 231 #define _ASSERT_TYPE_POD0(_line, _type) _ASSERT_TYPE_POD1 (_line, _type) argument 235 # define _ASSERT_INSTANCE_POD1(_line, _instance) \ argument 237 typedef __typeof__(_instance) _type_##_line; \ 238 _ASSERT_TYPE_POD1 (_line, _type_##_line); \ 241 # define _ASSERT_INSTANCE_POD1(_line, _instance) typedef int _assertion_on_line_##_line##_not_tested argument 243 # define _ASSERT_INSTANCE_POD0(_line, _instance) _ASSERT_INSTANCE_POD1 (_line, _instance) argument 247 #define _ASSERT_POD1(_line) \ argument [all …]
|
D | hb-open-type-private.hh | 84 #define _DEFINE_INSTANCE_ASSERTION1(_line, _assertion) \ argument 85 inline void _instance_assertion_on_line_##_line (void) const \ 90 # define _DEFINE_INSTANCE_ASSERTION0(_line, _assertion) _DEFINE_INSTANCE_ASSERTION1 (_line, _assert… argument 94 #define _DEFINE_COMPILES_ASSERTION1(_line, _code) \ argument 95 inline void _compiles_assertion_on_line_##_line (void) const \ 97 # define _DEFINE_COMPILES_ASSERTION0(_line, _code) _DEFINE_COMPILES_ASSERTION1 (_line, _code) argument
|
/external/mesa3d/src/glx/apple/ |
D | apple_glx_log.c | 108 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/ |
D | 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;
|
D | CommonToken.as | 34 protected var _line:int; 70 token._line = oldToken.line; 86 _line = line; 110 return _line;
|
/external/jetty/src/java/org/eclipse/jetty/util/ |
D | MultiPartInputStream.java | 810 String _line; field in MultiPartInputStream.Base64InputStream 829 _line = _in.readLine(); in read() 830 if (_line==null) in read() 832 if (_line.startsWith("--")) in read() 833 _buffer=(_line+"\r\n").getBytes(); //boundary marking end of part in read() 834 else if (_line.length()==0) in read() 838 ByteArrayOutputStream baos = new ByteArrayOutputStream((4*_line.length()/3)+2); in read() 839 B64Code.decode(_line, baos); in read()
|
/external/eigen/test/eigen2/ |
D | eigen2_parametrizedline.cpp | 16 template<typename LineType> void parametrizedline(const LineType& _line) in parametrizedline() argument 22 const int dim = _line.dim(); in parametrizedline()
|
/external/harfbuzz_ng/util/ |
D | options.hh | 82 #define _ASSERT_STATIC1(_line, _cond) HB_UNUSED typedef int _static_assert_on_line_##_line##_failed… argument 83 #define _ASSERT_STATIC0(_line, _cond) _ASSERT_STATIC1 (_line, (_cond)) argument
|
/external/eigen/test/ |
D | geo_parametrizedline.cpp | 16 template<typename LineType> void parametrizedline(const LineType& _line) in parametrizedline() argument 23 const Index dim = _line.dim(); in parametrizedline()
|
/external/lldb/source/Symbol/ |
D | LineEntry.cpp | 36 uint32_t _line, in LineEntry() argument 46 line(_line), in LineEntry()
|
/external/mksh/src/ |
D | dot.mkshrc | 380 cat "$@" | { set -o noglob; while read _line; do 381 _line=${_line%%#*} 382 [[ -n $_line ]] && print -r -- $_line
|
/external/lldb/include/lldb/Symbol/ |
D | LineTable.h | 289 uint32_t _line, in Entry() 298 line (_line), in Entry()
|
D | LineEntry.h | 38 uint32_t _line,
|
/external/protobuf/python/google/protobuf/ |
D | text_format.py | 479 self._line = -1 508 self._line += 1 731 self._line + 1, self._column + 1, message)) 738 self._previous_line = self._line
|
/external/nanopb-c/generator/google/protobuf/ |
D | text_format.py | 317 self._line = -1 341 self._line += 1 564 self._line + 1, self._column + 1, message)) 571 self._previous_line = self._line
|
/external/llvm/test/Transforms/MergeFunc/ |
D | 2011-02-08-RemoveEqual.ll | 25 …::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/libnfc-nci/src/gki/common/ |
D | gki_buffer.c | 444 p_hdr->_line = _line_; in GKI_getbuf_debug() 469 …%d)", i, x, (UINT8*)p_hdr + BUFFER_HDR_SIZE, p_hdr, p_hdr->status, p_hdr->_function, p_hdr->_line); in GKI_getbuf_debug() 558 p_hdr->_line = _line_; in GKI_getpoolbuf_debug() 602 …D("GKI_freebuf() freeing, %x, %x, func:%s(line=%d)", p_buf, p_hdr, p_hdr->_function, p_hdr->_line); in GKI_freebuf()
|
D | gki_common.h | 75 int _line; member
|
/external/libnfc-nci/halimpl/bcm2079x/gki/common/ |
D | gki_buffer.c | 444 p_hdr->_line = _line_; in GKI_getbuf_debug() 469 …%d)", i, x, (UINT8*)p_hdr + BUFFER_HDR_SIZE, p_hdr, p_hdr->status, p_hdr->_function, p_hdr->_line); in GKI_getbuf_debug() 558 p_hdr->_line = _line_; in GKI_getpoolbuf_debug() 602 …D("GKI_freebuf() freeing, %x, %x, func:%s(line=%d)", p_buf, p_hdr, p_hdr->_function, p_hdr->_line); in GKI_freebuf()
|
D | gki_common.h | 75 int _line; member
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |