Searched refs:find (Results 1 - 25 of 1936) sorted by relevance

1234567891011>>

/macosx-10.10.1/OpenSSH-189/openssh/contrib/aix/
H A Dinventory.sh33 find . ! -name . -print | perl -ne '{
/macosx-10.10.1/dtrace-147/test/tst/common/pid/
H A Dtst.emptystack.exe29 exec find / > /dev/null 2>&1
/macosx-10.10.1/Heimdal-398.1.2/packages/mac/
H A Dupdate-version.sh3 find . -name '*-Info.plist' -exec /usr/libexec/PlistBuddy -c "Set :CFBundleVersion $1" {} \;
4 find . -name '*-Info.plist' -exec /usr/libexec/PlistBuddy -c "Set :CFBundleShortVersionString $1" {} \;
/macosx-10.10.1/Libc-1044.1.2/string/FreeBSD/
H A Dstrstr.c42 * Find the first occurrence of find in s.
45 strstr(const char *s, const char *find) argument
50 if ((c = *find++) != '\0') {
51 len = strlen(find);
57 } while (strncmp(s, find, len) != 0);
H A Dstrcasestr.c42 * Find the first occurrence of find in s, ignore case.
45 strcasestr_l(s, find, loc)
46 const char *s, *find;
53 if ((c = *find++) != 0) {
55 len = strlen(find);
61 } while (strncasecmp_l(s, find, len, loc) != 0);
68 strcasestr(const char *s, const char *find) argument
70 return strcasestr_l(s, find, __current_locale());
H A Dstrnstr.c43 * Find the first occurrence of find in s, where the search is limited to the
47 strnstr(const char *s, const char *find, size_t slen) argument
52 if ((c = *find++) != '\0') {
53 len = strlen(find);
61 } while (strncmp(s, find, len) != 0);
H A Dwcsstr.c44 * Find the first occurrence of find in s.
47 wcsstr(const wchar_t * __restrict s, const wchar_t * __restrict find) argument
52 if ((c = *find++) != L'\0') {
53 len = wcslen(find);
59 } while (wcsncmp(s, find, len) != 0);
/macosx-10.10.1/tcl-105/tcl_ext/tclconfig/
H A Dupdt_tcl_m4.sh3 find ${1:-.} -name 'tcl.m4' ! -path "./tclconfig/*" \
5 find ${1:-.} \( -name 'configure.in' -or -name 'configure.ac' \) \
8 find ${1:-.} -name 'configure' \
/macosx-10.10.1/Heimdal-398.1.2/
H A Dautogen.sh6 find . \( -name '*-private.h' -o -name '*-protos.h' \) -delete
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/build/
H A Dcrupdate21 find . -type f -not -name 'LICENSE*' -print -exec perl -pi -e 's/Copyright ([0-9]{4})([,\-][0-9]{2,4})*,? The OpenLDAP Foundation/Copyright $1-2008 The OpenLDAP Foundation/g;' {} \;
/macosx-10.10.1/dcerpc-61/BuildConfig/
H A Dremove-framework-cruft46 find ${TARGET_BUILD_DIR}/${CONTENTS_FOLDER_PATH} -name \*.c -print0 | \
/macosx-10.10.1/tcl-105/tcl_ext/xotcl/xotcl/
H A Dautoclean.sh5 for configscript in `find . -name configure`
H A Dautogen.sh3 for pdir in `find . -name configure.in`
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DFindBanner.css26 .find-banner {
47 .find-banner.showing {
52 .find-banner.no-find-banner-transition,
53 .supports-find-banner.no-find-banner-transition {
57 .supports-find-banner {
63 .supports-find-banner.showing-find-banner {
68 .find
[all...]
/macosx-10.10.1/CPAN-56/fix/
H A Dremoveemptyautodirs7 File::Find::find({
/macosx-10.10.1/apache-793/httpd/build/
H A Dconfig-stubs18 configfiles=`find os server modules support -name "config*.m4" | \
/macosx-10.10.1/apache-793/httpd/modules/lua/test/
H A Dtest.lua28 assert(b:find("test"), "test not found in document root")
34 assert(b:find("hello Lua world"), "'hello Lua world' not found in response")
46 assert(b:find("complex:%s+hello: 7, 1\n"), "didn't find complex post parsing")
47 assert(b:find("simple:%s+hello: 7\n"), "didn't find simple post parsing")
53 assert(b:find("Handler FOO!"), "unexpected output!")
59 assert(b:find("hello: 7"), "didn't get expected post data [" .. b .."]")
64 assert(b:find("hello: 7"), "didn't get expected post data [" .. b .."]")
65 assert(b:find("goodby
[all...]
/macosx-10.10.1/OpenSSL098-52/src/util/
H A DfixNT.sh11 /bin/rm -f `find . -name '*.$$$' -print` 2>/dev/null >/dev/null
13 perl -pi -e 's/\015//' `find . -type 'f' -print |grep -v '.obj$' |grep -v '.der$' |grep -v '.gz'`
H A Dperlpath.pl7 require "find.pl";
10 &find(".");
/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DUnionFind.h40 // Calling x->find() gives you a MemberOfSet* that represents the
44 // x->find() == y->find()
48 // a->find() == b->find()
53 // a->find() == x
54 // b->find() == y
58 // single pass implementation of unify() and find() over ensuring the
73 ASSERT(result == (const_cast<UnionFind<T>*>(this)->find() == this));
77 T* find() function in class:WTF::UnionFind
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/examples/startup-files/apple/
H A Daliases22 files () { find ${1} -type f -print ; }
23 ff () { find . -name ${1} -print ; }
/macosx-10.10.1/CPANInternal-159.1/Perl4-CoreLibs-0.003/lib/
H A Dfind.pl2 # require "find.pl";
4 # &find('/foo','/bar');
43 sub find { subroutine
44 &File::Find::find(\&wanted, @_);
/macosx-10.10.1/apr-32/apr/apr/build/
H A DMakeEtags40 find . -name '*.[ch]' -print | $etags -I "$ignore" -L -
/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/ext/pb_ds/detail/cc_hash_table_map_/
H A Dfind_fn_imps.hpp44 * Contains implementations of cc_ht_map_'s find related functions.
50 find(const_key_reference r_key) function in class:PB_DS_CLASS_C_DEC
59 find(const_key_reference r_key) const function in class:PB_DS_CLASS_C_DEC
/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/ext/pb_ds/detail/gp_hash_table_map_/
H A Dfind_fn_imps.hpp44 * Contains implementations of gp_ht_map_'s find related functions.
50 find(const_key_reference r_key) function in class:PB_DS_CLASS_C_DEC
59 find(const_key_reference r_key) const function in class:PB_DS_CLASS_C_DEC

Completed in 249 milliseconds

1234567891011>>