/freebsd/contrib/llvm-project/lld/MachO/ |
H A D | ExportTrie.cpp | 53 Edge(StringRef s, TrieNode *node) : substring(s), child(node) {} in Edge() 55 StringRef substring; member 153 nodeSize += edge.substring.size() + 1 // String length. in updateOffset() 185 memcpy(buf, edge.substring.data(), edge.substring.size()); in writeTo() 186 buf += edge.substring.size(); in writeTo() 331 StringRef substring = StringRef(cbuf, strnlen(cbuf, end - buf)); in parse() local 332 buf += substring.size() + 1; in parse() 335 parse(start + offset, cumulativeString + substring); in parse()
|
/freebsd/contrib/libarchive/cat/test/ |
H A D | test_help.c | 15 in_first_line(const char *p, const char *substring) in in_first_line() argument 17 size_t l = strlen(substring); in in_first_line() 20 if (memcmp(p, substring, l) == 0) in in_first_line()
|
/freebsd/contrib/libarchive/tar/test/ |
H A D | test_help.c | 15 in_first_line(const char *p, const char *substring) in in_first_line() argument 17 size_t l = strlen(substring); in in_first_line() 20 if (memcmp(p, substring, l) == 0) in in_first_line()
|
/freebsd/contrib/libarchive/cpio/test/ |
H A D | test_option_help.c | 15 in_first_line(const char *p, const char *substring) in in_first_line() argument 17 size_t l = strlen(substring); in in_first_line() 20 if (memcmp(p, substring, l) == 0) in in_first_line()
|
/freebsd/contrib/pam_modules/pam_passwdqc/ |
H A D | README | 72 The length of common substring required to conclude that a password is 74 or 0 to disable the substring search. Note that the password will not 75 be rejected once a weak substring is found. Instead, the password 77 substring removed. 79 The substring search is case-insensitive and is able to detect and 80 remove a common substring spelled backwards. 86 long common substring and the new password with the substring removed
|
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/jdtrace/ |
H A D | JDTrace.java | 138 buf.append(req.s.substring(prev_i, i)); in applyProbespec() 151 buf.append(req.s.substring(i)); in applyProbespec() 379 out.printf("|%s%s %-9d\n", ATS.substring(len - depth), in printDistributionLine() 380 SPACES.substring(depth), val); in printDistributionLine() 388 out.printf("%s%s| %-9d\n", SPACES.substring(depth), in printDistributionLine() 389 ATS.substring(len - depth), val); in printDistributionLine() 401 String ats = ATS.substring(len); in printDistributionLine() 402 String spaces = SPACES.substring(len); in printDistributionLine() 408 out.printf("%s%s|%s %-9d\n", spaces.substring(depth), in printDistributionLine() 409 ats.substring(len - depth), repeat(" ", len), val); in printDistributionLine() [all …]
|
H A D | Getopt.java | 125 Character.toString(c) : optstr.substring(2))); in err() 224 longoptarg.set(opt.substring(op + 1)); in parselong() 375 ? ((cp = parselong(optstring, args[optind].substring(2), in getopt() 418 optarg = args[optind++].substring(_sp + 1); in getopt()
|
/freebsd/usr.bin/locale/ |
H A D | locale.c | 63 void showkeywordslist(char *substring); 911 showkeywordslist(char *substring) in showkeywordslist() argument 917 if (substring == NULL) in showkeywordslist() 921 substring); in showkeywordslist() 925 if (substring != NULL) { in showkeywordslist() 926 if (strncmp(kwinfo[i].name, substring, in showkeywordslist() 927 strlen(substring)) != 0) in showkeywordslist()
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_destroy/ |
H A D | zfs_clone_livelist_condense_and_disable.ksh | 48 substring="$1" 50 if test "${string#*$substring}" != "$string"; then
|
/freebsd/contrib/netbsd-tests/lib/libc/regex/ |
H A D | README | 9 expected to fail. If there is a fourth field, it is the substring that 33 For REG_STARTEND, the start/end offsets are those of the substring
|
/freebsd/contrib/sendmail/cf/feature/ |
H A D | prefixmod.m4 | 15 # (this is not a "substring" match)
|
/freebsd/crypto/heimdal/lib/wind/ |
H A D | rfc4518.txt | 324 For input strings that are attribute values or non-substring 343 For input strings that are substring assertion values: If the string 348 - If the input string is an initial substring, it is modified to 351 - If the input string is an initial or an any substring that ends in 355 - If the input string is an any or a final substring that starts in 359 - If the input string is a final substring, it is modified to end 363 an initial substring, the output would be 364 "<SPACE>foo<SPACE><SPACE>bar<SPACE>". As an any or final substring, 639 substring matches a partition of the attribute value, then an 640 assertion constructed by subdividing that substring into multiple
|
/freebsd/contrib/sqlite3/tea/win/ |
H A D | nmakehlp.c | 43 static int IsIn(const char *string, const char *substring); 490 const char *substring) in IsIn() argument 492 return (strstr(string, substring) != NULL); in IsIn()
|
/freebsd/contrib/ntp/sntp/ag-tpl/0-old/ |
H A D | mdoc-synopsis.tlib | 70 .I [+: (substring comment-char 1 0):+]
|
H A D | perlopt.tpl | 102 (set! optargname (string-append "=" (substring (get "arg-type") 0 3)))
|
/freebsd/lib/libc/regex/grot/ |
H A D | tests | 9 # expected to fail. If there is a fourth field, it is the substring that 32 # For REG_STARTEND, the start/end offsets are those of the substring
|
/freebsd/contrib/ee/ |
H A D | ee.i18n.guide | 41 substring of a valid command
|
H A D | ee.c | 327 char *is_in_string(char *string, char *substring); 4853 is_in_string(char *string, char *substring) in is_in_string() argument 4857 for (sub = substring; (sub != NULL) && (*sub != '\0'); sub++) in is_in_string()
|
/freebsd/contrib/googletest/googlemock/include/gmock/ |
H A D | gmock-matchers.h | 968 explicit HasSubstrMatcher(const StringType& substring) 969 : substring_(substring) {} 4508 const internal::StringLike<T>& substring) { 4510 internal::HasSubstrMatcher<std::string>(std::string(substring))); 4563 const std::wstring& substring) { 4565 internal::HasSubstrMatcher<std::wstring>(substring));
|
/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/ |
H A D | DXIL.td | 19 // arbitrary, yet need to be a substring of the function name used during
|
/freebsd/usr.sbin/bsdconfig/share/ |
H A D | strings.subr | 66 # Similar to awk(1)'s substr(), return length substring of string that begins
|
/freebsd/contrib/atf/atf-sh/ |
H A D | libatf-sh.subr | 559 # tr(1) is generally not a builtin, so doing the substring check first
|
/freebsd/contrib/googletest/docs/ |
H A D | advanced.md | 1549 EXPECT_FATAL_FAILURE(statement, substring); 1553 current thread whose message contains the given `substring`, or use 1556 EXPECT_NONFATAL_FAILURE(statement, substring); 1567 EXPECT_FATAL_FAILURE_ON_ALL_THREADS(statement, substring); 1568 EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS(statement, substring);
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | regengine.inc | 446 assert(sep == rest); /* must exhaust substring */
|
/freebsd/contrib/bmake/ |
H A D | bmake.cat1 | 1101 substring of arbitrary characters, and if the whole pattern is found 1104 substring matched by the `%'.
|