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

1234567891011>>

/macosx-10.9.5/OpenSSH-186/openssh/contrib/aix/
H A Dinventory.sh33 find . ! -name . -print | perl -ne '{
/macosx-10.9.5/dtrace-118.1/test/tst/common/pid/
H A Dtst.emptystack.exe29 exec find / > /dev/null 2>&1
/macosx-10.9.5/Heimdal-323.92.1/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.9.5/Libc-997.90.3/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.9.5/tcl-102/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.9.5/Heimdal-323.92.1/
H A Dautogen.sh6 find . \( -name '*-private.h' -o -name '*-protos.h' \) -delete
/macosx-10.9.5/OpenLDAP-491.1/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.9.5/dcerpc-58/BuildConfig/
H A Dremove-framework-cruft46 find ${TARGET_BUILD_DIR}/${CONTENTS_FOLDER_PATH} -name \*.c -print0 | \
/macosx-10.9.5/tcl-102/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.9.5/CPAN-52/fix/
H A Dremoveemptyautodirs7 File::Find::find({
/macosx-10.9.5/apache-786.1/httpd/build/
H A Dconfig-stubs18 configfiles=`find . -name "config*.m4" | \
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DContentType.cpp44 size_t semi = strippedType.find(';');
46 size_t start = strippedType.find(parameterName, semi + 1, false);
48 start = strippedType.find('=', start + parameterName.length());
50 size_t quote = strippedType.find('\"', start + 1);
51 size_t end = strippedType.find('\"', start + 2);
55 end = strippedType.find(';', start + 1);
72 size_t semi = strippedType.find(';');
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/MailDemo/MailDemoActiveRecordBindings/
H A DMyController.rb15 @mailboxes = Mailbox.find(:all).to_activerecord_proxies
/macosx-10.9.5/bash-92/bash-3.2/examples/startup-files/apple/
H A Daliases22 files () { find ${1} -type f -print ; }
23 ff () { find . -name ${1} -print ; }
/macosx-10.9.5/CPANInternal-140/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.9.5/apache-786.1/httpd/srclib/apr/build/
H A DMakeEtags40 find . -name '*.[ch]' -print | $etags -I "$ignore" -L -
/macosx-10.9.5/apr-30/apr/apr/build/
H A DMakeEtags40 find . -name '*.[ch]' -print | $etags -I "$ignore" -L -
/macosx-10.9.5/libstdcxx-60/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.9.5/libstdcxx-60/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
/macosx-10.9.5/zsh-60/zsh/Util/
H A Dpreconfig3 find . -name .git -prune -o -name '?*.*' -prune -o -name .preconfig -print | (
/macosx-10.9.5/SmartCardServices-55111/src/PCSC/
H A Dpcscd_reader.cpp47 bool Readers::find(const char *name, XReaderContext &rc) const function in class:PCSCD::Readers
52 bool Readers::find(uint32_t port, const char *name, XReaderContext &rc) const function in class:PCSCD::Readers
57 bool Readers::find(uint32_t id, XReaderContext &rc) const function in class:PCSCD::Readers
88 if (!mReaders->find(lpcReader, rc))
102 if (!mReaders->find(dwPort, lpcReader, rc))
116 if (!mReaders->find(dwIdentity, rc))
126 if (!mReaders->find(hCard, rc))
135 if (!mReaders->find(hCard, rc))
152 if (!mReaders->find(hCard, rc))

Completed in 473 milliseconds

1234567891011>>