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

/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Tooling/
H A DFileMatchTrie.h29 virtual bool equivalent(StringRef FileA, StringRef FileB) const = 0;
51 /// \c llvm::sys::fs::equivalent() (injected as \c PathComparator). There might
53 /// equivalent to the input file. Three cases are distinguished:
54 /// 0 equivalent files: Continue with the next suffix length.
55 /// 1 equivalent file: Best match found, return it.
56 /// >1 equivalent files: Match is ambiguous, return error.
73 /// Returns file name stored in this trie that is equivalent to 'FileName'
/freebsd-9.3-release/contrib/llvm/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
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Tooling/
H A DFileMatchTrie.cpp24 /// \brief Default \c PathComparator using \c llvm::sys::fs::equivalent().
27 virtual bool equivalent(StringRef FileA, StringRef FileB) const { function in struct:clang::tooling::DefaultPathComparator
28 return FileA == FileB || llvm::sys::fs::equivalent(FileA, FileB);
88 /// whether the stored path is equivalent to 'p'. If yes, the best match is
94 /// equivalent, continue with the parent node as if 'n' didn't exist. If one
95 /// is equivalent, the best match is found. Otherwise, report and ambigiuity
102 if (Comparator.equivalent(StringRef(Path), FileName))
121 if (Comparator.equivalent(AllChildren[i], FileName)) {
/freebsd-9.3-release/contrib/libarchive/cpio/
H A Dcmdline.c62 int equivalent; /* Equivalent short option. */ member in struct:option
264 return (match->equivalent);
/freebsd-9.3-release/contrib/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
381 return (match->equivalent);
/freebsd-9.3-release/contrib/libc++/src/
H A Dsystem_error.cpp34 error_category::equivalent(int code, const error_condition& condition) const _NOEXCEPT
40 error_category::equivalent(const error_code& code, int condition) const _NOEXCEPT
/freebsd-9.3-release/contrib/nvi/build/ExtUtils/
H A DEmbed.pm296 B<$filename> is equivalent to the B<-o> option.
298 B<$std> is boolean, equivalent to the B<-std> option.
371 B<$std> is boolean, equivalent to the B<-std> option.
373 B<[@modules]> is equivalent to additional arguments found before the B<--> token.
375 B<[@link_args]> is equivalent to arguments found after the B<--> token.
377 B<$path> is equivalent to the B<-I> option.
/freebsd-9.3-release/contrib/llvm/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
167 friend bool equivalent(file_status A, file_status B);
309 /// @returns errc::success if exists(to) && exists(from) && equivalent(to, from)
422 bool equivalent(file_status A, file_status B);
431 /// inode (or equivalent).
434 error_code equivalent(const Twine &A, const Twine &B, bool &result);
436 /// @brief Simpler version of equivalent for clients that don't need to
438 inline bool equivalent(const Twine &A, const Twine &B) { function in namespace:llvm::sys::fs
440 return !equivalent(A, B, result) && result;
/freebsd-9.3-release/contrib/bmake/mk/
H A Dsys.clean-env.mk93 # We are going to set this to the equivalent of the shell's
/freebsd-9.3-release/contrib/one-true-awk/
H A DREADME60 equivalent), you must compile the pieces manually. We have
/freebsd-9.3-release/contrib/gcc/config/i386/
H A Dsol2-c1.asm143 ! An inline equivalent of _exit, as specified in Figure 3-26 of the ABI.
H A Dsol2-gc1.asm156 ! An inline equivalent of _exit, as specified in Figure 3-26 of the ABI.
/freebsd-9.3-release/contrib/llvm/lib/Support/Windows/
H A DPath.inc481 bool equivalent(file_status A, file_status B) {
492 error_code equivalent(const Twine &A, const Twine &B, bool &result) {
496 result = equivalent(fsA, fsB);
/freebsd-9.3-release/contrib/gcc/
H A Dgcc.c1066 /* The equivalent short option. */
1067 const char *const equivalent;
1071 j => join argument to equivalent, making one word.
1334 newv[newindex++] = concat (option_map[j].equivalent, arg,
1338 newv[newindex++] = option_map[j].equivalent;
1342 newv[newindex++] = option_map[j].equivalent;
1063 const char *const equivalent; member in struct:option_map
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DType.h2350 /// should not be: two lexically equivalent variable array types could mean
3354 /// generally it is not canonically equivalent to the attributed type.
3355 /// The "equivalent type" is the minimally-desugared type which the
3356 /// type is canonically equivalent to.
3361 /// - the equivalent type is VectorType(16, int32_t)
3411 QualType modified, QualType equivalent)
3416 ModifiedType(modified), EquivalentType(equivalent) {
3440 QualType modified, QualType equivalent) {
3443 ID.AddPointer(equivalent.getAsOpaquePtr());
3826 /// equivalent fo
3410 AttributedType(QualType canon, Kind attrKind, QualType modified, QualType equivalent) argument
3439 Profile(llvm::FoldingSetNodeID &ID, Kind attrKind, QualType modified, QualType equivalent) argument
[all...]
/freebsd-9.3-release/contrib/ipfilter/
H A DHISTORY420 Use FI_ICMPERR flag rather than try to compute its equivalent all the time
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Driver/
H A DDriver.cpp1719 llvm::sys::fs::equivalent(BaseInput, Result.c_str(), SameFile);
H A DTools.cpp2804 // (-ansi is equivalent to -std=c89 or -std=c++98).
7038 !llvm::sys::fs::equivalent(Twine(FilePath), ClangProgramPath))
/freebsd-9.3-release/contrib/amd/doc/
H A Dtexinfo.tex447 % is roughly equivalent to
628 % equivalent to this in @example-like environments. Otherwise, a space
1297 % their "best" equivalent, based on the @documentencoding. Right
2375 % @itemize with no arg is equivalent to @itemize @bullet.
5208 % Remember that \dosubind{fn}{foo}{} is equivalent to \doind{fn}{foo}.
/freebsd-9.3-release/contrib/gcc/doc/include/
H A Dtexinfo.tex456 % is roughly equivalent to
637 % equivalent to this in @example-like environments. Otherwise, a space
1393 % their "best" equivalent, based on the @documentencoding. Right
2549 % @itemize with no arg is equivalent to @itemize @bullet.
5404 % Remember that \dosubind{fn}{foo}{} is equivalent to \doind{fn}{foo}.
/freebsd-9.3-release/contrib/groff/doc/
H A Dtexinfo.tex448 % is roughly equivalent to
629 % equivalent to this in @example-like environments. Otherwise, a space
1298 % their "best" equivalent, based on the @documentencoding. Right
2448 % @itemize with no arg is equivalent to @itemize @bullet.
5280 % Remember that \dosubind{fn}{foo}{} is equivalent to \doind{fn}{foo}.

Completed in 442 milliseconds