/third_party/ffmpeg/libavcodec/x86/ |
H A D | rv40dsp.asm | 113 ; read 5 lines 245 ; read 5 lines 415 ; Prepare 2 next lines
|
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/ |
H A D | dumpICUrules.bat | 258 // separate strings. For 'file' and 'internal' lines, the encoding 281 # Blank lines 286 # Content lines
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | lexer.py | 667 lines = source.splitlines() 671 lines.append("") 673 source = "\n".join(lines)
|
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | lexer.py | 604 lines = source.splitlines() 608 lines.append('') 610 source = '\n'.join(lines)
|
/third_party/python/Lib/test/ |
H A D | test_calendar.py | 374 lines = [] 378 lines.append(line) 379 return lines 911 self.assertFailure('--lines') 913 stdout = self.run_ok('--lines', '2', '2004')
|
H A D | test_unicodedata.py | 317 lines = (chr(i) + 'A').splitlines() 320 self.assertEqual(len(lines), 2, 323 self.assertEqual(len(lines), 1,
|
H A D | test_dis.py | 658 def find_offset_column(self, lines): 659 for line in lines: 678 lines = text.splitlines() 679 start, end = self.find_offset_column(lines) 680 for line in lines: 693 lines = text.splitlines(True) 694 start, end = self.find_offset_column(lines) 696 lines = iter(lines) 697 for line in lines [all...] |
/third_party/skia/samplecode/ |
H A D | SampleDegenerateQuads.cpp | 122 // every outset line. When that happens, calculate coverage using the "inset" lines and flip in get_edge_dist_coverage() 137 const SkPoint* lines = flip ? insetLines : outsetLines; in get_edge_dist_coverage() local 142 SkScalar d = (flip ? 1 : -1) * signed_distance(point, lines[i * 2], lines[i * 2 + 1]); in get_edge_dist_coverage() 280 // Calculate inset and outset lines for edge-distance visualization 332 // Draw the inset/outset "infinite" lines
|
/third_party/skia/third_party/externals/jinja2/ |
H A D | lexer.py | 667 lines = source.splitlines() 671 lines.append("") 673 source = "\n".join(lines)
|
/test/testfwk/developer_test/src/core/driver/ |
H A D | drivers.py | 90 lines = self._process_output(output) 91 for line in lines: 107 lines = content.split(end_mark) 109 return lines[:-1] 111 self.unfinished_line = lines[-1] 112 return lines[:-1] 601 lines = f.read() 602 str_content = lines.decode("utf-8")
|
/third_party/backends/backend/ |
H A D | tamarack.c | 532 s->params.lines = in get_image_status() 547 DBG(1, "get_image_status: bytes_per_line=%d, lines=%d\n", in get_image_status() 548 s->params.bytes_per_line, s->params.lines); in get_image_status() 554 read_data (Tamarack_Scanner *s, SANE_Byte *buf, int lines, int bpl) in read_data() argument 564 nbytes = bpl * lines; in read_data() 867 for (s->line = 0; s->line < s->params.lines; s->line += lines_per_buffer) { in reader_process() 868 if (s->line + lines_per_buffer > s->params.lines) in reader_process() 869 /* do the last few lines: */ in reader_process() 870 lines_per_buffer = s->params.lines - s->line; in reader_process() 879 DBG(3, "reader_process: read %d lines\ in reader_process() [all...] |
H A D | xerox_mfp.c | 365 dev->para.pixels_per_line, dev->para.lines, in dev_stop() 662 dev->para.lines = -1; in set_parameters() 681 dev->para.lines = dev->win_len / px_to_len; in set_parameters() 1255 (y + dev->y_off) < dev->para.lines) { in copy_plain_trim() 1278 /* can only copy as much as full lines we have */ in copy_mix_bands_trim() 1292 y_rly < dev->para.lines) { in copy_mix_bands_trim() 1299 /* how much full lines are finished */ in copy_mix_bands_trim() 1380 int clrlen; /* cleared lines len */ in sane_read() 1429 dev->y_off, dev->para.lines); in sane_read() 1432 if (dev->dataindex / dev->bytes_per_line + dev->y_off >= dev->para.lines) { in sane_read() [all...] |
H A D | p5_device.h | 65 /**> number of lines to skip when doing calibration */ 213 * - many CCD scanners need to scan more lines to correct the 'line 220 int lines; /** physical lines to scan */ member
|
H A D | rts8891_low.h | 180 SANE_Int top_offset; /* lines to skip to be at top of the scanning area */ 199 SANE_Int lines; /* lines to scan */ member
|
H A D | hp.h | 162 int lines; member
|
/third_party/vk-gl-cts/android/cts/runner/src/com/drawelements/deqp/runner/ |
H A D | DeqpTestRunner.java | 632 public void processNewLines(String[] lines) { in processNewLines() argument 633 for (String line : lines) { in processNewLines() 727 public void processNewLines(String[] lines) { in processNewLines() argument 728 for (String line : lines) { in processNewLines() 985 final String[] lines = processes.split("(\\r|\\n)+"); in getDeqpProcessPids() 986 for (String line : lines) { in getDeqpProcessPids() 1042 // Skip empty lines. in addTestsToInstancesMap() 2052 // Skip comments and empty lines in getNonPatternFilters() 2117 static private void readFile(Collection<String> lines, File file) throws FileNotFoundException { in readFile() argument 2127 lines in readFile() [all...] |
/third_party/python/Parser/ |
H A D | asdl_c.py | 32 Return a sequence of lines where no line extends beyond MAX_COL 34 exclusively on depth * TABSIZE. All following lines -- these are 35 the reflowed lines generated by this function -- start at the same 43 lines = [] 52 lines.append(padding + cur[:i]) 53 if len(lines) == 1: 68 lines.append(padding + cur) 69 return lines 106 """Visit that emits lines""" 114 # XXX reflow long lines [all...] |
/third_party/skia/third_party/externals/tint/src/writer/msl/ |
H A D | generator_impl.cc | 203 auto helpers_insertion_point = current_buffer_->lines.size(); in Generate() 255 if (!helpers_.lines.empty()) { in Generate() 1868 bool emit_as_loop = cond_pre.lines.size() > 0 || cont_buf.lines.size() > 1; in EmitForLoop() 1874 init_buf.lines.size() > 1 || (stmt->initializer && emit_as_loop); in EmitForLoop() 1879 init_buf.lines.clear(); // Don't emit the initializer again in the 'for' in EmitForLoop() 1922 if (!init_buf.lines.empty()) { in EmitForLoop() 1923 out << init_buf.lines[0].content << " "; in EmitForLoop() 1930 if (!cont_buf.lines.empty()) { in EmitForLoop() 1931 out << TrimSuffix(cont_buf.lines[ in EmitForLoop() [all...] |
/third_party/backends/testsuite/backend/genesys/ |
H A D | tests_calibration.cpp | 37 calib.params.lines = 100; in create_fake_calibration_entry()
|
/third_party/node/deps/icu-small/source/tools/toolutil/ |
H A D | ppucd.h | 173 // Multiple lines so that default and block properties can maintain pointers 175 char lines[kNumLineBuffers][4096]; member in PreparsedUCD
|
/third_party/icu/icu4c/source/tools/ctestfw/unicode/ |
H A D | uperf.h | 177 ULine* lines; member in UPerfTest
|
/third_party/icu/icu4c/source/tools/toolutil/ |
H A D | ppucd.h | 173 // Multiple lines so that default and block properties can maintain pointers 175 char lines[kNumLineBuffers][4096]; member in PreparsedUCD
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/Debug/ |
H A D | Context.hpp | 136 void addPendingBreakpoints(const std::string &name, const std::vector<int> &lines);
|
/third_party/skia/third_party/externals/icu/source/tools/ctestfw/unicode/ |
H A D | uperf.h | 177 ULine* lines; member in UPerfTest
|
/third_party/skia/third_party/externals/icu/source/tools/toolutil/ |
H A D | ppucd.h | 174 // Multiple lines so that default and block properties can maintain pointers 176 char lines[kNumLineBuffers][4096]; member in PreparsedUCD
|