HomeSort by relevance Sort by last modified time
    Searched refs:first_line (Results 1 - 25 of 48) sorted by null

1 2

  /external/webrtc/webrtc/modules/audio_coding/neteq/test/
RTPchange.cc 72 char first_line[FIRSTLINELEN]; local
73 if (fgets(first_line, FIRSTLINELEN, in_file) == NULL) {
77 fputs(first_line, out_file);
80 if (fread(first_line, 1, kRtpDumpHeaderSize, in_file)
85 if (fwrite(first_line, 1, kRtpDumpHeaderSize, out_file)
  /external/chromium-trace/catapult/third_party/WebOb/webob/
compat.py 159 first_line = self.fp.readline() # bytes
160 if not isinstance(first_line, bytes):
162 % (self.fp, type(first_line).__name__))
163 self.bytes_read += len(first_line)
166 while (first_line.strip() != (b"--" + self.innerboundary) and
167 first_line):
168 first_line = self.fp.readline()
169 self.bytes_read += len(first_line)
  /external/webrtc/talk/media/base/
rtpdump.cc 164 std::string first_line; local
165 rtc::StreamResult res = stream_->ReadLine(&first_line);
169 if (!CheckFirstLine(first_line)) {
183 // Increase the length by 1 since first_line does not contain the ending \n.
184 first_line_and_file_header_len_ = first_line.size() + 1 + sizeof(header);
189 bool RtpDumpReader::CheckFirstLine(const std::string& first_line) {
191 bool matched = (0 == first_line.find("#!rtpplay1.0 "));
195 size_t pos = first_line.find('/');
196 matched &= (pos != std::string::npos && pos < first_line.size() - 1);
197 for (++pos; pos < first_line.size() && matched; ++pos)
    [all...]
rtpdump.h 127 bool CheckFirstLine(const std::string& first_line);
  /external/chromium-trace/catapult/third_party/coverage/coverage/
parser.py 107 first_line = None
140 if first_line is not None and elineno != first_line:
144 for l in range(first_line, elineno+1):
145 self.multiline[l] = first_line
146 first_line = None
151 if first_line is None:
154 first_line = slineno
167 def first_line(self, line): member in class:PythonParser
169 first_line = self.multiline.get(line
    [all...]
  /external/mesa3d/src/glsl/glcpp/
glcpp.h 64 int first_line; member in struct:YYLTYPE
77 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \
84 (Current).first_line = (Current).last_line = \
pp.c 41 locp->first_line,
62 locp->first_line,
glcpp-lex.l 50 yylloc->first_line = yylineno; \
  /external/mesa3d/src/glsl/
glsl_parser_extras.h 219 int first_line; member in struct:YYLTYPE
232 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \
239 (Current).first_line = (Current).last_line = \
ast.h 95 locp.first_line = this->location.line;
97 locp.last_line = locp.first_line;
111 this->location.line = locp.first_line;
  /external/autotest/client/bin/
setup_job_unittest.py 94 def __init__(self, first_line):
95 self.first_line = first_line
99 return self.first_line == parameter.splitlines()[0]
job_unittest.py 104 def __init__(self, first_line):
105 self.first_line = first_line
109 return self.first_line == parameter.splitlines()[0]
  /external/mesa3d/src/mesa/program/
program_parser.h 229 int first_line; member in struct:YYLTYPE
  /external/bison/src/
parse-gram.h 203 int first_line; member in struct:GRAM_LTYPE
  /art/compiler/debug/
elf_debug_line_writer.h 243 int first_line = dex2line_map.front().line_; local
246 opcodes.AddRow(method_address, first_line);
  /external/autotest/frontend/tko/
csv_encoder.py 83 first_line = [''] + [self._header_string(header_value)
85 self._append_output_row(first_line)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/gen/
service_registry.py 54 first_line, newline, remaining = method_info.description.partition(
56 if not first_line.endswith('.'):
57 first_line = '%s.' % first_line
58 description = '%s%s%s' % (first_line, newline, remaining)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
app2.py 307 first_line = '%-*s%s' % (indent_size,
309 return '\n'.join((first_line, rest))
  /external/webrtc/talk/app/webrtc/
webrtcsdp.cc 354 std::string first_line; local
360 first_line = message.substr(line_start, (line_end - line_start));
362 first_line = message.substr(line_start);
366 error->line = first_line;
369 LOG(LS_ERROR) << "Failed to parse: \"" << first_line
949 std::string first_line = message; local
    [all...]
  /external/autotest/client/site_tests/logging_UserCrash/
logging_UserCrash.py 92 first_line = symbols.split('\n')[0]
93 tokens = first_line.split()
96 first_line)
  /external/autotest/utils/
check_patch.py 210 self.first_line = checked_file.readline()
276 if self.first_line.startswith("#!"):
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/command/
sdist.py 381 first_line = fp.readline()
384 return first_line != '# file GENERATED by distutils, do NOT edit\n'
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/command/
sdist.py 381 first_line = fp.readline()
384 return first_line != '# file GENERATED by distutils, do NOT edit\n'
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
sdist.py 381 first_line = fp.readline()
384 return first_line != '# file GENERATED by distutils, do NOT edit\n'
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
sdist.py 381 first_line = fp.readline()
384 return first_line != '# file GENERATED by distutils, do NOT edit\n'

Completed in 2017 milliseconds

1 2