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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
server_process_mock.py 51 first_line = self.lines[0]
52 if size > len(first_line):
54 remaining_size = size - len(first_line) - 1
56 return first_line + "\n"
57 return first_line + "\n" + self.read_stdout(deadline, remaining_size)
  /external/chromium_org/chrome/browser/extensions/
PRESUBMIT.py 41 def __init__(self, first_line, last_line):
42 self.first_line = first_line
46 return self.last_line - self.first_line + 1
49 return self.first_line <= line_num and line_num <= self.last_line
100 "first_line=%d, last_line=%d."
137 first_line, last_line):
156 if first_line <= line_number and line_number <= last_line:
246 first_line = range.first_line
    [all...]
  /external/chromium/chrome/browser/importer/
mork_reader.h 127 bool ParseMap(const std::string& first_line,
137 void ParseTable(const std::string& first_line,
mork_reader.cc 170 bool MorkReader::ParseMap(const std::string& first_line,
174 std::string line(first_line);
243 void MorkReader::ParseTable(const std::string& first_line,
246 std::string line(first_line);
  /external/chromium/third_party/libjingle/source/talk/session/phone/
rtpdump.cc 127 std::string first_line; local
128 talk_base::StreamResult res = stream_->ReadLine(&first_line);
132 if (!CheckFirstLine(first_line)) {
146 // Increase the length by 1 since first_line does not contain the ending \n.
147 first_line_and_file_header_len_ = first_line.size() + 1 + sizeof(header);
152 bool RtpDumpReader::CheckFirstLine(const std::string& first_line) {
154 bool matched = (0 == first_line.find("#!rtpplay1.0 "));
158 size_t pos = first_line.find('/');
159 matched &= (pos != std::string::npos && pos < first_line.size() - 1);
160 for (++pos; pos < first_line.size() && matched; ++pos)
    [all...]
rtpdump.h 107 bool CheckFirstLine(const std::string& first_line);
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
rtpdump.cc 164 std::string first_line; local
165 talk_base::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_dx11/src/compiler/
InfoSink.cpp 46 location(loc.first_file, loc.first_line);
Common.h 19 int first_line; member in struct:TSourceLoc
glslang_tab.h 197 int first_line; member in struct:YYLTYPE
  /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 = \
  /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/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/chrome/tools/process_dumps/
process_dumps_linux.py 117 first_line = output[0].split('|')
118 if first_line:
119 crashed_thread = first_line[0]
  /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/third_party/lcov/bin/
geninfo     [all...]

Completed in 923 milliseconds

1 2 3 4