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

12

/freebsd-10-stable/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-10-stable/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-10-stable/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-10-stable/contrib/libc++/src/
H A Dsystem_error.cpp35 error_category::equivalent(int code, const error_condition& condition) const _NOEXCEPT
41 error_category::equivalent(const error_code& code, int condition) const _NOEXCEPT
/freebsd-10-stable/contrib/libarchive/cat/
H A Dcmdline.c54 * The symbolic names for options that lack a short equivalent are
63 int equivalent; /* Equivalent short option. */ member in struct:bsdcat_option
279 return (match->equivalent);
/freebsd-10-stable/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-10-stable/contrib/libarchive/cpio/
H A Dcmdline.c62 int equivalent; /* Equivalent short option. */ member in struct:option
274 return (match->equivalent);
/freebsd-10-stable/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:bsdtar_option
413 return (match->equivalent);
/freebsd-10-stable/contrib/one-true-awk/
H A DREADME60 equivalent), you must compile the pieces manually. We have
/freebsd-10-stable/contrib/bmake/mk/
H A Dsys.clean-env.mk93 # We are going to set this to the equivalent of the shell's
H A Ddirdeps.mk211 # seriously? better have jot(1) or equivalent to produce suitable sequence
/freebsd-10-stable/contrib/ntp/ntpdc/
H A Dntpdc-opts.def71 their state. This is equivalent to the 'listpeers' interactive command.
92 of their state. This is equivalent to the 'peers' interactive command.
103 of their state. This is equivalent to the 'dmpeers' interactive command.
/freebsd-10-stable/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-10-stable/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-10-stable/contrib/subversion/subversion/libsvn_wc/
H A Dwc-checks.sql95 /* All ACTUAL nodes must have an equivalent NODE in NODES
H A Dwc-metadata.sql1003 * functionally equivalent) statement using a 'JOIN'. WCs that were created
/freebsd-10-stable/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-10-stable/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-10-stable/contrib/llvm/tools/clang/lib/Driver/
H A DDriver.cpp1719 llvm::sys::fs::equivalent(BaseInput, Result.c_str(), SameFile);
H A DTools.cpp2805 // (-ansi is equivalent to -std=c89 or -std=c++98).
7039 !llvm::sys::fs::equivalent(Twine(FilePath), ClangProgramPath))
/freebsd-10-stable/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-10-stable/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}.
/freebsd-10-stable/contrib/amd/doc/
H A Dtexinfo.tex481 % is roughly equivalent to
583 % equivalent to this in @example-like environments. Otherwise, a space
1348 % their "best" equivalent, based on the @documentencoding. Too
3650 % @itemize with no arg is equivalent to @itemize @bullet.
6920 % Remember that \dosubind{fn}{foo}{} is equivalent to \doind{fn}{foo}.
9982 % which is the decimal equivalent of "715c (class 7, e.g., use \fam;

Completed in 684 milliseconds

12