HomeSort by relevance Sort by last modified time
    Searched refs:_line (Results 1 - 25 of 27) 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...]
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/test/BWEStandAlone/
MatlabPlot.cc 412 while (!_line.empty())
414 delete *(_line.end() - 1);
415 _line.pop_back();
432 _line.push_back(newLine);
434 return (static_cast<int>(_line.size() - 1)); // index of newly inserted line
449 _line.push_back(newLine);
451 return (static_cast<int>(_line.size() - 1)); // index of newly inserted line
465 std::vector<MatlabLine*>::iterator it = _line.begin();
469 for (; it != _line.end(); it++, lineIx++)
499 if (lineIndex < 0 || lineIndex >= static_cast<int>(_line.size())
    [all...]
MatlabPlot.h 133 std::vector<MatlabLine *> _line; member in class:MatlabPlot
  /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
  /external/lldb/include/lldb/Symbol/
LineEntry.h 38 uint32_t _line,
LineTable.h 289 uint32_t _line,
298 line (_line),
  /external/eigen/test/eigen2/
eigen2_parametrizedline.cpp 16 template<typename LineType> void parametrizedline(const LineType& _line)
22 const int dim = _line.dim();
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-private.hh 201 #define _ASSERT_STATIC1(_line, _cond) HB_UNUSED typedef int _static_assert_on_line_##_line##_failed[(_cond)?1:-1]
202 #define _ASSERT_STATIC0(_line, _cond) _ASSERT_STATIC1 (_line, (_cond))
230 #define _ASSERT_TYPE_POD1(_line, _type) union _type_##_type##_on_line_##_line##_is_not_POD { _type instance; }
231 #define _ASSERT_TYPE_POD0(_line, _type) _ASSERT_TYPE_POD1 (_line, _type)
235 # define _ASSERT_INSTANCE_POD1(_line, _instance) \
237 typedef __typeof__(_instance) _type_##_line; \
    [all...]
hb-open-type-private.hh 84 #define _DEFINE_INSTANCE_ASSERTION1(_line, _assertion) \
85 inline void _instance_assertion_on_line_##_line (void) const \
90 # define _DEFINE_INSTANCE_ASSERTION0(_line, _assertion) _DEFINE_INSTANCE_ASSERTION1 (_line, _assertion)
94 #define _DEFINE_COMPILES_ASSERTION1(_line, _code) \
95 inline void _compiles_assertion_on_line_##_line (void) const \
97 # define _DEFINE_COMPILES_ASSERTION0(_line, _code) _DEFINE_COMPILES_ASSERTION1 (_line, _code)
  /external/harfbuzz_ng/src/
hb-private.hh 162 #define _ASSERT_STATIC1(_line, _cond) HB_UNUSED typedef int _static_assert_on_line_##_line##_failed[(_cond)?1:-1]
163 #define _ASSERT_STATIC0(_line, _cond) _ASSERT_STATIC1 (_line, (_cond))
191 #define _ASSERT_TYPE_POD1(_line, _type) union _type_##_type##_on_line_##_line##_is_not_POD { _type instance; }
192 #define _ASSERT_TYPE_POD0(_line, _type) _ASSERT_TYPE_POD1 (_line, _type)
196 # define _ASSERT_INSTANCE_POD1(_line, _instance) \
198 typedef __typeof__(_instance) _type_##_line; \
    [all...]
hb-open-type-private.hh 84 #define _DEFINE_INSTANCE_ASSERTION1(_line, _assertion) \
85 inline void _instance_assertion_on_line_##_line (void) const \
90 # define _DEFINE_INSTANCE_ASSERTION0(_line, _assertion) _DEFINE_INSTANCE_ASSERTION1 (_line, _assertion)
94 #define _DEFINE_COMPILES_ASSERTION1(_line, _code) \
95 inline void _compiles_assertion_on_line_##_line (void) const \
97 # define _DEFINE_COMPILES_ASSERTION0(_line, _code) _DEFINE_COMPILES_ASSERTION1 (_line, _code)
  /external/eigen/test/
geo_parametrizedline.cpp 16 template<typename LineType> void parametrizedline(const LineType& _line)
23 const Index dim = _line.dim();
  /external/lldb/source/Symbol/
LineEntry.cpp 36 uint32_t _line,
46 line(_line),
  /external/harfbuzz_ng/util/
options.hh 82 #define _ASSERT_STATIC1(_line, _cond) HB_UNUSED typedef int _static_assert_on_line_##_line##_failed[(_cond)?1:-1]
83 #define _ASSERT_STATIC0(_line, _cond) _ASSERT_STATIC1 (_line, (_cond))
  /external/libnfc-nci/halimpl/bcm2079x/gki/common/
gki_buffer.c 444 p_hdr->_line = _line_;
469 LOGD("pool:%d, buf[%d]:%x, hdr:%x status=%d func:%s(line=%d)", i, x, (UINT8*)p_hdr + BUFFER_HDR_SIZE, p_hdr, p_hdr->status, p_hdr->_function, p_hdr->_line);
558 p_hdr->_line = _line_;
602 LOGD("GKI_freebuf() freeing, %x, %x, func:%s(line=%d)", p_buf, p_hdr, p_hdr->_function, p_hdr->_line);
    [all...]
gki_common.h 75 int _line; member in struct:_buffer_hdr
  /external/libnfc-nci/src/gki/common/
gki_buffer.c 444 p_hdr->_line = _line_;
469 LOGD("pool:%d, buf[%d]:%x, hdr:%x status=%d func:%s(line=%d)", i, x, (UINT8*)p_hdr + BUFFER_HDR_SIZE, p_hdr, p_hdr->status, p_hdr->_function, p_hdr->_line);
558 p_hdr->_line = _line_;
602 LOGD("GKI_freebuf() freeing, %x, %x, func:%s(line=%d)", p_buf, p_hdr, p_hdr->_function, p_hdr->_line);
    [all...]
gki_common.h 75 int _line; member in struct:_buffer_hdr
  /development/ndk/platforms/android-9/arch-mips/include/asm/pci/
bridge.h 506 #define BRIDGE_INT_DEV_SET(_dev, _line) (_dev << BRIDGE_INT_DEV_SHFT(_line))

Completed in 883 milliseconds

1 2