/third_party/protobuf/objectivec/DevTools/ |
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))
|
/third_party/grpc/test/cpp/qps/ |
D | usage_timer.cc | 61 std::string first_line; in get_cpu_usage() local 62 std::getline(proc_stat, first_line); in get_cpu_usage() 63 std::stringstream first_line_s(first_line); in get_cpu_usage()
|
/third_party/python/Lib/ |
D | dis.py | 261 def get_instructions(x, *, first_line=None): argument 275 if first_line is not None: 276 line_offset = first_line - co.co_firstlineno 474 def __init__(self, x, *, first_line=None, current_offset=None): argument 476 if first_line is None: 477 self.first_line = co.co_firstlineno 480 self.first_line = first_line 481 self._line_offset = first_line - co.co_firstlineno
|
D | cgi.py | 620 first_line = self.fp.readline() # bytes 621 if not isinstance(first_line, bytes): 623 % (self.fp, type(first_line).__name__)) 624 self.bytes_read += len(first_line) 627 while (first_line.strip() != (b"--" + self.innerboundary) and 628 first_line): 629 first_line = self.fp.readline() 630 self.bytes_read += len(first_line)
|
/third_party/mesa3d/src/compiler/glsl/glcpp/ |
D | glcpp.h | 77 int first_line; member 90 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \ 97 (Current).first_line = (Current).last_line = \
|
D | pp.c | 40 locp->first_line, in glcpp_error() 57 locp->first_line, in glcpp_warning()
|
/third_party/gn/misc/ |
D | help_as_html.py | 49 first_line = True 53 if first_line: 58 first_line = False
|
/third_party/flutter/skia/third_party/externals/angle2/src/tests/compiler_tests/ |
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/mbedtls/tests/scripts/ |
D | check_files.py | 200 def is_valid_shebang(self, first_line, filepath): argument 201 m = re.match(self._shebang_re, first_line) 214 first_line = f.readline() 215 if first_line.startswith(b'#!'): 219 elif not self.is_valid_shebang(first_line, filepath):
|
/third_party/skia/third_party/externals/angle2/src/tests/compiler_tests/ |
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/python/Lib/distutils/command/ |
D | build_scripts.py | 84 first_line = f.readline() 85 if not first_line: 89 match = first_line_re.match(first_line)
|
/third_party/ffmpeg/tools/ |
D | graph2dot.c | 158 struct line *line, *last_line, *first_line; in main() local 160 last_line = first_line = av_malloc(sizeof(struct line)); in main() 184 for (line = first_line; line->next; line = line->next) { in main()
|
/third_party/boost/boost/iostreams/filter/ |
D | counter.hpp | 42 explicit basic_counter(int first_line = 0, int first_char = 0) in basic_counter() argument 43 : lines_(first_line), chars_(first_char) in basic_counter()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
D | Diagnostics.cpp | 72 srcLoc.line = loc.first_line; in error() 80 srcLoc.line = loc.first_line; in warning()
|
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/ |
D | Diagnostics.cpp | 72 srcLoc.line = loc.first_line; in error() 80 srcLoc.line = loc.first_line; in warning()
|
/third_party/json/benchmarks/thirdparty/benchmark/tools/gbench/ |
D | report.py | 99 …first_line = "{:<{}s}Time CPU Time Old Time New CPU Old CPU New"… 101 output_strs = [first_line, '-' * len(first_line)]
|
/third_party/mesa3d/src/compiler/glsl/ |
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
|
D | glsl_parser_extras.h | 66 int first_line; member 980 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \ 988 (Current).first_line = (Current).last_line = \
|
/third_party/skia/third_party/externals/tint/tools/ |
D | run_tests.py | 60 first_line = test.readline() 61 if (first_line.startswith("# v-")): 62 reason = first_line[2:8]
|
/third_party/cef/tools/yapf/yapf/yapflib/ |
D | file_resources.py | 165 first_line = fd.readlines()[0] 169 return re.match(r'^#!.*\bpython[23]?\b', first_line)
|
/third_party/benchmark/test/ |
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/boost/libs/program_options/src/ |
D | options_description.cpp | 486 bool first_line = true; // of current paragraph! in format_paragraph() local 490 if (!first_line) in format_paragraph() 538 if (first_line) in format_paragraph() 542 first_line = false; in format_paragraph()
|
/third_party/flutter/skia/third_party/externals/angle2/scripts/ |
D | run_code_generation.py | 42 def get_executable_name(first_line): argument 43 if 'vpython' in first_line:
|
/third_party/skia/third_party/externals/angle2/scripts/ |
D | run_code_generation.py | 42 def get_executable_name(first_line): argument 43 binary = os.path.basename(first_line.strip().replace(' ', '/'))
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
D | InfoSink.cpp | 46 int string = loc.first_file, line = loc.first_line; in location()
|