/external/google-breakpad/src/common/ |
D | dwarf_line_to_module_unittest.cc | 47 vector<Module::Line> lines; in TEST() local 48 DwarfLineToModule h(&m, "/", &lines); in TEST() 59 EXPECT_EQ(1U, lines.size()); in TEST() 60 EXPECT_EQ(0x6fd126fbf74f2680ULL, lines[0].address); in TEST() 61 EXPECT_EQ(0x63c9a14cf556712bULL, lines[0].size); in TEST() 62 EXPECT_TRUE(lines[0].file == files[0]); in TEST() 63 EXPECT_EQ(0x4c090cbf, lines[0].number); in TEST() 68 vector<Module::Line> lines; in TEST() local 69 DwarfLineToModule h(&m, "/", &lines); in TEST() 98 ASSERT_EQ(5U, lines.size()); in TEST() [all …]
|
/external/swiftshader/third_party/LLVM/utils/ |
D | NightlyTest.gnuplot | 14 plot "running_loc.txt" using 1:2 title '' with lines, \ 15 "running_loc.txt" using 1:2 title "Date vs. Lines of Code" with lines 23 "running_loc.txt" using 1:2 title "Date vs. Lines of Code" with lines 36 plot "running_Olden_cbe_time.txt" u 1:2 t '' with lines, \ 37 "running_Olden_cbe_time.txt" u 1:2 t "bh" with lines, \ 38 "running_Olden_cbe_time.txt" u 1:3 t "em3d" with lines, \ 39 "running_Olden_cbe_time.txt" u 1:4 t "mst" with lines, \ 40 "running_Olden_cbe_time.txt" u 1:5 t "power" with lines, \ 41 "running_Olden_cbe_time.txt" u 1:6 t "tsp" with lines, \ 42 "running_Olden_cbe_time.txt" u 1:7 t "bisort" with lines, \ [all …]
|
/external/v8/tools/ |
D | js2c.py | 53 def RemoveCommentsAndTrailingWhitespace(lines): argument 54 lines = re.sub(r'//.*\n', '\n', lines) # end-of-line comments 55 lines = re.sub(re.compile(r'/\*.*?\*/', re.DOTALL), '', lines) # comments. 56 lines = re.sub(r'\s+\n+', '\n', lines) # trailing whitespace 57 return lines 63 lines = file.read() 66 return lines 75 def Validate(lines): argument 78 if EVAL_PATTERN.search(lines): 80 if WITH_PATTERN.search(lines): [all …]
|
/external/vulkan-validation-layers/demos/smoke/ |
D | generate-dispatch-table.py | 82 lines = [] 83 lines.append("Extension(name=%s, version=%s, guard=%s, commands=[" % 87 lines.append(" %s," % repr(cmd)) 89 lines.append("])") 91 return "\n".join(lines) 314 lines = [] 315 lines.append("// This file is generated.") 316 lines.append("#ifndef %s" % guard) 317 lines.append("#define %s" % guard) 318 lines.append("") [all …]
|
/external/eigen/bench/btl/data/ |
D | perlib_plot_settings.txt | 1 eigen3 ; with lines lw 4 lt 1 lc rgbcolor "black" 2 eigen2 ; with lines lw 3 lt 1 lc rgbcolor "#999999" 3 EigenBLAS ; with lines lw 3 lt 3 lc rgbcolor "#999999" 4 eigen3_novec ; with lines lw 2 lt 1 lc rgbcolor "#999999" 5 eigen3_nogccvec ; with lines lw 2 lt 2 lc rgbcolor "#991010" 6 INTEL_MKL ; with lines lw 3 lt 1 lc rgbcolor "#ff0000" 7 ATLAS ; with lines lw 3 lt 1 lc rgbcolor "#008000" 8 gmm ; with lines lw 3 lt 1 lc rgbcolor "#0000ff" 9 ublas ; with lines lw 3 lt 1 lc rgbcolor "#00b7ff" 10 mtl4 ; with lines lw 3 lt 1 lc rgbcolor "#d18847" [all …]
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/ |
D | screen_finder_unittest.py | 127 lines = [] 129 lines.append(np.asfarray(((0, 1001, 0, -1)))) 130 lines.append(np.asfarray(((-1, 0, 1001, 0)))) 131 lines.append(np.asfarray(((1000, 1001, 1000, -1)))) 132 lines.append(np.asfarray(((-1, 1000, 1001, 1000)))) 133 expected.append(_BuildResult([0, 0], lines[0], lines[1])) 134 expected.append(_BuildResult([0, 1000], lines[0], lines[3])) 135 expected.append(_BuildResult([1000, 0], lines[1], lines[2])) 136 expected.append(_BuildResult([1000, 1000], lines[2], lines[3])) 139 lines.append(np.asfarray(((0, 500, 500, 0)))) [all …]
|
D | cv_util.py | 53 def ExtendLines(lines, length): argument 57 angles = np.arctan2(lines[:, 1] - lines[:, 3], lines[:, 0] - lines[:, 2]) 60 centerx = (lines[:, 0] + lines[:, 2]) / 2.0 61 centery = (lines[:, 1] + lines[:, 3]) / 2.0 62 lines[:, 0] = centerx - xoffsets 63 lines[:, 2] = centerx + xoffsets 64 lines[:, 1] = centery - yoffsets 65 lines[:, 3] = centery + yoffsets 66 return lines
|
/external/autotest/client/site_tests/graphics_dEQP/expectations/mali-t760/ |
D | gles3-master.NotSupported.bz2 | ... GLES3.functional.transform_feedback.array.separate.lines.highp_ivec3
28dEQP-GLES3.functional.transform_feedback ... |
D | dEQP-GLES3.functional.NotSupported.bz2 | ... GLES3.functional.transform_feedback.array.separate.lines.highp_ivec3
29dEQP-GLES3.functional.transform_feedback ... |
/external/mockito/src/main/java/org/mockito/internal/debugging/ |
D | LoggingListener.java | 58 List<String> lines = new LinkedList<String>(); in getStubbingInfo() local 59 … lines.add("[Mockito] Additional stubbing information (see javadoc for StubbingInfo class):"); in getStubbingInfo() 62 lines.add("[Mockito]"); in getStubbingInfo() 63 …lines.add("[Mockito] Argument mismatch between stubbing and actual invocation (is stubbing correct… in getStubbingInfo() 64 lines.add("[Mockito]"); in getStubbingInfo() 65 addOrderedList(lines, argMismatchStubs); in getStubbingInfo() 69 lines.add("[Mockito]"); in getStubbingInfo() 70 lines.add("[Mockito] Unused stubbing (perhaps can be removed from the test?):"); in getStubbingInfo() 71 lines.add("[Mockito]"); in getStubbingInfo() 72 addOrderedList(lines, unusedStubs); in getStubbingInfo() [all …]
|
/external/autotest/client/site_tests/graphics_dEQP/expectations/rogue/ |
D | dEQP-GLES3.functional.NotSupported.bz2 | ... GLES3.functional.transform_feedback.array.separate.lines.highp_ivec3
42dEQP-GLES3.functional.transform_feedback ... |
/external/boringssl/src/util/ |
D | doc.go | 79 func extractComment(lines []string, lineNo int) (comment []string, rest []string, restLineNo int, e… 80 if len(lines) == 0 { 81 return nil, lines, lineNo, nil 85 rest = lines 141 func extractDecl(lines []string, lineNo int) (decl string, rest []string, restLineNo int, err error… 142 if len(lines) == 0 || len(lines[0]) == 0 { 143 return "", lines, lineNo, nil 146 rest = lines 269 var lines, oldLines []string 271 lines = append(lines, scanner.Text()) [all …]
|
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/csv/ |
D | CSVFormatterTest.java | 62 final List<String> lines = getLines(); in testStructureWithGroup() local 63 assertEquals(HEADER, lines.get(0)); in testStructureWithGroup() 66 lines.get(1)); in testStructureWithGroup() 72 final List<String> lines = getLines(); in testStructureWithNestedGroups() local 73 assertEquals(HEADER, lines.get(0)); in testStructureWithNestedGroups() 76 lines.get(1)); in testStructureWithNestedGroups() 79 lines.get(2)); in testStructureWithNestedGroups() 85 final List<String> lines = getLines(); in testStructureWithBundleOnly() local 86 assertEquals(HEADER, lines.get(0)); in testStructureWithBundleOnly() 89 lines.get(1)); in testStructureWithBundleOnly() [all …]
|
/external/elfutils/libdw/ |
D | dwarf_entry_breakpoints.c | 68 Dwarf_Lines *lines, size_t nlines, in search_range() argument 75 if (lines->info[idx].addr < low) in search_range() 77 else if (lines->info[idx].addr > low) in search_range() 79 else if (lines->info[idx].end_sequence) in search_range() 90 for (size_t i = l; i < u && lines->info[i].addr < high; ++i) in search_range() 91 if (lines->info[i].prologue_end in search_range() 92 && add_bkpt (lines->info[i].addr, bkpts, pnbkpts) < 0) in search_range() 95 while (++l < nlines && lines->info[l].addr < high) in search_range() 96 if (!lines->info[l].end_sequence) in search_range() 97 return add_bkpt (lines->info[l].addr, bkpts, pnbkpts); in search_range() [all …]
|
/external/harfbuzz_ng/test/shaping/ |
D | hb_test_tools.py | 116 def colorize_lines (self, lines): argument 117 lines = (l if l else '' for l in lines) 118 ss = [self.diff_regex.sub (r'\1\n\2\n', l).splitlines (True) for l in lines] 146 lines = [None, None] 152 if lines[i]: 154 for line in self.colorize_lines (lines): 156 lines = [None, None] 157 lines[i] = l[1:] 158 if (all (lines)): 160 for line in self.colorize_lines (lines): [all …]
|
/external/skia/src/gpu/ops/ |
D | GrMSAAPathRenderer.cpp | 82 MSAALineVertices& lines) { in append_contour_edge_indices() argument 83 *(lines.nextIndex++) = fanCenterIdx; in append_contour_edge_indices() 84 *(lines.nextIndex++) = edgeV0Idx; in append_contour_edge_indices() 85 *(lines.nextIndex++) = edgeV0Idx + 1; in append_contour_edge_indices() 88 static inline void add_quad(MSAALineVertices& lines, MSAAQuadVertices& quads, const SkPoint pts[], in add_quad() argument 90 SkASSERT(lines.nextVertex < lines.verticesEnd); in add_quad() 91 *lines.nextVertex = { pts[2], color }; in add_quad() 93 int prevIdx = (uint16_t) (lines.nextVertex - lines.vertices - 1); in add_quad() 95 append_contour_edge_indices(subpathLineIdxStart, prevIdx, lines); in add_quad() 98 lines.nextVertex++; in add_quad() [all …]
|
/external/googletest/googletest/scripts/ |
D | pump.py | 163 def StartsWith(lines, pos, string): argument 166 return lines[pos.line][pos.column:].startswith(string) 186 def FindFirst(lines, token_table, cursor): argument 191 for line in lines[start.line:]: 202 return MakeToken(lines, found_start, found_end, token_type) 208 def SubString(lines, start, end): argument 212 end = Cursor(len(lines) - 1, len(lines[-1])) 218 return lines[start.line][start.column:end.column] 220 result_lines = ([lines[start.line][start.column:]] + 221 lines[start.line + 1:end.line] + [all …]
|
/external/v8/testing/gtest/scripts/ |
D | pump.py | 163 def StartsWith(lines, pos, string): argument 166 return lines[pos.line][pos.column:].startswith(string) 186 def FindFirst(lines, token_table, cursor): argument 191 for line in lines[start.line:]: 202 return MakeToken(lines, found_start, found_end, token_type) 208 def SubString(lines, start, end): argument 212 end = Cursor(len(lines) - 1, len(lines[-1])) 218 return lines[start.line][start.column:end.column] 220 result_lines = ([lines[start.line][start.column:]] + 221 lines[start.line + 1:end.line] + [all …]
|
/external/protobuf/gtest/scripts/ |
D | pump.py | 164 def StartsWith(lines, pos, string): argument 167 return lines[pos.line][pos.column:].startswith(string) 187 def FindFirst(lines, token_table, cursor): argument 192 for line in lines[start.line:]: 203 return MakeToken(lines, found_start, found_end, token_type) 209 def SubString(lines, start, end): argument 213 end = Cursor(len(lines) - 1, len(lines[-1])) 219 return lines[start.line][start.column:end.column] 221 result_lines = ([lines[start.line][start.column:]] + 222 lines[start.line + 1:end.line] + [all …]
|
/external/google-breakpad/src/testing/gtest/scripts/ |
D | pump.py | 163 def StartsWith(lines, pos, string): argument 166 return lines[pos.line][pos.column:].startswith(string) 186 def FindFirst(lines, token_table, cursor): argument 191 for line in lines[start.line:]: 202 return MakeToken(lines, found_start, found_end, token_type) 208 def SubString(lines, start, end): argument 212 end = Cursor(len(lines) - 1, len(lines[-1])) 218 return lines[start.line][start.column:end.column] 220 result_lines = ([lines[start.line][start.column:]] + 221 lines[start.line + 1:end.line] + [all …]
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/scripts/ |
D | pump.py | 163 def StartsWith(lines, pos, string): argument 166 return lines[pos.line][pos.column:].startswith(string) 186 def FindFirst(lines, token_table, cursor): argument 191 for line in lines[start.line:]: 202 return MakeToken(lines, found_start, found_end, token_type) 208 def SubString(lines, start, end): argument 212 end = Cursor(len(lines) - 1, len(lines[-1])) 218 return lines[start.line][start.column:end.column] 220 result_lines = ([lines[start.line][start.column:]] + 221 lines[start.line + 1:end.line] + [all …]
|
/external/autotest/client/site_tests/graphics_dEQP/expectations/skylake/ |
D | dEQP-GLES3.functional.hasty.NotSupported.bz2 | ... GLES3.functional.transform_feedback.array.separate.lines.highp_mat3
53dEQP-GLES3.functional.transform_feedback ... |
D | gles3-master.NotSupported.bz2 | ... GLES3.functional.transform_feedback.array.separate.lines.highp_mat3
52dEQP-GLES3.functional.transform_feedback ... |
D | dEQP-GLES3.functional.NotSupported.bz2 | ... GLES3.functional.transform_feedback.array.separate.lines.highp_mat3
53dEQP-GLES3.functional.transform_feedback ... |
/external/v8/testing/gmock/scripts/generator/cpp/ |
D | gmock_class.py | 128 lines = [] 139 lines.extend(['namespace %s {' % n for n in class_node.namespace]) # } 140 lines.append('') 151 lines.append('template <' + ', '.join(template_decls) + '>') 155 lines.append('class Mock%s : public %s {' # } 157 lines.append('%spublic:' % (' ' * (_INDENT // 2))) 160 _GenerateMethods(lines, source, class_node) 163 if lines: 165 if len(lines) == 2: 166 del lines[-1] [all …]
|