/third_party/python/Lib/test/ |
H A D | pythoninfo.py | 399 # Only keep the first line 802 for line in output.splitlines(): 803 line = line.strip() 804 if line.startswith('Caption='): 805 line = line.removeprefix('Caption=').strip() 806 if line: 807 info_add('windows.version_caption', line) 808 elif line [all...] |
/third_party/skia/samplecode/ |
H A D | SampleImageFilterDAG.cpp | 144 SkPaint line; in draw_node() local 145 line.setStrokeWidth(0.f); in draw_node() 146 line.setStyle(SkPaint::kStroke_Style); in draw_node() 158 line.setColor(SK_ColorBLACK); in draw_node() 159 canvas->drawRect(content, line); in draw_node() 166 line.setColor(SK_ColorRED); in draw_node() 167 canvas->drawRect(SkRect::Make(SkIRect(node.fHintedLayerBounds)).makeOutset(3.f, 3.f), line); in draw_node() 169 line.setColor(SK_ColorGREEN); in draw_node() 170 canvas->drawRect(SkRect::Make(SkIRect(node.fUnhintedLayerBounds)).makeOutset(2.f, 2.f), line); in draw_node() 173 line in draw_node() 255 SkPaint line; draw_dag() local [all...] |
/third_party/icu/tools/colprobe/ |
H A D | sortedlines.cpp | 346 Line line; in updateBounds() local 358 //line.setTo(s1); in updateBounds() 1048 // Previously this line skipped over identicals only, but in detectExpansions() 1197 // we have an expansion line and an expansion. There could be some expansions where in detectExpansions() 1198 // the difference between expansion line and the end of expansion sequence is less or in detectExpansions() 1303 SortedLines::add(Line *line, UBool linkIn) { in add() argument 1307 lines[size] = *line; in add() 1374 Line *line = NULL; in arrayToString() local 1396 line = previous->next; in arrayToString() 1398 line in arrayToString() 1487 Line *line = NULL; toFile() local 1514 Line *line = NULL; toStringFromEmpty() local 1623 Line *line = toSort[0]; toHTML() local 1684 Line *line = toSort[0]; toXML() local 1747 Line *line = toSort[0]; toBundle() local 2045 calculateSortKey(Line &line) calculateSortKey() argument [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
H A D | numbers_test.cc | 1240 for (const Int32TestLine& line : int32_test_line) { in TEST() 1243 bool status = safe_strto32_base(line.input.c_str(), &value, base); in TEST() 1244 EXPECT_EQ(line.status, status) << line.input << " " << base; in TEST() 1245 EXPECT_EQ(line.value, value) << line.input << " " << base; in TEST() 1247 status = safe_strto32_base(line.input, &value, base); in TEST() 1248 EXPECT_EQ(line.status, status) << line.input << " " << base; in TEST() 1249 EXPECT_EQ(line in TEST() [all...] |
/kernel/linux/linux-5.10/tools/power/pm-graph/ |
H A D | bootgraph.py | 136 def myCronJob(self, line): 137 if '@reboot' not in line: 139 if 'bootgraph' in line or 'analyze_boot.py' in line or '-cronjob' in line: 166 '1. Add the CMDLINE string to your kernel command line.\n'\ 307 for line in lf: 308 line = aslib.ascii(line).replace('\r\n', '') 310 if re.match(tp.stampfmt, line) [all...] |
/kernel/linux/linux-6.6/tools/power/pm-graph/ |
H A D | bootgraph.py | 138 def myCronJob(self, line): 139 if '@reboot' not in line: 141 if 'bootgraph' in line or 'analyze_boot.py' in line or '-cronjob' in line: 168 '1. Add the CMDLINE string to your kernel command line.\n'\ 309 for line in lf: 310 line = aslib.ascii(line).replace('\r\n', '') 312 if re.match(tp.stampfmt, line) [all...] |
/third_party/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/ |
H A D | CollationPerformanceTest.java | 209 //print the line in doDump() 210 String line = com.ibm.icu.impl.Utility.escape((String)list.get(i)); in doDump() 211 System.out.println(line); in doDump() 214 CollationElementIterator CEiter = ((com.ibm.icu.text.RuleBasedCollator)icuCol).getCollationElementIterator(line); in doDump() 235 CollationKey ck = ((com.ibm.icu.text.RuleBasedCollator)icuCol).getCollationKey(line); in doDump() 508 for (int line=0; line < tests.length; line++) { in doKeyGen() 510 totalChars += tests[line].length(); in doKeyGen() 511 byte[] sortKey = javaCol.getCollationKey(tests[line]) in doKeyGen() [all...] |
/foundation/multimedia/media_foundation/engine/plugin/plugins/ |
H A D | plugin_config.py | 44 for line in infile: 45 if '@HISTREAMER_PLUGIN_STATIC_DECLARE@' in line: 47 elif '@HISTREAMER_PLUGIN_REGISTER_STATIC@' in line: 50 elif '@HISTREAMER_PLUGIN_UNREGISTER_STATIC@' in line: 53 outfile.write(line)
|
/kernel/linux/linux-5.10/arch/loongarch/include/asm/ |
H A D | bug.h | 9 #define _BUGVERBOSE_LOCATION(file, line) 11 #define __BUGVERBOSE_LOCATION(file, line) \ 17 .short line; 18 #define _BUGVERBOSE_LOCATION(file, line) __BUGVERBOSE_LOCATION(file, line)
|
/kernel/linux/linux-6.6/arch/loongarch/include/asm/ |
H A D | bug.h | 9 #define _BUGVERBOSE_LOCATION(file, line) 11 #define __BUGVERBOSE_LOCATION(file, line) \ 17 .short line; 18 #define _BUGVERBOSE_LOCATION(file, line) __BUGVERBOSE_LOCATION(file, line)
|
/kernel/linux/linux-6.6/arch/um/kernel/ |
H A D | kmsg_dump.c | 15 static char line[1024]; in kmsg_dumper_stdout() local 48 while (kmsg_dump_get_line(&iter, true, line, sizeof(line), &len)) { in kmsg_dumper_stdout() 49 line[len] = '\0'; in kmsg_dumper_stdout() 50 printf("%s", line); in kmsg_dumper_stdout()
|
/third_party/elfutils/libdwfl/ |
H A D | dwfl_lineinfo.c | 1 /* Get information from a source line record returned by libdwfl. 37 dwfl_lineinfo (Dwfl_Line *line, Dwarf_Addr *addr, int *linep, int *colp, in dwfl_lineinfo() argument 40 if (line == NULL) in dwfl_lineinfo() 43 struct dwfl_cu *cu = dwfl_linecu (line); in dwfl_lineinfo() 44 const Dwarf_Line *info = &cu->die.cu->lines->info[line->idx]; in dwfl_lineinfo() 49 *linep = info->line; in dwfl_lineinfo()
|
/third_party/elfutils/libdw/ |
H A D | dwarf_getsrc_die.c | 1 /* Find line information for address. 54 Dwarf_Line *line = &lines->info[idx]; in dwarf_getsrc_die() local 55 if (addr < line->addr) in dwarf_getsrc_die() 64 /* The last line which is less than or equal to addr is what we in dwarf_getsrc_die() 66 current line sequence. */ in dwarf_getsrc_die() 67 Dwarf_Line *line = &lines->info[l]; in dwarf_getsrc_die() local 68 if (! line->end_sequence && line->addr <= addr) in dwarf_getsrc_die()
|
H A D | dwarf_lineno.c | 1 /* Return line number. 38 dwarf_lineno (Dwarf_Line *line, int *linep) in dwarf_lineno() argument 40 if (line == NULL) in dwarf_lineno() 43 *linep = line->line; in dwarf_lineno()
|
/third_party/mesa3d/bin/ |
H A D | refcnt-log-helper.py | 51 for line in in_file: 52 if line[0] == '<': 54 parts = line.split(' ') 67 stack = [line] 69 stack += line
|
/third_party/ltp/testcases/cve/ |
H A D | cve-2016-10044.c | 33 char perms[8], line[BUFSIZ]; in run() local 40 while (fgets(line, BUFSIZ, f) != NULL) { in run() 41 if (strstr(line, "[aio]") != NULL) in run() 47 if (sscanf(line, "%*x-%*x %s", perms) != 1) in run() 48 tst_brk(TBROK, "failed to find permission string in %s", line); in run()
|
/third_party/ltp/testcases/kernel/hotplug/cpu_hotplug/tools/ |
H A D | cpuhotplug_report_proc_interrupts | 32 foreach my $line (split /\n/, $content) { 33 $line =~ s/^\s+//; 34 $line =~ s/\s+$//; 37 @cpus = split /\s+/, $line; 39 my @items = split /\s+/, $line;
|
/third_party/musl/libc-test/src/functionalext/supplement/stdio/ |
H A D | getdelim.c | 27 char *line = NULL; in getdelim_0100() local 36 ssize_t result = getdelim(&line, &len, ',', fp); in getdelim_0100() 38 EXPECT_TRUE("getdelim_0100", strcmp(line, "hello,") == 0); in getdelim_0100() 51 char *line = NULL; in getdelim_0200() local 57 ssize_t result = getdelim(&line, NULL, 'l', fp); in getdelim_0200()
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/Retired/ |
H A D | realign.py | 27 for line in lines: 30 match = regexp[i].match(line) 33 #print('# While processing line: ' + line, end='') 38 line = match.group(1).ljust(column[i]) + match.group(2) 40 print(line) 42 print(line, end='')
|
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/ |
H A D | DumbTextComponent.java | 304 int line = findLine(off, false); in lineDelta() 305 int posInLine = off - lineStarts[line]; in lineDelta() 306 // System.out.println("off=" + off + " at " + line + ":" + posInLine); in lineDelta() 307 line += delta; in lineDelta() 308 if (line < 0) { in lineDelta() 309 line = posInLine = 0; in lineDelta() 310 } else if (line >= lineCount) { in lineDelta() 313 off = lineStarts[line] + posInLine; in lineDelta() 314 if (off >= lineStarts[line+1]) { in lineDelta() 315 off = lineStarts[line in lineDelta() 757 findFittingBreak(FontMetrics fMtr, String line, int width, BreakIterator breaker) findFittingBreak() argument [all...] |
/third_party/node/deps/v8/tools/ |
H A D | v8_presubmit.py | 470 for line in f.readlines(): 471 m = pattern.match(line) 551 def EndOfDeclaration(self, line): 552 return line == "}" or line == "};" 554 def StartOfDeclaration(self, line): 555 return line.find("//") == 0 or \ 556 line.find("/*") == 0 or \ 557 line.find(") {") != -1 573 line [all...] |
/kernel/linux/linux-5.10/drivers/media/platform/qcom/camss/ |
H A D | camss-vfe-4-7.c | 560 struct vfe_line *line = container_of(output, struct vfe_line, output); in vfe_set_xbar_cfg() local 561 u32 p = line->video_out.active_fmt.fmt.pix_mp.pixelformat; in vfe_set_xbar_cfg() 627 static void vfe_set_realign_cfg(struct vfe_device *vfe, struct vfe_line *line, in vfe_set_realign_cfg() argument 630 u32 p = line->video_out.active_fmt.fmt.pix_mp.pixelformat; in vfe_set_realign_cfg() 697 struct vfe_output *output = &vfe->line[line_id].output; in vfe_enable_irq_pix_line() 735 static void vfe_set_demux_cfg(struct vfe_device *vfe, struct vfe_line *line) in vfe_set_demux_cfg() argument 747 switch (line->fmt[MSM_VFE_PAD_SINK].code) { in vfe_set_demux_cfg() 785 static void vfe_set_scale_cfg(struct vfe_device *vfe, struct vfe_line *line) in vfe_set_scale_cfg() argument 787 u32 p = line->video_out.active_fmt.fmt.pix_mp.pixelformat; in vfe_set_scale_cfg() 795 input = line in vfe_set_scale_cfg() 840 vfe_set_crop_cfg(struct vfe_device *vfe, struct vfe_line *line) vfe_set_crop_cfg() argument 930 vfe_set_camif_cfg(struct vfe_device *vfe, struct vfe_line *line) vfe_set_camif_cfg() argument [all...] |
/kernel/linux/linux-6.6/drivers/media/platform/qcom/camss/ |
H A D | camss-vfe-4-7.c | 579 struct vfe_line *line = container_of(output, struct vfe_line, output); in vfe_set_xbar_cfg() local 580 u32 p = line->video_out.active_fmt.fmt.pix_mp.pixelformat; in vfe_set_xbar_cfg() 646 static void vfe_set_realign_cfg(struct vfe_device *vfe, struct vfe_line *line, in vfe_set_realign_cfg() argument 649 u32 p = line->video_out.active_fmt.fmt.pix_mp.pixelformat; in vfe_set_realign_cfg() 686 /* Enforce barrier between line update and commit */ in vfe_reg_update() 720 struct vfe_output *output = &vfe->line[line_id].output; in vfe_enable_irq_pix_line() 758 static void vfe_set_demux_cfg(struct vfe_device *vfe, struct vfe_line *line) in vfe_set_demux_cfg() argument 770 switch (line->fmt[MSM_VFE_PAD_SINK].code) { in vfe_set_demux_cfg() 794 static void vfe_set_scale_cfg(struct vfe_device *vfe, struct vfe_line *line) in vfe_set_scale_cfg() argument 796 u32 p = line in vfe_set_scale_cfg() 849 vfe_set_crop_cfg(struct vfe_device *vfe, struct vfe_line *line) vfe_set_crop_cfg() argument 939 vfe_set_camif_cfg(struct vfe_device *vfe, struct vfe_line *line) vfe_set_camif_cfg() argument [all...] |
H A D | camss-vfe-4-8.c | 550 struct vfe_line *line = container_of(output, struct vfe_line, output); in vfe_set_xbar_cfg() local 551 u32 p = line->video_out.active_fmt.fmt.pix_mp.pixelformat; in vfe_set_xbar_cfg() 617 static void vfe_set_realign_cfg(struct vfe_device *vfe, struct vfe_line *line, in vfe_set_realign_cfg() argument 620 u32 p = line->video_out.active_fmt.fmt.pix_mp.pixelformat; in vfe_set_realign_cfg() 657 /* Enforce barrier between line update and commit */ in vfe_reg_update() 692 struct vfe_output *output = &vfe->line[line_id].output; in vfe_enable_irq_pix_line() 729 static void vfe_set_demux_cfg(struct vfe_device *vfe, struct vfe_line *line) in vfe_set_demux_cfg() argument 741 switch (line->fmt[MSM_VFE_PAD_SINK].code) { in vfe_set_demux_cfg() 765 static void vfe_set_scale_cfg(struct vfe_device *vfe, struct vfe_line *line) in vfe_set_scale_cfg() argument 767 u32 p = line in vfe_set_scale_cfg() 820 vfe_set_crop_cfg(struct vfe_device *vfe, struct vfe_line *line) vfe_set_crop_cfg() argument 871 vfe_set_camif_cfg(struct vfe_device *vfe, struct vfe_line *line) vfe_set_camif_cfg() argument [all...] |
/kernel/linux/linux-5.10/arch/arm/mm/ |
H A D | cache-v6.S | 134 USER( mcr p15, 0, r0, c7, c10, 1 ) @ clean D line 177 mcr p15, 0, r0, c7, c14, 1 @ clean & invalidate D line 179 mcr p15, 0, r0, c7, c15, 1 @ clean & invalidate unified line 209 mcrne p15, 0, r0, c7, c10, 1 @ clean D line 211 mcrne p15, 0, r0, c7, c11, 1 @ clean unified line 220 mcrne p15, 0, r1, c7, c14, 1 @ clean & invalidate D line 222 mcrne p15, 0, r1, c7, c15, 1 @ clean & invalidate unified line 226 mcr p15, 0, r0, c7, c6, 1 @ invalidate D line 228 mcr p15, 0, r0, c7, c7, 1 @ invalidate unified line 253 mcr p15, 0, r0, c7, c10, 1 @ clean D line [all...] |