Searched refs:Eq (Results 1 - 25 of 31) sorted by relevance

12

/netbsd-current/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/
H A Dgtest-matchers.cc45 Matcher<const std::string&>::Matcher(const std::string& s) { *this = Eq(s); }
50 *this = Eq(std::string(s));
55 Matcher<std::string>::Matcher(const std::string& s) { *this = Eq(s); }
59 Matcher<std::string>::Matcher(const char* s) { *this = Eq(std::string(s)); }
65 *this = Eq(s);
71 *this = Eq(std::string(s));
77 *this = Eq(std::string(s));
82 Matcher<absl::string_view>::Matcher(const std::string& s) { *this = Eq(s); }
87 *this = Eq(std::string(s));
93 *this = Eq(st
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
H A DGtestMatchers.h25 Eq, member in class:clang::ast_matchers::GtestCmp
/netbsd-current/external/apache2/llvm/dist/clang/lib/ASTMatchers/
H A DGtestMatchers.cpp26 case GtestCmp::Eq:
46 case GtestCmp::Eq:
64 case GtestCmp::Eq:
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/
H A Dfdr_log_writer_test.cc34 using ::testing::Eq;
54 Eq(sizeof(MetadataRecord) * 3));
95 Eq(sizeof(MetadataRecord) * 3));
110 Eq(sizeof(MetadataRecord) * 3));
142 Eq(sizeof(MetadataRecord) * 3));
H A Dfdr_controller_test.cc39 using ::testing::Eq;
161 TSCIs(Eq(1uL))),
185 TSCIs(Eq(1uL))),
327 ASSERT_THAT(BQ->finalize(), Eq(BufferQueue::ErrorCode::Ok));
344 ASSERT_THAT(BQ->finalize(), Eq(BufferQueue::ErrorCode::Ok));
362 ASSERT_THAT(BQ->finalize(), Eq(BufferQueue::ErrorCode::Ok));
405 ASSERT_THAT(BQ->finalize(), Eq(BufferQueue::ErrorCode::Ok));
408 Eq(BufferQueue::ErrorCode::Ok));
H A Dbuffer_queue_test.cc27 using ::testing::Eq;
67 EXPECT_THAT(Buffers.getBuffer(Known), Eq(BufferQueue::ErrorCode::Ok));
69 Eq(BufferQueue::ErrorCode::UnrecognizedBuffer));
70 EXPECT_THAT(Buffers.releaseBuffer(Known), Eq(BufferQueue::ErrorCode::Ok));
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonCommonGEP.cpp490 static bool node_eq(GepNode *N1, GepNode *N2, NodePairSet &Eq, argument
498 NodePairSet::iterator FEq = Eq.find(NP);
499 if (FEq != Eq.end())
518 if (Root1 || node_eq(N1->Parent, N2->Parent, Eq, Ne)) {
519 Eq.insert(P);
542 NodePairSet Eq, Ne; // Caches. local
557 if (node_eq(N, *NJ, Eq, Ne))
572 for (NodePairSet::iterator I = Eq.begin(), E = Eq.end(); I != E; ++I)
/netbsd-current/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest-matchers.h72 // to write "v" instead of "Eq(v)" where a Matcher is expected, which
344 // EXPECT_CALL(foo, Bar(5)) instead of EXPECT_CALL(foo, Bar(Eq(5))) sometimes
349 // instead of Eq(str) and "foo" instead of Eq("foo") when a std::string
360 // Allows the user to write str instead of Eq(str) sometimes, where
364 // Allows the user to write "foo" instead of Eq("foo") sometimes.
379 // Allows the user to write str instead of Eq(str) sometimes, where
383 // Allows the user to write "foo" instead of Eq("foo") sometimes.
389 // instead of Eq(str) and "foo" instead of Eq("fo
695 inline internal::EqMatcher<T> Eq(T x) { return internal::EqMatcher<T>(x); } function in namespace:testing
[all...]
/netbsd-current/external/bsd/ntp/dist/sntp/ag-tpl/0-old/
H A Dmdoc2texi37 Mdoc::def_macro( '.Eq', sub {
134 for (qw(Aq Bq Brq Pq Qq Ql Sq Dq Eq Ar Fl Ic Pa Op Cm Li Fx Ux Va)) {
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/asan/
H A Dasan_allocator.h64 bool Eq(const AsanChunkView &c) const { return chunk_ == c.chunk_; } function in class:__asan::AsanChunkView
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/asan/
H A Dasan_allocator.h62 bool Eq(const AsanChunkView &c) const { return chunk_ == c.chunk_; } function in class:__asan::AsanChunkView
/netbsd-current/external/apache2/llvm/dist/libcxx/benchmarks/
H A Dstring.bench.cpp395 enum class Relation { Eq, Less, Compare }; member in class:Relation
397 static constexpr const char* Names[] = {"Eq", "Less", "Compare"};
409 case Relation::Eq:
423 // Eq is commutative, so skip half the matrix.
424 if (Rel() == Relation::Eq && LHLength() > RHLength())
453 case Relation::Eq:
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/asan/
H A Dasan_allocator.h64 bool Eq(const AsanChunkView &c) const { return chunk_ == c.chunk_; } function in class:__asan::AsanChunkView
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h356 EqualsComparator Eq; local
357 return Eq.compare(E1, E2);
/netbsd-current/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DItaniumCXXABI.cpp1117 llvm::ICmpInst::Predicate Eq; local
1120 Eq = llvm::ICmpInst::ICMP_NE;
1124 Eq = llvm::ICmpInst::ICMP_EQ;
1132 return Builder.CreateICmp(Eq, L, R);
1149 llvm::Value *PtrEq = Builder.CreateICmp(Eq, LPtr, RPtr, "cmp.ptr");
1155 llvm::Value *EqZero = Builder.CreateICmp(Eq, LPtr, Zero, "cmp.ptr.null");
1161 llvm::Value *AdjEq = Builder.CreateICmp(Eq, LAdj, RAdj, "cmp.adj");
1171 llvm::Value *OrAdjAnd1EqZero = Builder.CreateICmp(Eq, OrAdjAnd1, Zero,
H A DMicrosoftCXXABI.cpp2897 llvm::ICmpInst::Predicate Eq; local
2900 Eq = llvm::ICmpInst::ICMP_NE;
2904 Eq = llvm::ICmpInst::ICMP_EQ;
2915 return Builder.CreateICmp(Eq, L, R);
2920 llvm::Value *Cmp0 = Builder.CreateICmp(Eq, L0, R0, "memptr.cmp.first");
2928 llvm::Value *Cmp = Builder.CreateICmp(Eq, LF, RF, "memptr.cmp.rest");
2939 llvm::Value *IsZero = Builder.CreateICmp(Eq, L0, Zero, "memptr.cmp.iszero");
/netbsd-current/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dcppmangle.d54 enum CppOperator { Cast, Assign, Eq, Index, Call, Unary, Binary, OpAssign, Unknown }
1213 case CppOperator.Eq:
/netbsd-current/external/mpl/bind/dist/bin/tests/system/dnstap/
H A Dtests.sh547 $DNSTAPREAD ns3/dnstap.out.save | grep -Eq "CQ [0-9:.]+ -> 10.53.0.3:${PORT} UDP" || ret=1
/netbsd-current/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/
H A Dgmock-matchers.h91 // to write "v" instead of "Eq(v)" where a Matcher is expected, which
125 // Matcher but is not one yet; for example, Eq(value)) or a value (for
175 // polymorphic matcher Eq(value) in this case.
178 // only fall back to the polymorphic Eq() matcher afterwards because the
183 // We don't define this method inline as we need the declaration of Eq().
907 // The matcher defined here is polymorphic (for example, Eq() can be
1279 // (e.g. Eq(5)).
1286 // polymorphic, e.g. Eq(5).
1521 // against y. The former implements "Eq", the latter "Near". At present, there
2069 // support ==. This matcher is like Eq(), bu
3941 inline internal::Eq2Matcher Eq() { return internal::Eq2Matcher(); } function in namespace:testing
[all...]
/netbsd-current/external/mpl/bind/dist/bin/tests/system/resolver/
H A Dtests.sh993 if grep -Eq "dns_adb_createfind: started (A|AAAA) fetch for name ns21.fake.redirect.com" ns1/named.run; then
/netbsd-current/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/
H A Dllvm.ml145 | Eq Constructor in type:Icmp/t
/netbsd-current/external/gpl3/binutils/dist/opcodes/
H A Di386-dis.c432 #define Eq { OP_E, q_mode }
4469 { "senduipi", { Eq }, 0 },
356 #define Eq macro
/netbsd-current/external/gpl3/gdb/dist/opcodes/
H A Di386-dis.c360 #define Eq { OP_E, q_mode } macro
3978 { "kmovq", { Eq, MaskG }, 0 },
4462 { "senduipi", { Eq }, 0 },
/netbsd-current/external/gpl3/binutils.old/dist/opcodes/
H A Di386-dis.c356 #define Eq { OP_E, q_mode } macro
3889 { "kmovq", { Eq, MaskG }, 0 },
4306 { "senduipi", { Eq }, 0 },
/netbsd-current/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriter.cpp4807 auto Eq = [](const ModuleInfo &A, const ModuleInfo &B) {
4813 Imports.erase(std::unique(Imports.begin(), Imports.end(), Eq),

Completed in 877 milliseconds

12