| /third_party/cups-filters/drv/ |
| D | cupsfilters.drv | 761 Choice "0/0 Lines" "" 763 *Choice "2/2 Lines" "" 764 Choice "3/3 Lines" "" 765 Choice "4/4 Lines" "" 766 Choice "5/5 Lines" "" 767 Choice "6/6 Lines" "" 768 Choice "7/7 Lines" "" 769 Choice "8/8 Lines" "" 770 Choice "9/9 Lines" "" 771 Choice "10/10 Lines" "" [all …]
|
| /third_party/vk-gl-cts/android/cts/main/vk-master-2021-03-01/ |
| D | rasterization.txt | 1 dEQP-VK.rasterization.conservative.overestimate.samples_1.lines.degenerate.0_00 2 dEQP-VK.rasterization.conservative.overestimate.samples_1.lines.degenerate.0_25 3 dEQP-VK.rasterization.conservative.overestimate.samples_1.lines.degenerate.max 4 dEQP-VK.rasterization.conservative.overestimate.samples_1.lines.degenerate.min 5 dEQP-VK.rasterization.conservative.overestimate.samples_1.lines.normal.0_00 6 dEQP-VK.rasterization.conservative.overestimate.samples_1.lines.normal.0_25 7 dEQP-VK.rasterization.conservative.overestimate.samples_1.lines.normal.0_50 8 dEQP-VK.rasterization.conservative.overestimate.samples_1.lines.normal.0_75 9 dEQP-VK.rasterization.conservative.overestimate.samples_1.lines.normal.1_00 10 dEQP-VK.rasterization.conservative.overestimate.samples_1.lines.normal.2_00 [all …]
|
| /third_party/node/deps/v8/third_party/test262-harness/src/ |
| D | _monkeyYaml.py | 20 def myReadDict(lines, indent=""): argument 25 while lines: 26 if not lines[0].startswith(indent): 29 line = lines.pop(0) 40 (lines, value) = myReadValue(lines, value, indent) 49 return lines, dict 51 def myReadValue(lines, value, indent): argument 53 (lines, value) = myMultiline(lines, value == "|") 55 return (lines, value) 56 if lines and not value: [all …]
|
| /third_party/python/Lib/idlelib/ |
| D | format.py | 45 If text is selected, format_paragraph_event will start breaking lines 49 cursor location to determine the paragraph (lines of text surrounded 50 by blank lines) and formats it. 122 lines = data.split("\n") 124 n = len(lines) 125 while i < n and is_all_white(lines[i]): 129 indent1 = get_indent(lines[i]) 130 if i+1 < n and not is_all_white(lines[i+1]): 131 indent2 = get_indent(lines[i+1]) 134 new = lines[:i] [all …]
|
| /third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
| D | comment_convert.py | 27 "Temporary storage for contiguous comment lines." 30 "Temporary storage for empty lines following a comment." 33 "Fully-processed output lines." 39 "Whether we allow blank lines between a comment and the thing it's considered to document." 51 # flush any comment lines we had stored and output this line. 87 lines = [extract(line) for line in self.comment_lines] 90 while lines and not lines[0].strip(): 91 lines.pop(0) 94 while lines and not lines[-1].strip(): 95 lines.pop() [all …]
|
| /third_party/vk-gl-cts/external/vulkancts/mustpass/main/vksc-default/ |
| D | rasterization.txt | 1 dEQP-VKSC.rasterization.conservative.overestimate.samples_1.lines.degenerate.0_00 2 dEQP-VKSC.rasterization.conservative.overestimate.samples_1.lines.degenerate.0_25 3 dEQP-VKSC.rasterization.conservative.overestimate.samples_1.lines.degenerate.max 4 dEQP-VKSC.rasterization.conservative.overestimate.samples_1.lines.degenerate.min 5 dEQP-VKSC.rasterization.conservative.overestimate.samples_1.lines.normal.0_00 6 dEQP-VKSC.rasterization.conservative.overestimate.samples_1.lines.normal.0_25 7 dEQP-VKSC.rasterization.conservative.overestimate.samples_1.lines.normal.0_50 8 dEQP-VKSC.rasterization.conservative.overestimate.samples_1.lines.normal.0_75 9 dEQP-VKSC.rasterization.conservative.overestimate.samples_1.lines.normal.1_00 10 dEQP-VKSC.rasterization.conservative.overestimate.samples_1.lines.normal.2_00 [all …]
|
| /third_party/node/test/es-module/ |
| D | test-esm-loader-programmatically.mjs | 41 const lines = stdout.split('\n'); constant 43 assert.match(lines[0], /resolve passthru/); 44 assert.match(lines[1], /resolve passthru/); 45 assert.match(lines[2], /load passthru/); 46 assert.match(lines[3], /load passthru/); 47 assert.match(lines[4], /Hello from dynamic import/); 49 assert.strictEqual(lines[5], ''); 91 const lines = stdout.split('\n'); constant 93 assert.match(lines[0], /resolve passthru/); 94 assert.match(lines[1], /resolve passthru/); [all …]
|
| /third_party/python/Tools/msi/ |
| D | csv_to_wxs.py | 64 lines = [ 69 lines.append(' <DirectoryRef Id="{}">'.format(dir_parent)) 71 …lines.append(' <Directory Id="{}_{}" Name="{}" />'.format(dir_parent, make_id(dir_name)… 72 lines.append(' </DirectoryRef>') 74 lines.append(' <DirectoryRef Id="{}">'.format(dir_parent)) 75 …lines.append(' <Directory Id="{}___pycache__" Name="__pycache__" />'.format(dir_parent)) 76 lines.append(' </DirectoryRef>') 77 lines.append(' </Fragment>') 80 lines.extend([ 85 …lines.append(' <Component Id="{}" Directory="{}" Guid="*">'.format(make_id(target), mak… [all …]
|
| /third_party/littlefs/scripts/ |
| D | tailpipe.py | 3 # Efficiently displays the last n lines of a file/pipe. 35 self.lines = co.deque(maxlen=maxlen) 44 lines = s.split('\n') 46 if len(lines) > 1 and self.tail.getvalue(): 47 self.tail.write(lines[0]) 48 lines[0] = self.tail.getvalue() 51 self.lines.extend(lines[:-1]) 53 if lines[-1]: 54 self.tail.write(lines[-1]) 60 if maxlen != self.lines.maxlen: [all …]
|
| D | watch.py | 71 self.lines = co.deque(maxlen=maxlen) 80 lines = s.split('\n') 82 if len(lines) > 1 and self.tail.getvalue(): 83 self.tail.write(lines[0]) 84 lines[0] = self.tail.getvalue() 87 self.lines.extend(lines[:-1]) 89 if lines[-1]: 90 self.tail.write(lines[-1]) 96 if maxlen != self.lines.maxlen: 97 self.lines = co.deque(self.lines, maxlen=maxlen) [all …]
|
| /third_party/skia/third_party/externals/swiftshader/tests/regres/testlists/vk-default/ |
| D | rasterization.txt | 13 dEQP-VK.rasterization.primitives.no_stipple.lines 61 dEQP-VK.rasterization.primitives.static_stipple.lines 77 dEQP-VK.rasterization.primitives.dynamic_stipple.lines 176 dEQP-VK.rasterization.conservative.overestimate.samples_1.lines.normal.0_00 177 dEQP-VK.rasterization.conservative.overestimate.samples_1.lines.normal.0_25 178 dEQP-VK.rasterization.conservative.overestimate.samples_1.lines.normal.0_50 179 dEQP-VK.rasterization.conservative.overestimate.samples_1.lines.normal.0_75 180 dEQP-VK.rasterization.conservative.overestimate.samples_1.lines.normal.1_00 181 dEQP-VK.rasterization.conservative.overestimate.samples_1.lines.normal.2_00 182 dEQP-VK.rasterization.conservative.overestimate.samples_1.lines.normal.4_00 [all …]
|
| /third_party/libphonenumber/tools/java/cpp-build/test/com/google/i18n/phonenumbers/ |
| D | CppMetadataGeneratorTest.java | 66 Iterator<String> lines = toLines(writer.toString()).iterator(); in outputHeaderFile() local 67 // Sanity check that at least some of the expected lines are present. in outputHeaderFile() 68 assertTrue(consumeUntil(" * Copyright (C) 2011 The Libphonenumber Authors", lines)); in outputHeaderFile() 69 assertTrue(consumeUntil("#ifndef I18N_PHONENUMBERS_METADATA_H_", lines)); in outputHeaderFile() 70 assertTrue(consumeUntil("#define I18N_PHONENUMBERS_METADATA_H_", lines)); in outputHeaderFile() 71 assertTrue(consumeUntil("namespace i18n {", lines)); in outputHeaderFile() 72 assertTrue(consumeUntil("namespace phonenumbers {", lines)); in outputHeaderFile() 73 assertTrue(consumeUntil("int metadata_size();", lines)); in outputHeaderFile() 74 assertTrue(consumeUntil("const void* metadata_get();", lines)); in outputHeaderFile() 75 assertTrue(consumeUntil("#endif // I18N_PHONENUMBERS_METADATA_H_", lines)); in outputHeaderFile() [all …]
|
| /third_party/typescript/tests/baselines/reference/ |
| D | ModuleWithExportedAndNonExportedImportAlias.types | 38 import Lines = B; 39 >Lines : typeof Lines 40 >B : typeof Lines 52 export var Unit: Lines.Line = new Lines.Line(Origin, { x: 1, y: 0 }); 53 >Unit : Lines.Line 54 >Lines : any 55 >new Lines.Line(Origin, { x: 1, y: 0 }) : Lines.Line 56 >Lines.Line : typeof Lines.Line 57 >Lines : typeof Lines 58 >Line : typeof Lines.Line [all …]
|
| /third_party/rust/crates/clap/clap_derive/src/utils/ |
| D | doc_comments.rs | 4 //! non-empty adjacent lines, delimited by sequences of blank (whitespace only) lines. 10 // we need to split so we could handle the lines correctly in extract_doc_comment() 12 // we also need to remove leading and trailing blank lines in extract_doc_comment() 13 let mut lines: Vec<_> = attrs in extract_doc_comment() localVariable 33 let lines = s in extract_doc_comment() localVariable 41 lines in extract_doc_comment() 45 while let Some(true) = lines.last().map(|s| is_blank(s)) { in extract_doc_comment() 46 lines.pop(); in extract_doc_comment() 49 lines in extract_doc_comment() 53 lines: &[String], in format_doc_comment() [all …]
|
| /third_party/python/Tools/c-analyzer/ |
| D | table-file.py | 2 def iter_clean_lines(lines): argument 3 lines = iter(lines) 4 for line in lines: 11 def parse_table_lines(lines): argument 12 lines = iter_clean_lines(lines) 14 for line in lines: 18 line = next(lines).strip() 31 line = next(lines).strip() 43 def iter_sections(lines): argument 46 for kind, value in parse_table_lines(lines): [all …]
|
| /third_party/python/Tools/scripts/ |
| D | freeze_modules.py | 448 def find_marker(lines, marker, file): argument 449 for pos, line in enumerate(lines): 455 def replace_block(lines, start_marker, end_marker, replacements, file): argument 456 start_pos = find_marker(lines, start_marker, file) 457 end_pos = find_marker(lines, end_marker, file) 463 return lines[:start_pos + 1] + replacements + lines[end_pos:] 485 lines = bootstraplines 487 lines = testlines 489 lines = stdliblines 492 lines.append('') [all …]
|
| /third_party/skia/third_party/externals/harfbuzz/test/shape/ |
| D | hb_test_tools.py | 79 def colorize_lines (self, lines): argument 80 lines = (l if l else '' for l in lines) 81 ss = [self.diff_regex.sub (r'\1\n\2\n', l).splitlines (True) for l in lines] 109 lines = [None, None] 115 if lines[i]: 117 for line in self.colorize_lines (lines): 119 lines = [None, None] 120 lines[i] = l[1:] 121 if (all (lines)): 123 for line in self.colorize_lines (lines): [all …]
|
| /third_party/vk-gl-cts/external/vulkancts/mustpass/master/vk-default/ |
| D | rasterization.txt | 13 dEQP-VK.rasterization.primitives.no_stipple.lines 61 dEQP-VK.rasterization.primitives.static_stipple.lines 77 dEQP-VK.rasterization.primitives.dynamic_stipple.lines 176 dEQP-VK.rasterization.conservative.overestimate.samples_1.lines.normal.0_00 177 dEQP-VK.rasterization.conservative.overestimate.samples_1.lines.normal.0_25 178 dEQP-VK.rasterization.conservative.overestimate.samples_1.lines.normal.0_50 179 dEQP-VK.rasterization.conservative.overestimate.samples_1.lines.normal.0_75 180 dEQP-VK.rasterization.conservative.overestimate.samples_1.lines.normal.1_00 181 dEQP-VK.rasterization.conservative.overestimate.samples_1.lines.normal.2_00 182 dEQP-VK.rasterization.conservative.overestimate.samples_1.lines.normal.4_00 [all …]
|
| /third_party/node/deps/v8/third_party/test262-harness/test/ |
| D | test_monkeyYaml.py | 43 lines = [" foo"] 45 y = "\n".join([value] + lines) 46 (lines, value) = monkeyYaml.myMultiline(lines, value) 47 self.assertEqual(lines, []) 51 lines = [" foo", " bar"] 52 y = "\n".join([">"] + lines) 53 (lines, value) = monkeyYaml.myMultiline(lines) 54 self.assertEqual(lines, []) 58 lines = [" foo", " bar"] 59 y = "\n".join([">"] + lines) [all …]
|
| /third_party/typescript/src/testRunner/unittests/tsserver/ |
| D | versionCache.ts | 33 const { lines } = server.LineIndex.linesFromText(testContent); constant 34 …assert.isTrue(lines.length > 0, "Failed to initialize test text. Expected text to have at least on… 37 lineIndex.load(lines); 49 it("handles empty lines array", () => { 58 …const { lines } = server.LineIndex.linesFromText("function foo() {\n\ndsa\n\n}\n\nfo(dsa\n\n\n … constant 60 lineIndex.load(lines); 95 let lines: string[]; variable 105 ({ lines, lineMap } = server.LineIndex.linesFromText(testContent)); 106 …assert.isTrue(lines.length > 0, "Failed to initialize test text. Expected text to have at least on… 109 lineIndex.load(lines); [all …]
|
| /third_party/skia/third_party/externals/tint/src/writer/ |
| D | text_generator.cc | 78 lines.emplace_back(Line{current_indent, line}); in Append() 84 if (before >= lines.size()) { in Insert() 87 << "TextBuffer::Insert() called with before >= lines.size()\n" in Insert() 89 << " lines.size(): " << lines.size(); in Insert() 92 lines.insert(lines.begin() + before, Line{indent, line}); in Insert() 96 for (auto& line : tb.lines) { in Append() 98 lines.emplace_back(Line{current_indent + line.indent, line.content}); in Append() 105 if (before >= lines.size()) { in Insert() 108 << "TextBuffer::Insert() called with before >= lines.size()\n" in Insert() 110 << " lines.size(): " << lines.size(); in Insert() [all …]
|
| /third_party/node/deps/npm/node_modules/diff/lib/patch/ |
| D | apply.js | 57 var lines = source.split(/\r\n|[\n\v\f\r\x85]/), 80 for (var j = 0; j < hunk.lines.length; j++) { 81 var line = hunk.lines[j], 87 if (!compareLine(toPos + 1, lines[toPos], operation, content)) { 105 maxLine = lines.length - hunk.oldLines, 147 for (var j = 0; j < _hunk.lines.length; j++) { 148 var line = _hunk.lines[j], 156 lines.splice(_toPos, 1); 160 lines.splice(_toPos, 0, content); 164 var previousOperation = _hunk.lines[j - 1] ? _hunk.lines[j - 1][0] : null; [all …]
|
| D | merge.js | 46 calcOldNewLineCount(hunk.lines), 127 lines: [] property 129 …ines(mergedHunk, mineCurrent.oldStart, mineCurrent.lines, theirsCurrent.oldStart, theirsCurrent.li… 207 lines: hunk.lines 216 lines: mineLines, property 221 lines: theirLines, property 228 while (mine.index < mine.lines.length && their.index < their.lines.length) { 229 var mineCurrent = mine.lines[mine.index], 230 theirCurrent = their.lines[their.index]; 237 var _hunk$lines; [all …]
|
| /third_party/node/tools/ |
| D | license2rtf.mjs | 17 const lines = (this.buffer + data).split(/\r\n|\n\r|\n|\r/); 18 for (let i = 0; i < lines.length - 1; i++) { 19 this.emit('data', lines[i]); 21 this.buffer = lines[lines.length - 1]; 37 * This filter consumes lines and emits paragraph objects. 66 lines: [], property 77 if (this.paragraph.lines.length || this.paragraph.li) { 117 // Detect separator "lines" within a block. These mark a paragraph break 160 this.paragraph.lines.push(line); 167 * The lines within the paragraph are unwrapped where appropriate. It also [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/GSYM/ |
| D | LineTable.h | 53 /// push "Row" onto the end of the "LineTable.Lines" vector. The end result 75 /// LineEntry.Lines array. They do this by using some of the bits to 104 /// Lines.push_back(Row); 115 /// Opcodes that will push "Row" onto the LineEntry.Lines include the 120 Collection Lines; ///< All line entries in the line table. variable 167 bool empty() const { return Lines.empty(); } in empty() 168 void clear() { Lines.clear(); } in clear() 170 Lines.push_back(LE); in push() 173 return !Lines.empty(); in isValid() 176 return Lines.size(); in size() [all …]
|