Searched refs:equivalent (Results 1 - 25 of 89) sorted by relevance

1234

/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/
H A Dsystem_error.cpp35 error_category::equivalent(int code, const error_condition& condition) const { function in class:llvm::error_category
40 error_category::equivalent(const error_code& code, int condition) const { function in class:llvm::error_category
/macosx-10.10.1/ntp-92/ntpdc/
H A Dntpdc-opts.def59 their state. This is equivalent to the 'listpeers' interactive command.
70 of their state. This is equivalent to the 'peers' interactive command.
81 of their state. This is equivalent to the 'dmpeers' interactive command.
/macosx-10.10.1/libarchive-30/libarchive/cpio/
H A Dcmdline.c62 int equivalent; /* Equivalent short option. */ member in struct:option
264 return (match->equivalent);
/macosx-10.10.1/libarchive-30/libarchive/tar/
H A Dcmdline.c55 * The symbolic names for options that lack a short equivalent are
64 int equivalent; /* Equivalent short option. */ member in struct:option
378 return (match->equivalent);
/macosx-10.10.1/llvmCore-3425.0.34/tools/llvm-config/
H A Dllvm-config.cpp194 if (sys::fs::equivalent(CurrentExecPrefix,
207 } else if (sys::fs::equivalent(CurrentExecPrefix, LLVM_OBJ_ROOT)) {
211 } else if (sys::fs::equivalent(CurrentExecPrefix,
/macosx-10.10.1/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/
H A DIterator.pm291 This is equivalent to:
303 This is equivalent to:
314 equivalent to:
333 This is then functionally equivalent to:
387 which is equivalent to L<size()> - C<1>.
396 equivalent to L<index()> + C<1>.
/macosx-10.10.1/CPANInternal-159.1/Tree-Simple-VisitorFactory-0.10/lib/Tree/Simple/
H A DVisitorFactory.pm134 Given a tree constructed from nested arrays, this Visitor will create the equivalent Tree::Simple heirarchy.
138 Given a Tree::Simple heirarchy, this Visitor will create the equivalent tree constructed from nested arrays.
142 Given a tree constructed from nested hashs, this Visitor will create the equivalent Tree::Simple heirarchy.
146 Given a Tree::Simple heirarchy, this Visitor will create the equivalent tree constructed from nested hashes.
/macosx-10.10.1/ksh-23/ksh/src/cmd/ksh93/
H A DMakefile31 SHOPT_ECHOPRINT == /* make echo equivalent to print */
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Support/
H A Dsystem_error.h38 virtual bool equivalent(int code, const error_condition& condition) const;
39 virtual bool equivalent(const error_code& code, int condition) const;
640 virtual bool equivalent(int _code, const error_condition& _condition) const;
641 virtual bool equivalent(const error_code& _code, int _condition) const;
796 return _x.category().equivalent(_x.value(), _y)
797 || _y.category().equivalent(_x, _y.value());
H A DFileSystem.h17 // category. However, they shall be equivalent to any error conditions listed
163 friend bool equivalent(file_status A, file_status B);
268 /// @returns errc::success if exists(to) && exists(from) && equivalent(to, from)
355 bool equivalent(file_status A, file_status B);
364 /// inode (or equivalent).
367 error_code equivalent(const Twine &A, const Twine &B, bool &result);
369 /// @brief Simpler version of equivalent for clients that don't need to
371 inline bool equivalent(const Twine &A, const Twine &B) { function in namespace:llvm::sys::fs
373 return !equivalent(A, B, result) && result;
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/pt/include/serial/
H A Dpexpression.inc210 There are a lot more equivalent encodings around that just
/macosx-10.10.1/llvmCore-3425.0.34/unittests/Support/
H A DPath.cpp189 EXPECT_FALSE(fs::equivalent(A, B));
210 ASSERT_NO_ERROR(fs::equivalent(Twine(TempPath), Twine(TempPath2), equal));
214 EXPECT_TRUE(fs::equivalent(A, B));
/macosx-10.10.1/CPANInternal-159.1/Crypt-SSLeay-0.64/eg/
H A Dnet-ssl-test50 These are equivalent:
/macosx-10.10.1/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/Plugin/
H A DDumper.pm132 characters E<lt>, E<gt> and E<amp> converted to their equivalent HTML
/macosx-10.10.1/zsh-61/zsh/Util/
H A Dhelpfiles11 # Any command claiming to be `same as <foo>' or `equivalent to <foo>'
133 if (/same\s*as\s*(\S+)/i || /equivalent\s*to\s*(\S+)/i) {
/macosx-10.10.1/llvmCore-3425.0.34/autoconf/m4/
H A Dltdl.m4112 # or its logical equivalent (e.g. shl_load for HP-UX < 11)
305 [Define if you have the libdl library or equivalent.])
311 [Define if you have the libdl library or equivalent.]) libltdl_cv_func_dlopen="yes"],[AC_CHECK_LIB([svld], [dlopen],
313 [Define if you have the libdl library or equivalent.])
/macosx-10.10.1/llvmCore-3425.0.34/projects/sample/autoconf/m4/
H A Dltdl.m4112 # or its logical equivalent (e.g. shl_load for HP-UX < 11)
305 [Define if you have the libdl library or equivalent.])
311 [Define if you have the libdl library or equivalent.]) libltdl_cv_func_dlopen="yes"],[AC_CHECK_LIB([svld], [dlopen],
313 [Define if you have the libdl library or equivalent.])
/macosx-10.10.1/awk-20/src/
H A DREADME60 equivalent), you must compile the pieces manually. We have
/macosx-10.10.1/CPANInternal-159.1/Log-Log4perl-1.40/lib/Log/Log4perl/Config/
H A DPropertyConfigurator.pm169 configuration is equivalent to the previous one:
/macosx-10.10.1/CPANInternal-159.1/Tree-Simple-VisitorFactory-0.10/lib/Tree/Simple/Visitor/
H A DToNestedArray.pm84 # this then creates the equivalent nested array tree:
110 Given a tree constructed from a Tree::Simple heirarchy, this Visitor will create the equivalent tree of nested arrays.
H A DToNestedHash.pm83 # this then creates the equivalent nested array tree:
96 Given a tree constructed from a Tree::Simple heirarchy, this Visitor will create the equivalent tree of nested hashes.
/macosx-10.10.1/ksh-23/ksh/lib/package/
H A Dpackage.mk674 note source level :MAKE: equivalent
684 note component level :MAKE: equivalent
719 note subcomponent level :MAKE: equivalent
811 note source level :MAKE: equivalent
822 note component level :MAKE: equivalent
1004 note subcomponent level :MAKE: equivalent
/macosx-10.10.1/ksh-23/ksh/src/cmd/INIT/
H A Dpackage.mk674 note source level :MAKE: equivalent
684 note component level :MAKE: equivalent
719 note subcomponent level :MAKE: equivalent
811 note source level :MAKE: equivalent
822 note component level :MAKE: equivalent
1004 note subcomponent level :MAKE: equivalent
/macosx-10.10.1/emacs-93/emacs/lisp/emacs-lisp/
H A Dlisp.el444 No argument is equivalent to zero: just insert characters
492 No argument is equivalent to zero: just insert `()' and leave point between.
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dflexwiki.vim96 " Eight spaces at the beginning of the line is equivalent to the leading tab.

Completed in 507 milliseconds

1234