Searched refs:Equals (Results 1 - 25 of 34) sorted by relevance

12

/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DThunk.h53 bool Equals(const VirtualAdjustment &Other) const { function in union:clang::ReturnAdjustment::VirtualAdjustment
59 return Equals(Zero);
73 return LHS.NonVirtual == RHS.NonVirtual && LHS.Virtual.Equals(RHS.Virtual);
120 bool Equals(const VirtualAdjustment &Other) const { function in union:clang::ThisAdjustment::VirtualAdjustment
126 return Equals(Zero);
139 return LHS.NonVirtual == RHS.NonVirtual && LHS.Virtual.Equals(RHS.Virtual);
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/src/
H A Dmsgfmt.cs65 if (filename.Equals("-")) {
H A Dmsgunfmt.cs94 if (!"".Equals(key)) {
191 if (filename.Equals("-")) {
/netbsd-current/external/public-domain/sqlite/dist/
H A DReplace.cs199 if (!matchingOnly || !String.Equals(
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DFoldingSet.h236 // Equals - Test if the profile for X would match ID, using TempID
240 static inline bool Equals(T &X, const FoldingSetNodeID &ID, unsigned IDHash,
268 static inline bool Equals(T &X, const FoldingSetNodeID &ID, unsigned IDHash,
374 DefaultFoldingSetTrait<T>::Equals(T &X, const FoldingSetNodeID &ID, function in class:llvm::DefaultFoldingSetTrait
388 DefaultContextualFoldingSetTrait<T, Ctx>::Equals(T &X, function in class:llvm::DefaultContextualFoldingSetTrait
511 return FoldingSetTrait<T>::Equals(*TN, ID, IDHash, TempID);
573 return ContextualFoldingSetTrait<T, Ctx>::Equals(*TN, ID, IDHash, TempID,
/netbsd-current/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-param-util.h114 virtual bool Equals(const ParamIteratorInterface& other) const = 0;
149 return impl_.get() == other.impl_.get() || impl_->Equals(*other.impl_);
238 bool Equals(const ParamIteratorInterface<T>& other) const override {
335 bool Equals(const ParamIteratorInterface<T>& other) const override {
803 bool Equals(const ParamIteratorInterface<ParamType>& other) const override {
/netbsd-current/external/gpl2/gettext/dist/gettext-runtime/intl-csharp/
H A Dintl.cs207 if (culture.Parent == null || culture.Equals(CultureInfo.InvariantCulture))
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DIdentifierResolver.cpp140 : Ctx->Equals(DCtx);
H A DSemaLookup.cpp609 getContextForScopeMatching(Decls[UniqueTagIndex])->Equals(
1341 for (; Ctx && !Ctx->Equals(OuterCtx); Ctx = Ctx->getLookupParent()) {
1468 for (; Ctx && !Ctx->Equals(OuterCtx); Ctx = Ctx->getLookupParent()) {
1990 if (!LastDC->Equals(DC))
4005 for (DeclContext *Ctx = Entity; Ctx && !Ctx->Equals(OuterCtx);
H A DSemaDecl.cpp3142 !Old->getDeclContext()->getRedeclContext()->Equals(
3192 if (NamedDC->Equals(SemaDC))
5642 if (Cur->Equals(DC)) {
6297 if (!OuterContext->Equals(PrevOuterContext))
7676 ParentDC && !ParentDC->Equals(OldDC);
15458 if (OldDC->Equals(NewDC))
15720 if (!ND->getDeclContext()->getRedeclContext()->Equals(
15789 DC->Equals(getStdNamespace())) {
15897 ->Equals(TD->getDeclContext()->getRedeclContext())) {
16011 ->Equals(PrevDec
[all...]
H A DSemaLambda.cpp97 VarToCapture->getDeclContext()->Equals(EnclosingDC))
H A DSemaExprMember.cpp220 !RepClass->Equals(ContextClass) && RepClass->Encloses(ContextClass))
H A DSemaDeclCXX.cpp3477 TD->getDeclContext()->getRedeclContext()->Equals(
4126 return Member->getDeclContext()->getRedeclContext()->Equals(ClassDecl);
10778 if (!CurContext->getRedeclContext()->Equals(
12767 if (AD->getNamespace()->Equals(getNamespaceDecl(ND))) {
16649 if (DC->Equals(CurContext))
H A DSemaTemplate.cpp1834 (OutermostContext->Equals(PrevDecl->getDeclContext()) ||
1868 PrevClassTemplate->getDeclContext()->getRedeclContext()->Equals(
8060 : DC->Equals(SpecializedContext))) {
/netbsd-current/external/apache2/llvm/dist/clang/lib/AST/
H A DCommentParser.cpp456 Token Equals = Tok; local
461 << SourceRange(Equals.getLocation());
472 Equals.getLocation(),
H A DCXXInheritance.cpp121 if (CurContext->Equals(this))
H A DDeclBase.cpp1800 // For non-file contexts, this is equivalent to Equals.
1802 return O->Equals(this);
1805 if (O->Equals(this))
H A DDecl.cpp100 return !getLexicalDeclContext()->Equals(getDeclContext());
1758 if (!this->getDeclContext()->getRedeclContext()->Equals(
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
H A DMicrosoftDemangleNodes.h124 Equals, // ?8 # operator== member in class:llvm::ms_demangle::IntrinsicFunctionKind
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Demangle/
H A DMicrosoftDemangleNodes.cpp261 OUTPUT_ENUM_CLASS_VALUE(IntrinsicFunctionKind, Equals, "operator==");
H A DMicrosoftDemangle.cpp546 IFK::Equals, // ?8 # operator==
/netbsd-current/external/apache2/llvm/dist/clang/lib/Parse/
H A DParsePragma.cpp1474 Equals, member in class:__anon720::MissingAttributeSubjectRulesRecoveryPoint
1488 return MissingAttributeSubjectRulesRecoveryPoint::Equals;
1510 if (Point <= MissingAttributeSubjectRulesRecoveryPoint::Equals &&
1511 EndPoint > MissingAttributeSubjectRulesRecoveryPoint::Equals)
1694 MissingAttributeSubjectRulesRecoveryPoint::Equals, *this)
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DScalarEvolution.h172 static bool Equals(const SCEV &X, const FoldingSetNodeID &ID, unsigned IDHash, function in struct:llvm::FoldingSetTrait
254 static bool Equals(const SCEVPredicate &X, const FoldingSetNodeID &ID, function in struct:llvm::FoldingSetTrait
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDeclBase.h1984 bool Equals(const DeclContext *DC) const { function in class:clang::DeclContext
2033 /// isn't a namespace, this is equivalent to Equals().
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h121 static bool Equals(const SDVTListNode &X, const FoldingSetNodeID &ID, function in struct:llvm::FoldingSetTrait

Completed in 769 milliseconds

12