HomeSort by: relevance | last modified time | path
    Searched refs:equivalent (Results 1 - 25 of 108) sorted by relevancy

1 2 3 4 5

  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/
FileMatchTrie.h 29 virtual bool equivalent(StringRef FileA, StringRef FileB) const = 0;
50 /// \c llvm::sys::fs::equivalent() (injected as \c PathComparator). There might
52 /// equivalent to the input file. Three cases are distinguished:
53 /// 0 equivalent files: Continue with the next suffix length.
54 /// 1 equivalent file: Best match found, return it.
55 /// >1 equivalent files: Match is ambiguous, return error.
72 /// Returns file name stored in this trie that is equivalent to 'FileName'
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/backward/
backward_warning.h 35 non-deprecated interface with equivalent functionality instead. For a \
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/backward/
backward_warning.h 35 non-deprecated interface with equivalent functionality instead. For a \
  /src/external/apache2/llvm/dist/clang/lib/Tooling/
FileMatchTrie.cpp 27 /// Default \c PathComparator using \c llvm::sys::fs::equivalent().
29 bool equivalent(StringRef FileA, StringRef FileB) const override {
30 return FileA == FileB || llvm::sys::fs::equivalent(FileA, FileB);
95 /// whether the stored path is equivalent to 'p'. If yes, the best match is
101 /// equivalent, continue with the parent node as if 'n' didn't exist. If one
102 /// is equivalent, the best match is found. Otherwise, report and ambigiuity
114 Comparator.equivalent(StringRef(Path), FileName))
140 if (Comparator.equivalent(Child, FileName)) {
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
compatibility-c++0x.cc 160 equivalent(int __i, const error_condition& __cond) const noexcept;
163 equivalent(const error_code& __code, int __i) const noexcept;
243 error_category::equivalent(int __i,
248 error_category::equivalent(const error_code& __code, int __i) const noexcept
system_error.cc 141 equivalent(int i, const std::error_condition& cond) const noexcept final
581 equivalent(int i, const std::error_condition& cond) const noexcept final
617 error_category::equivalent(int __i,
622 error_category::equivalent(const error_code& __code, int __i) const noexcept
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
compatibility-c++0x.cc 160 equivalent(int __i, const error_condition& __cond) const noexcept;
163 equivalent(const error_code& __code, int __i) const noexcept;
243 error_category::equivalent(int __i,
248 error_category::equivalent(const error_code& __code, int __i) const noexcept
system_error.cc 77 equivalent(int i, const std::error_condition& cond) const noexcept final
519 equivalent(int i, const std::error_condition& cond) const noexcept final
555 error_category::equivalent(int __i,
560 error_category::equivalent(const error_code& __code, int __i) const noexcept
  /src/external/apache2/llvm/dist/libcxx/src/
system_error.cpp 47 error_category::equivalent(int code, const error_condition& condition) const noexcept
53 error_category::equivalent(const error_code& code, int condition) const noexcept
  /src/external/bsd/libarchive/dist/cat/
cmdline.c 35 * The symbolic names for options that lack a short equivalent are
44 int equivalent; /* Equivalent short option. */ member in struct:bsdcat_option
266 return (match->equivalent);
  /src/external/public-domain/sqlite/sqlite2mdoc/
README.md 7 These will be roughly equivalent to the [C-language Interface
  /src/external/apache2/llvm/dist/llvm/lib/Support/
Process.cpp 56 if (any_of(IgnoreList, [&](StringRef S) { return fs::equivalent(S, Dir); }))
  /src/external/bsd/nvi/dist/dist/ExtUtils/
Embed.pm 296 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.
  /src/external/bsd/libarchive/dist/cpio/
cmdline.c 42 int equivalent; /* Equivalent short option. */ member in struct:option
262 return (match->equivalent);
  /src/external/bsd/libarchive/dist/tar/
cmdline.c 36 * The symbolic names for options that lack a short equivalent are
45 int equivalent; /* Equivalent short option. */ member in struct:bsdtar_option
406 return (match->equivalent);
  /src/usr.bin/make/unit-tests/
cond-undef-lint.mk 61 # nested variables into empty strings, as an equivalent to the :U modifier.
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
aliasthis.d 212 if (att && tb.equivalent(att))
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
FileSystem.h 16 // category. However, they shall be equivalent to any error conditions listed
227 friend bool equivalent(file_status A, file_status B);
369 /// Remove path. Equivalent to POSIX remove().
490 bool equivalent(file_status A, file_status B);
499 /// inode (or equivalent).
502 std::error_code equivalent(const Twine &A, const Twine &B, bool &result);
504 /// Simpler version of equivalent for clients that don't need to
506 inline bool equivalent(const Twine &A, const Twine &B) { function in namespace:llvm::sys::fs
508 return !equivalent(A, B, result) && result;
1005 /// of bytes actually read. On Unix, this is equivalent to `return ::read(FD
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
fs_ops.h 120 equivalent(const path& __p1, const path& __p2);
124 equivalent(const path& __p1, const path& __p2, error_code& __ec) noexcept;
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/bits/
fs_ops.h 128 equivalent(const path& __p1, const path& __p2);
132 equivalent(const path& __p1, const path& __p2, error_code& __ec) noexcept;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
fs_ops.h 120 equivalent(const path& __p1, const path& __p2);
124 equivalent(const path& __p1, const path& __p2, error_code& __ec) noexcept;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/bits/
fs_ops.h 128 equivalent(const path& __p1, const path& __p2);
132 equivalent(const path& __p1, const path& __p2, error_code& __ec) noexcept;
  /src/external/gpl3/gcc/dist/libgcc/config/mmix/
crti.S 23 % This is the crt0 equivalent for mmix-knuth-mmixware, for setting up
  /src/external/gpl3/gcc.old/dist/libgcc/config/mmix/
crti.S 23 % This is the crt0 equivalent for mmix-knuth-mmixware, for setting up
  /src/crypto/external/apache2/openssl/dist/util/perl/OpenSSL/
Test.pm 868 C<ok_nofips> is equivalent to using C<ok> when the environment variable
869 C<FIPS_MODE> is undefined, otherwise it is equivalent to C<not ok>. This can be
880 C<is_nofips> is equivalent to using C<is> when the environment variable
881 C<FIPS_MODE> is undefined, otherwise it is equivalent to C<isnt>. This can be
892 C<isnt_nofips> is equivalent to using C<isnt> when the environment variable
893 C<FIPS_MODE> is undefined, otherwise it is equivalent to C<is>. This can be

Completed in 23 milliseconds

1 2 3 4 5