/third_party/protobuf/objectivec/DevTools/ |
H A D | pddm.py | 429 def first_line(self): member in SourceFile.SectionBase 464 (directive, line_num, self.first_line)) 470 self.first_line) 498 self.first_line_num, self.first_line)) 521 (directive, line_num, self.first_line)) 533 (e.message, self.first_line_num, self.first_line)) 554 ' "%s".' % (self.first_line_num, self.first_line)) 555 import_name = self.first_line.split(' ', 1)[1].strip() 560 (import_name, self.first_line_num, self.first_line)) 569 (e.message, self.first_line_num, self.first_line)) [all...] |
/third_party/gn/misc/ |
H A D | help_as_html.py | 49 first_line = True 53 if first_line: 58 first_line = False
|
/third_party/mesa3d/src/compiler/glsl/glcpp/ |
H A D | glcpp.h | 77 int first_line; member 90 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \ 97 (Current).first_line = (Current).last_line = \
|
H A D | pp.c | 40 locp->first_line, in glcpp_error() 57 locp->first_line, in glcpp_warning()
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
H A D | glslang_tab.cpp | 322 int first_line; member 347 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \ 353 (Current).first_line = YYRHSLOC(Rhs, 0).last_line; \ 1637 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \ 1644 (Current).first_line = (Current).last_line = \ 1685 if (0 <= yylocp->first_line) in yy_location_print_() 1687 res += YYFPRINTF (yyo, "%d", yylocp->first_line); in yy_location_print_() 1693 if (yylocp->first_line < yyloc in yy_location_print_() [all...] |
H A D | InfoSink.cpp | 46 int string = loc.first_file, line = loc.first_line; in location()
|
H A D | Diagnostics.cpp | 70 sourceLoc.first_line = sourceLoc.last_line = loc.line; in writeInfo()
|
/third_party/python/Lib/distutils/command/ |
H A D | build_scripts.py | 84 first_line = f.readline() 85 if not first_line: 89 match = first_line_re.match(first_line)
|
/third_party/skia/third_party/externals/angle2/src/tests/compiler_tests/ |
H A D | IntermNode_test.cpp | 99 ASSERT_EQ(original->getLine().first_line, copy->getLine().first_line); in checkSymbolCopy() 108 loc.first_line = mUniqueIndex + 1; in createUniqueSourceLoc() 119 loc.first_line = 2; in getTestSourceLoc() 128 ASSERT_EQ(2, loc.first_line); in checkTestSourceLoc()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | glslang_tab_autogen.cpp | 391 int first_line; member 415 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \ 422 (Current).first_line = YYRHSLOC(Rhs, 0).last_line; \ 1639 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \ 1646 (Current).first_line = (Current).last_line = YYRHSLOC(Rhs, 0).last_line; \ 1683 if (0 <= yylocp->first_line) in yy_location_print_() 1685 res += YYFPRINTF(yyo, "%d", yylocp->first_line); in yy_location_print_() 1691 if (yylocp->first_line < yyloc in yy_location_print_() [all...] |
H A D | Diagnostics.cpp | 72 srcLoc.line = loc.first_line; in error() 80 srcLoc.line = loc.first_line; in warning()
|
H A D | OutputHLSL.cpp | 2107 outputLineDirective(out, node->getLine().first_line); in visitBlock() 2124 outputLineDirective(out, statement->getLine().first_line); in visitBlock() 2716 outputLineDirective(out, node->getLine().first_line); in writeIfElse() 2735 outputLineDirective(out, node->getLine().first_line); in writeIfElse() 2741 outputLineDirective(out, node->getFalseBlock()->getLine().first_line); in writeIfElse() 2746 outputLineDirective(out, node->getFalseBlock()->getLine().first_line); in writeIfElse() 2846 outputLineDirective(out, node->getLine().first_line); in visitLoop() 2873 outputLineDirective(out, node->getLine().first_line); in visitLoop() 2888 outputLineDirective(out, node->getLine().first_line); in visitLoop() 2892 outputLineDirective(out, node->getCondition()->getLine().first_line); in visitLoop() [all...] |
/third_party/ffmpeg/tools/ |
H A D | graph2dot.c | 157 struct line *line, *last_line, *first_line; in main() local 159 last_line = first_line = av_malloc(sizeof(struct line)); in main() 183 for (line = first_line; line->next; line = line->next) { in main()
|
/third_party/mesa3d/src/compiler/glsl/ |
H A D | ast.h | 82 locp.first_line = this->location.first_line; in get_location() 99 this->location.first_line = locp.first_line; in set_location() 114 this->location.first_line = begin.first_line; in set_location_range() 126 unsigned first_line; /**< First line number within the source string. */ member
|
H A D | glsl_parser_extras.h | 66 int first_line; member 994 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \ 1002 (Current).first_line = (Current).last_line = \
|
/third_party/python/Lib/ |
H A D | dis.py | 330 def get_instructions(x, *, first_line=None, show_caches=False, adaptive=False): 336 If *first_line* is not None, it indicates the line number that should 343 if first_line is not None: 344 line_offset = first_line - co.co_firstlineno 698 def __init__(self, x, *, first_line=None, current_offset=None, show_caches=False, adaptive=False): 700 if first_line is None: 701 self.first_line = co.co_firstlineno 704 self.first_line = first_line 705 self._line_offset = first_line [all...] |
H A D | cgi.py | 628 first_line = self.fp.readline() # bytes 629 if not isinstance(first_line, bytes): 631 % (self.fp, type(first_line).__name__)) 632 self.bytes_read += len(first_line) 635 while (first_line.strip() != (b"--" + self.innerboundary) and 636 first_line): 637 first_line = self.fp.readline() 638 self.bytes_read += len(first_line)
|
/third_party/skia/third_party/externals/tint/tools/ |
H A D | run_tests.py | 60 first_line = test.readline() 61 if (first_line.startswith("# v-")): 62 reason = first_line[2:8]
|
/third_party/benchmark/test/ |
H A D | output_test_helper.cc | 97 std::string first_line; in CheckCase() local 104 first_line = line; in CheckCase() 112 << "\n started matching near: " << first_line; in CheckCase() 119 << "\n started matching near: " << first_line; in CheckCase() 125 << "\n started matching near: " << first_line; in CheckCase()
|
/third_party/mbedtls/tests/scripts/ |
H A D | check_files.py | 178 def is_valid_shebang(self, first_line, filepath): 179 m = re.match(self._shebang_re, first_line) 192 first_line = f.readline() 193 if first_line.startswith(b'#!'): 197 elif not self.is_valid_shebang(first_line, filepath):
|
/third_party/skia/third_party/externals/angle2/scripts/ |
H A D | run_code_generation.py | 42 def get_executable_name(first_line): 43 binary = os.path.basename(first_line.strip().replace(' ', '/'))
|
/third_party/mesa3d/src/amd/compiler/tests/ |
H A D | check_output.py | 93 first_line = [l for l in self.data.split('\n') if l.strip() != ''][0] 94 indent_amount = len(first_line) - len(first_line.lstrip()) 95 indent = first_line[:indent_amount]
|
/third_party/gn/src/gn/ |
H A D | json_project_writer.cc | 257 bool first_line = true; in AddJSONDict() local 265 if (!first_line && !line_empty) in AddJSONDict() 277 first_line = false; in AddJSONDict()
|
/third_party/python/Lib/email/ |
H A D | header.py | 468 first_line = encoded_lines.pop(0) 472 if first_line is not None: 473 self._append_chunk(fws, first_line)
|
/third_party/mesa3d/src/mesa/program/ |
H A D | program_parser.h | 233 int first_line; member
|