/external/antlr/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/python/cpython2/Lib/test/ |
D | test_StringIO.py | 16 _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/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | RecognitionException.cs | 113 private int _line; field in Antlr.Runtime.RecognitionException 181 this._line = _token.Line; in RecognitionException() 202 this._line = ((ICharStream)input).Line; in RecognitionException() 226 _line = info.GetInt32("Line"); in RecognitionException() 336 return _line; 340 _line = value; 364 info.AddValue("Line", _line); in GetObjectData() 393 this._line = lastRealToken.Line; in ExtractInformationFromTreeNodeStream() 416 this._line = priorPayload.Line; in ExtractInformationFromTreeNodeStream() 436 this._line = payload.Line; in ExtractInformationFromTreeNodeStream() [all …]
|
/external/mesa3d/src/glx/apple/ |
D | apple_glx_log.c | 109 char *_line; in _apple_glx_vlog() local 110 asprintf(&_line, "%d", line); in _apple_glx_vlog() 111 if (_line) { in _apple_glx_vlog() 112 asl_set(msg, "Line", _line); in _apple_glx_vlog() 113 free(_line); in _apple_glx_vlog()
|
/external/minijail/tools/ |
D | parser.py | 99 self._line = '' 110 return self._line 122 line=self._line, 132 self._line = line.rstrip('\r\n') 135 for token in _TOKEN_RE.finditer(self._line): 140 self._line[last_end:token.start()], 141 self.filename, self._line, 152 self._line, self._line_number, token.start())) 153 if last_end != len(self._line): 156 token=Token('INVALID', self._line[last_end:], [all …]
|
/external/antlr/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/harfbuzz_ng/src/ |
D | hb-machinery.hh | 83 #define _DEFINE_INSTANCE_ASSERTION1(_line, _assertion) \ argument 84 void _instance_assertion_on_line_##_line () const \ 86 # define _DEFINE_INSTANCE_ASSERTION0(_line, _assertion) _DEFINE_INSTANCE_ASSERTION1 (_line, _assert… argument 90 #define _DEFINE_COMPILES_ASSERTION1(_line, _code) \ argument 91 void _compiles_assertion_on_line_##_line () const \ 93 # define _DEFINE_COMPILES_ASSERTION0(_line, _code) _DEFINE_COMPILES_ASSERTION1 (_line, _code) argument
|
/external/autotest/client/common_lib/cros/manual/ |
D | audio_helper.py | 169 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/catch2/include/internal/ |
D | catch_common.h | 50 SourceLineInfo( char const* _file, std::size_t _line ) noexcept in SourceLineInfo() 52 line( _line ) in SourceLineInfo()
|
/external/antlr/runtime/Python3/antlr3/ |
D | tokens.py | 63 self._line = 0 99 return self._line 103 self._line = value
|
D | streams.py | 196 self._line = 1 227 return self._line 234 self._line = value 378 self._line = 1 388 self._line += 1 460 self._line = line
|
/external/openssh/regress/ |
D | keygen-knownhosts.sh | 43 _line=$4 48 test "x$_line" != "x" && 49 echo "# Host $_host found: line $_line $_mark" >> $OBJ/kh.expect
|
/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/python/cpython3/Lib/ |
D | traceback.py | 257 self._line = line 284 if self._line is None: 285 self._line = linecache.getline(self.filename, self.lineno).strip() 286 return self._line
|
D | pyclbr.py | 197 for tokentype, token, start, _end, _line in g:
|
/external/python/cpython2/Lib/ |
D | httplib.py | 1373 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:]]
|
D | pyclbr.py | 155 for tokentype, token, start, _end, _line in g:
|
/external/swiftshader/third_party/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 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/ |
D | 2011-02-08-RemoveEqual.ll | 25 …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/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/MergeFunc/ |
D | 2011-02-08-RemoveEqual.ll | 25 …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/ |
D | text_format.py | 783 self._line = -1 815 self._line += 1 1077 self._line + 1, self._column + 1, message)) 1084 self._previous_line = self._line
|
/external/mksh/src/ |
D | dot.mkshrc | 405 \\builtin cat "$@" | while \\builtin read _line; do 406 _line=${_line%%#*} 407 [[ -n $_line ]] && \\builtin print -r -- $_line
|
/external/scapy/scapy/arch/windows/ |
D | __init__.py | 856 for _line in stdout: 857 if not _line.strip() and len(_buffer) > 0: 863 _buffer.append(_line)
|
/external/u-boot/tools/buildman/ |
D | kconfiglib.py | 221 self._line = None 1153 self._line = line 1209 _parse_error(self._line, "missing end parenthesis", 1213 _parse_error(self._line, "malformed expression", self._filename,
|