HomeSort by relevance Sort by last modified time
    Searched refs:equivalent (Results 1 - 25 of 121) sorted by null

1 2 3 4 5

  /ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/syserr/syserr.errcat/syserr.errcat.virtuals/
equivalent_error_code_int.pass.cpp 14 // virtual bool equivalent(const error_code& code, int condition) const;
22 assert(e_cat.equivalent(std::error_code(5, e_cat), 5));
23 assert(!e_cat.equivalent(std::error_code(5, e_cat), 6));
equivalent_int_error_condition.pass.cpp 14 // virtual bool equivalent(int code, const error_condition& condition) const;
23 assert(e_cat.equivalent(5, e_cond));
24 assert(!e_cat.equivalent(6, e_cond));
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/futures/futures.errors/
equivalent_error_code_int.pass.cpp 14 // virtual bool equivalent(const error_code& code, int condition) const;
22 assert(e_cat.equivalent(std::error_code(5, e_cat), 5));
23 assert(!e_cat.equivalent(std::error_code(5, e_cat), 6));
equivalent_int_error_condition.pass.cpp 14 // virtual bool equivalent(int code, const error_condition& condition) const;
23 assert(e_cat.equivalent(5, e_cond));
24 assert(!e_cat.equivalent(6, e_cond));
  /external/clang/include/clang/Tooling/
FileMatchTrie.h 29 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'
  /external/guava/guava-testlib/src/com/google/common/testing/
EquivalenceTester.java 72 assertTrue("$ITEM must be equivalent to $RELATED", equivalence.equivalent(item, related));
81 !equivalence.equivalent(item, unrelated));
91 * Adds a group of objects that are supposed to be equivalent to each other
92 * and not equivalent to objects in any other equivalence group added to this
117 assertTrue(item + " must be inequivalent to null", !equivalence.equivalent(item, null));
118 assertTrue("null must be inequivalent to " + item, !equivalence.equivalent(null, item));
119 assertTrue(item + " must be equivalent to itself", equivalence.equivalent(item, item));
  /external/openfst/src/script/
equivalent.cc 19 #include <fst/script/equivalent.h>
24 bool Equivalent(const FstClass &fst1, const FstClass &fst2,
26 if (!ArcTypesMatch(fst1, fst2, "Equivalent")) return false;
31 Apply<Operation<EquivalentArgs> >("Equivalent", fst1.ArcType(),
37 REGISTER_FST_OPERATION(Equivalent, StdArc, EquivalentArgs);
38 REGISTER_FST_OPERATION(Equivalent, LogArc, EquivalentArgs);
39 REGISTER_FST_OPERATION(Equivalent, Log64Arc, EquivalentArgs);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/backward/
backward_warning.h 31 non-deprecated interface with equivalent functionality instead. For a \
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/backward/
backward_warning.h 36 non-deprecated interface with equivalent functionality instead. For a \
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/backward/
backward_warning.h 36 non-deprecated interface with equivalent functionality instead. For a \
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/backward/
backward_warning.h 31 non-deprecated interface with equivalent functionality instead. For a \
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/backward/
backward_warning.h 31 non-deprecated interface with equivalent functionality instead. For a \
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/backward/
backward_warning.h 31 non-deprecated interface with equivalent functionality instead. For a \
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/backward/
backward_warning.h 31 non-deprecated interface with equivalent functionality instead. For a \
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/backward/
backward_warning.h 36 non-deprecated interface with equivalent functionality instead. For a \
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/backward/
backward_warning.h 36 non-deprecated interface with equivalent functionality instead. For a \
  /external/chromium/net/data/proxy_resolver_v8_unittest/
international_domain_names.js 9 // the C++ end the bindings were passed the punycode equivalent of this
  /external/llvm/lib/Support/
system_error.cpp 35 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
  /external/clang/lib/Tooling/
FileMatchTrie.cpp 24 /// \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)) {
  /external/openfst/src/include/fst/script/
equivalent.h 22 #include <fst/equivalent.h>
32 void Equivalent(EquivalentArgs *args) {
36 args->retval = Equivalent(fst1, fst2, args->args.arg3);
39 bool Equivalent(const FstClass &fst1, const FstClass &fst2,
  /external/guava/guava/src/com/google/common/base/
Equivalence.java 29 * A strategy for determining whether two instances are considered equivalent. Examples of
48 * Returns {@code true} if the given objects are considered equivalent.
50 * <p>The {@code equivalent} method implements an equivalence relation on object references:
54 * equivalent(x, x)} returns {@code true}.
56 * equivalent(x, y) == equivalent(y, x)}.
58 * {@code equivalent(x, y)} returns {@code true} and {@code equivalent(y, z)} returns {@code
59 * true}, then {@code equivalent(x, z)} returns {@code true}.
61 * of {@code equivalent(x, y)} consistently return {@code true} or consistently return {@cod
65 public final boolean equivalent(@Nullable T a, @Nullable T b) { method in class:Equivalence
    [all...]
FunctionalEquivalence.java 51 return resultEquivalence.equivalent(function.apply(a), function.apply(b));
PairwiseEquivalence.java 42 if (!elementEquivalence.equivalent(iteratorA.next(), iteratorB.next())) {
  /external/openfst/src/bin/
fstequivalent.cc 20 // Two DFAs are equivalent iff their exit status is zero.
23 #include <fst/script/equivalent.h>
40 string usage = "Two DFAs are equivalent iff the exit status is zero.\n\n"
67 return s::Equivalent(*ifst1, *ifst2, FLAGS_delta) ? 0 : 2;
  /ndk/sources/cxx-stl/llvm-libc++/src/
system_error.cpp 33 error_category::equivalent(int code, const error_condition& condition) const _NOEXCEPT
39 error_category::equivalent(const error_code& code, int condition) const _NOEXCEPT

Completed in 999 milliseconds

1 2 3 4 5