Searched refs:n_lines (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython2/Lib/ |
D | trace.py | 334 n_hits, n_lines = self.write_results_file(coverpath, source, 337 if summary and n_lines: 338 percent = 100 * n_hits // n_lines 339 sums[modulename] = n_lines, percent, modulename, filename 346 n_lines, percent, modulename, filename = sums[m] 367 n_lines = 0 376 n_lines += 1 385 n_lines += 1 391 return n_hits, n_lines
|
/external/python/cpython3/Lib/ |
D | trace.py | 274 n_hits, n_lines = self.write_results_file(coverpath, source, 276 if summary and n_lines: 277 percent = int(100 * n_hits / n_lines) 278 sums[modulename] = n_lines, percent, modulename, filename 284 n_lines, percent, modulename, filename = sums[m] 307 n_lines = 0 316 n_lines += 1 321 n_lines += 1 326 return n_hits, n_lines
|
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/ |
D | RenderScriptRuntime.h | 209 bool ParseVersionInfo(llvm::StringRef *, size_t n_lines); 211 bool ParseExportForeachCount(llvm::StringRef *, size_t n_lines); 213 bool ParseExportVarCount(llvm::StringRef *, size_t n_lines); 215 bool ParseExportReduceCount(llvm::StringRef *, size_t n_lines); 217 bool ParseBuildChecksum(llvm::StringRef *, size_t n_lines); 219 bool ParsePragmaCount(llvm::StringRef *, size_t n_lines);
|
D | RenderScriptRuntime.cpp | 2865 size_t n_lines) { in ParsePragmaCount() argument 2868 for (; n_lines--; ++lines) { in ParsePragmaCount() 2876 size_t n_lines) { in ParseExportReduceCount() argument 2886 for (; n_lines--; ++lines) { in ParseExportReduceCount() 2930 size_t n_lines) { in ParseVersionInfo() argument 2933 for (; n_lines--; ++lines) { in ParseVersionInfo() 2946 size_t n_lines) { in ParseExportForeachCount() argument 2949 for (; n_lines--; ++lines) { in ParseExportForeachCount() 2962 size_t n_lines) { in ParseExportVarCount() argument 2965 for (; n_lines--; ++lines) in ParseExportVarCount() [all …]
|
/external/mesa3d/src/intel/perf/ |
D | gen_perf.py | 348 n_lines = len(lines) 349 if n_lines == 1: 354 for i in range(1, (n_lines - 1)): 356 c(lines[(n_lines - 1)] + ") {")
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_sidebar.py | 95 def assert_sidebar_n_lines(self, n_lines): argument 96 expected = '\n'.join(chain(map(str, range(1, n_lines + 1)), ['']))
|
/external/python/cpython3/Lib/idlelib/ |
D | configdialog.py | 880 n_lines = len(text.get('1.0', END).splitlines()) 881 for lineno in range(1, n_lines):
|