/third_party/python/Lib/unittest/ |
H A D | runner.py | 42 self.dots = verbosity == 1 81 elif self.dots: 93 elif self.dots: 101 elif self.dots: 109 elif self.dots: 117 elif self.dots: 126 elif self.dots: 135 elif self.dots: 140 if self.dots or self.showAll:
|
/third_party/python/Lib/encodings/ |
H A D | idna.py | 7 dots = re.compile("[\u002E\u3002\uFF0E\uFF61]") variable 169 labels = dots.split(input) 225 labels = dots.split(input) 261 labels = dots.split(input)
|
/third_party/mesa3d/src/mesa/main/ |
H A D | ffvertex_prog.c | 1013 * lit.y = MAX(0, dots.x) 1014 * lit.z = SLT(0, dots.x) 1018 struct ureg dots ) in emit_degenerate_lit() 1023 * dots.xyzw == dots.xxxx. in emit_degenerate_lit() 1026 /* MAX lit, id, dots; in emit_degenerate_lit() 1028 emit_op2(p, OPCODE_MAX, lit, WRITEMASK_XYZW, id, dots); in emit_degenerate_lit() 1031 * SLT lit.z, id.z, dots; # lit.z = (0 < dots.z) ? 1 : 0 in emit_degenerate_lit() 1033 emit_op2(p, OPCODE_SLT, lit, WRITEMASK_Z, swizzle1(id,Z), dots); in emit_degenerate_lit() 1048 struct ureg dots = get_temp(p); build_lighting() local [all...] |
/third_party/node/lib/ |
H A D | path.js | 70 let dots = 0; 81 if (lastSlash === i - 1 || dots === 1) { 83 } else if (dots === 2) { 98 dots = 0; 104 dots = 0; 120 dots = 0; 121 } else if (code === CHAR_DOT && dots !== -1) { 122 ++dots; 124 dots = -1;
|
/third_party/littlefs/scripts/ |
H A D | tracebd.py | 273 dots=False, 287 if braille or dots: 457 dots=False, 484 if (braille and self.height < 4) or (dots and self.height < 2): 526 elif dots: 544 dots=True, 576 dots=False, 669 # scale if we're printing with dots or braille 673 else 2*height_ if dots 787 # don't forget we've scaled this for braille/dots! [all...] |
H A D | plot.py | 278 dots=False): 279 # scale if we're printing with dots or braille 282 else 2*height if dots 290 self.dots = dots 389 elif self.dots: 1161 dots=line_chars is None and not braille)
|
/kernel/linux/linux-5.10/fs/adfs/ |
H A D | dir.c | 202 unsigned int dots, i; in adfs_object_fixup() local 213 for (i = dots = 0; i < obj->name_len; i++) in adfs_object_fixup() 216 dots++; in adfs_object_fixup() 219 if (obj->name_len <= 2 && dots == obj->name_len) in adfs_object_fixup()
|
/kernel/linux/linux-6.6/fs/adfs/ |
H A D | dir.c | 202 unsigned int dots, i; in adfs_object_fixup() local 213 for (i = dots = 0; i < obj->name_len; i++) in adfs_object_fixup() 216 dots++; in adfs_object_fixup() 219 if (obj->name_len <= 2 && dots == obj->name_len) in adfs_object_fixup()
|
/kernel/linux/linux-5.10/tools/perf/util/ |
H A D | string2.h | 12 extern const char *dots;
|
H A D | string.c | 13 const char *dots = variable
|
/kernel/linux/linux-6.6/tools/perf/util/ |
H A D | string2.h | 12 extern const char *dots;
|
H A D | string.c | 13 const char *dots = variable
|
/third_party/ffmpeg/libavcodec/ |
H A D | texturedspenc.c | 179 int dots[16]; in match_colors() local 201 dots[k++] = block[0 + x * 4 + y * stride] * dirr + in match_colors() 224 int dot = dots[x]; in match_colors()
|
/third_party/libcoap/src/ |
H A D | coap_uri.c | 532 * Checks if path segment @p s consists of one or two dots. 535 dots(const uint8_t *s, size_t len) { in dots() function 560 if (!dots(p, q - p)) { in coap_split_path_impl() 572 if (!dots(p, q - p)) { in coap_split_path_impl()
|
/third_party/skia/src/pathops/ |
H A D | SkOpAngle.cpp | 268 double dots[2]; in linesOnOriginalSide() local 275 dots[index] = line.fX * testLine.fX + line.fY * testLine.fY; in linesOnOriginalSide() 287 if ((!dots[0] && dots[1] < 0) || (dots[0] < 0 && !dots[1])) { in linesOnOriginalSide()
|
/third_party/musl/porting/linux/user/src/network/ |
H A D | lookup_name.c | 259 size_t l, dots; in name_from_dns_search() local 265 /* Count dots, suppress search when >=ndots or name ends in in name_from_dns_search() 267 for (dots=l=0; name[l]; l++) if (name[l]=='.') dots++; in name_from_dns_search() 268 if (dots >= conf.ndots || name[l-1]=='.') *search = 0; in name_from_dns_search() 270 /* Strip final dot for canon, fail if multiple trailing dots. */ in name_from_dns_search()
|
/third_party/musl/src/network/ |
H A D | lookup_name.c | 313 size_t l, dots; in name_from_dns_search() local 319 /* Count dots, suppress search when >=ndots or name ends in in name_from_dns_search() 321 for (dots=l=0; name[l]; l++) if (name[l]=='.') dots++; in name_from_dns_search() 322 if (dots >= conf.ndots || name[l-1]=='.') *search = 0; in name_from_dns_search() 324 /* Strip final dot for canon, fail if multiple trailing dots. */ in name_from_dns_search() 328 MUSL_LOGE("%{public}s: %{public}d: fail when multiple trailing dots: %{public}d", __func__, __LINE__, EAI_NONAME); in name_from_dns_search()
|
/kernel/linux/linux-5.10/tools/perf/ui/stdio/ |
H A D | hist.c | 682 /* preserve max indent depth for initial dots */ in hists__fprintf_hierarchy_headers() 683 print_hierarchy_indent(sep, indent, dots, fp); in hists__fprintf_hierarchy_headers() 696 fprintf(fp, "%.*s", width, dots); in hists__fprintf_hierarchy_headers() 721 fprintf(fp, "%s%-.*s", sep ?: " ", header_width, dots); in hists__fprintf_hierarchy_headers()
|
/kernel/linux/linux-6.6/tools/perf/ui/stdio/ |
H A D | hist.c | 682 /* preserve max indent depth for initial dots */ in hists__fprintf_hierarchy_headers() 683 print_hierarchy_indent(sep, indent, dots, fp); in hists__fprintf_hierarchy_headers() 696 fprintf(fp, "%.*s", width, dots); in hists__fprintf_hierarchy_headers() 721 fprintf(fp, "%s%-.*s", sep ?: " ", header_width, dots); in hists__fprintf_hierarchy_headers()
|
/third_party/node/deps/openssl/openssl/crypto/x509/ |
H A D | v3_utl.c | 748 int dots = 0; in valid_star() local 763 if (star != NULL || (state & LABEL_IDNA) != 0 || dots) in valid_star() 785 ++dots; in valid_star() 798 * there must be at least two dots after the star. in valid_star() 800 if ((state & (LABEL_START | LABEL_HYPHEN)) != 0 || dots < 2) in valid_star()
|
/third_party/openssl/crypto/x509/ |
H A D | v3_utl.c | 748 int dots = 0; in valid_star() local 763 if (star != NULL || (state & LABEL_IDNA) != 0 || dots) in valid_star() 785 ++dots; in valid_star() 798 * there must be at least two dots after the star. in valid_star() 800 if ((state & (LABEL_START | LABEL_HYPHEN)) != 0 || dots < 2) in valid_star()
|
/third_party/rust/crates/syn/src/ |
H A D | ty.rs | 247 pub dots: Token![...], 968 dots: input.parse()?, in parse_bare_variadic() 1058 let span = variadic.dots.spans[0]; in to_tokens() 1177 self.dots.to_tokens(tokens); in to_tokens()
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | strcase.cpp | 326 dots=UnicodeString("I \\u0130 I\\u0307 I\\u0327\\u0307 I\\u0301\\u0307 I\\u0327\\u0307\\u0301", "").unescape(), in TestCaseConversion() local 330 (t=dots).toLower("tr"); in TestCaseConversion() 332 errln("error in dots.toLower(tr)=\"" + t + "\" expected \"" + dotsTurkish + "\""); in TestCaseConversion() 335 (t=dots).toLower("de"); in TestCaseConversion() 337 errln("error in dots.toLower(de)=\"" + t + "\" expected \"" + dotsDefault + "\""); in TestCaseConversion() 347 dots=UnicodeString("a\\u0307 \\u0307 i\\u0307 j\\u0327\\u0307 j\\u0301\\u0307", "").unescape(), in TestCaseConversion() local 351 (t=dots).toUpper("lt"); in TestCaseConversion() 353 errln("error in dots.toUpper(lt)=\"" + t + "\" expected \"" + dotsLithuanian + "\""); in TestCaseConversion() 356 (t=dots).toUpper("de"); in TestCaseConversion() 358 errln("error in dots in TestCaseConversion() [all...] |
/kernel/linux/linux-5.10/arch/x86/platform/uv/ |
H A D | uv_nmi.c | 725 const char *dots = " ................................. "; in uv_nmi_dump_state_cpu() local 734 pr_info("UV:%sNMI process trace for CPU %d\n", dots, cpu); in uv_nmi_dump_state_cpu()
|
/kernel/linux/linux-6.6/arch/x86/platform/uv/ |
H A D | uv_nmi.c | 725 const char *dots = " ................................. "; in uv_nmi_dump_state_cpu() local 734 pr_info("UV:%sNMI process trace for CPU %d\n", dots, cpu); in uv_nmi_dump_state_cpu()
|