Home
last modified time | relevance | path

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

12

/external/antlr/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/runtime/CSharp3/Sources/Antlr3.Runtime/
DRecognitionException.cs113 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/
Dapple_glx_log.c110 char *_line; in _apple_glx_vlog() local
111 asprintf(&_line, "%d", line); in _apple_glx_vlog()
112 if (_line) { in _apple_glx_vlog()
113 asl_set(msg, "Line", _line); in _apple_glx_vlog()
114 free(_line); in _apple_glx_vlog()
/external/harfbuzz_ng/src/
Dhb-machinery.hh100 #define _DEFINE_INSTANCE_ASSERTION1(_line, _assertion) \ argument
101 void _instance_assertion_on_line_##_line () const \
103 # define _DEFINE_INSTANCE_ASSERTION0(_line, _assertion) _DEFINE_INSTANCE_ASSERTION1 (_line, _assert… argument
107 #define _DEFINE_COMPILES_ASSERTION1(_line, _code) \ argument
108 void _compiles_assertion_on_line_##_line () const \
110 # define _DEFINE_COMPILES_ASSERTION0(_line, _code) _DEFINE_COMPILES_ASSERTION1 (_line, _code) argument
/external/minijail/tools/
Dparser.py106 self._line = ''
117 return self._line
129 line=self._line,
139 self._line = line.rstrip('\r\n')
142 for token in _TOKEN_RE.finditer(self._line):
147 self._line[last_end:token.start()],
148 self.filename, self._line,
159 self._line, self._line_number, token.start()))
160 if last_end != len(self._line):
163 token=Token('INVALID', self._line[last_end:],
[all …]
/external/antlr/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/catch2/include/internal/
Dcatch_common.h50 SourceLineInfo( char const* _file, std::size_t _line ) noexcept in SourceLineInfo()
52 line( _line ) in SourceLineInfo()
/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/antlr/runtime/Python3/antlr3/
Dtokens.py63 self._line = 0
99 return self._line
103 self._line = value
Dstreams.py196 self._line = 1
227 return self._line
234 self._line = value
378 self._line = 1
388 self._line += 1
460 self._line = line
/external/OpenCL-CTS/test_common/harness/
DkernelHelpers.h55 #define SET_OPENCL_LINE_INFO(_line, _file) "#line " STRINGIFY(_line) " " STRINGIFY(_file) … argument
/external/fonttools/Lib/fontTools/svgLib/path/
Dshapes.py90 def _line(self, c, x, y): member in PathBuilder
94 self._line('L', x, y)
97 self._line('l', x, y)
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/
DUnicodeEscapeProcessingProvider.java530 private int _line = 1; field in UnicodeEscapeProcessingProvider.LineCounter
545 return _line; in getLine()
593 _line++; in incLine()
/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/oss-fuzz/projects/readstat/
Dfuzz_format_stata_commands.dict7 "_line("
/external/openssh/regress/
Dkeygen-knownhosts.sh43 _line=$4
48 test "x$_line" != "x" &&
49 echo "# Host $_host found: line $_line $_mark" >> $OBJ/kh.expect
/external/python/cpython3/Lib/
Dtraceback.py257 self._line = line
287 if self._line is None:
288 self._line = linecache.getline(self.filename, self.lineno).strip()
289 return self._line
/external/mesa3d/src/freedreno/decode/
Dcrashdec.c225 #define foreach_line_in_section(_line) \ argument
226 for (const char *_line = popline(); _line; _line = popline()) \
228 if (_line[0] != ' ') { \
/external/protobuf/python/google/protobuf/
Dtext_format.py89 self._line = line
93 return self._line
1204 self._line = -1
1239 self._line += 1
1289 just_started = self._line == 0 and self._column == 0
1494 self._line + 1, self._column + 1)
1501 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:]]
/external/swiftshader/third_party/llvm-7.0/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/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/mksh/src/
Ddot.mkshrc405 \\builtin cat "$@" | while \\builtin read _line; do
406 _line=${_line%%#*}
407 [[ -n $_line ]] && \\builtin print -r -- $_line

12