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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
server_process_mock.py 53 first_line = self.lines[0]
54 if size > len(first_line):
56 remaining_size = size - len(first_line) - 1
58 return first_line + "\n"
59 return first_line + "\n" + self.read_stdout(deadline, remaining_size)
  /external/chromium_org/third_party/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_org/tools/strict_enum_value_checker/
strict_enum_value_checker.py 28 def __init__(self, first_line, last_line):
29 self.first_line = first_line
33 return self.last_line - self.first_line + 1
36 return self.first_line <= line_num and line_num <= self.last_line
87 "first_line=%d, last_line=%d."
124 first_line, last_line):
143 if first_line <= line_number and line_number <= last_line:
233 first_line = range.first_line
    [all...]
  /external/chromium_org/tools/gn/bin/
help_as_html.py 49 first_line = True
53 if first_line:
58 first_line = False
  /external/chromium_org/third_party/libjingle/source/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...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
InfoSink.cpp 46 location(loc.first_file, loc.first_line);
Common.h 23 int first_line; member in struct:TSourceLoc
glslang_tab.h 232 int first_line; member in struct:YYLTYPE
OutputHLSL.cpp     [all...]
  /external/chromium_org/third_party/mesa/src/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,
  /external/chromium_org/third_party/mesa/src/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/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,
  /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 = \
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
parser.py 102 first_line = None
136 if first_line is not None and elineno != first_line:
140 rng = (first_line, elineno)
141 for l in range(first_line, elineno+1):
143 first_line = None
148 if first_line is None:
151 first_line = slineno
164 def first_line(self, line): member in class:CodeParser
168 first_line = rng[0
    [all...]
  /external/chromium-trace/trace-viewer/third_party/web_dev_style/web_dev_style/
css_checker.py 133 first_line = z.group(0).strip().splitlines()[0]
134 if not re.search(hsl, first_line):
135 errors.append(' ' + first_line)
  /external/chromium_org/remoting/webapp/
build-html.py 75 first_line = True
83 if first_line and re.match(r'<!--', line):
85 first_line = False
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
glcpp-parse.h 128 int first_line; member in struct:YYLTYPE
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
program_parser.h 229 int first_line; member in struct:YYLTYPE
  /external/mesa3d/src/mesa/program/
program_parser.h 229 int first_line; member in struct:YYLTYPE
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
executive.py 156 first_line = lines[0]
157 if not first_line.startswith('#!'):
159 if first_line.find('python') > -1:
161 if first_line.find('perl') > -1:
163 if first_line.find('ruby') > -1:
  /external/bison/src/
parse-gram.h 203 int first_line; member in struct:GRAM_LTYPE
  /external/chromium_org/chrome/browser/web_dev_style/
css_checker.py 263 first_line = z.group(0).strip().splitlines()[0]
264 if not hsl_reg.search(first_line):
265 errors.append(' ' + first_line)

Completed in 714 milliseconds

1 2 3 4