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

1 2

  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaCXXScopeSpec.cpp 80 if (NNS->isDependent()) {
171 return SS.getScopeRep()->isDependent();
181 assert(NNS->isDependent() && "Only dependent nested-name-specifier allowed");
391 bool isDependent = false;
397 isDependent = ObjectType->isDependentType();
402 isDependent = isDependentScopeSpecifier(SS);
418 } else if (isDependent) {
498 bool isDependent = false;
506 isDependent = ObjectType->isDependentType();
511 isDependent = isDependentScopeSpecifier(SS)
    [all...]
SemaAccess.cpp 139 bool isDependent() const { return Dependent; }
426 if (EC.isDependent()) {
481 if (!EC.isDependent())
514 if (EC.isDependent() && MightInstantiateTo(S, *I, Friend))
544 if (EC.isDependent() && MightInstantiateTo(S, FTD, Friend))
765 if (EC.isDependent() && MightInstantiateTo(ECRecord, NamingClass))
1409 assert(EC.isDependent() && "delaying non-dependent access");
SemaConcept.cpp 605 if (!Req->isDependent() && !Req->isSatisfied()) {
1053 Requirement(IsSimple ? RK_Simple : RK_Compound, Req.isDependent(),
SemaTemplateInstantiate.cpp 1157 if (!TransReq->isDependent() && !TransReq->isSatisfied())
1906 if (!Req->isDependent() && !AlwaysRebuild())
1933 if (!Req->isDependent() && !AlwaysRebuild())
1999 if (!Req->isDependent() && !AlwaysRebuild())
SemaTemplate.cpp 389 bool IsDependent = false;
395 IsDependent = !LookupCtx && ObjectType->isDependentType();
396 assert((IsDependent || !ObjectType->isIncompleteType() ||
423 IsDependent = !LookupCtx && isDependentScopeSpecifier(SS);
447 IsDependent |= Found.wasNotFoundInCurrentInstantiation();
471 IsDependent |= Found.wasNotFoundInCurrentInstantiation();
492 if (AllFunctions || (Found.empty() && !IsDependent)) {
504 if (Found.empty() && !IsDependent && AllowTypoCorrection) {
543 if (IsDependent) {
3753 } else if (Name.isDependent() ||
    [all...]
SemaCodeComplete.cpp 4797 bool IsDependent = BaseType->isDependentType();
4798 if (!IsDependent) {
4801 IsDependent = Ctx->isDependentContext();
4806 if (IsDependent)
4990 if (!Req->isDependent())
6052 if (NNS != nullptr && SS.isValid() && !NNS->isDependent()) {
6066 if (!Results.empty() && NNS->isDependent())
SemaExprCXX.cpp 249 bool IsDependent = false;
255 IsDependent |= SearchType->isDependentType();
269 IsDependent |= isDependentScopeSpecifier(LookupSS);
354 if (IsDependent) {
8654 if (E->isInstantiationDependent() || ReturnTypeRequirement.isDependent())
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ExprConcepts.h 170 Requirement(RequirementKind Kind, bool IsDependent,
172 Kind(Kind), Dependent(IsDependent),
190 void setDependent(bool IsDependent) { Dependent = IsDependent; }
191 bool isDependent() const { return Dependent; }
293 bool isDependent() const {
NestedNameSpecifier.h 208 bool isDependent() const;
TemplateName.h 302 bool isDependent() const;
TemplateBase.h 255 bool isDependent() const;
  /src/external/apache2/llvm/dist/clang/lib/AST/
ExprConcepts.cpp 163 Dependent |= R->isDependent();
TemplateName.cpp 201 // it without the isDependent() checking.
211 bool TemplateName::isDependent() const {
NestedNameSpecifier.cpp 62 assert((!Prefix || Prefix->isDependent()) && "Prefix must be dependent");
234 bool NestedNameSpecifier::isDependent() const {
TemplateBase.cpp 236 bool TemplateArgument::isDependent() const {
Type.cpp 2884 assert((!NNS || NNS->isDependent()) &&
3617 if (Arg.isDependent())
4410 bool IsDependent, ConceptDecl *CD,
4414 ID.AddBoolean(IsDependent);
ASTContext.cpp 4912 assert((!NNS || NNS->isDependent()) &&
5517 bool IsDependent, bool IsPack,
5520 assert((!IsPack || IsDependent) && "only use IsPack for a dependent pack");
5522 !TypeConstraintConcept && !IsDependent)
5528 AutoType::Profile(ID, *this, DeducedType, Keyword, IsDependent,
5538 (IsDependent ? TypeDependence::DependentInstantiation
5552 TemplateName Template, QualType DeducedType, bool IsDependent) const {
5557 IsDependent);
5563 DeducedTemplateSpecializationType(Template, DeducedType, IsDependent);
8443 assert((!NNS || NNS->isDependent()) &
    [all...]
Expr.cpp 1612 if (QualifierLoc && QualifierLoc.getNestedNameSpecifier()->isDependent())
ItaniumMangle.cpp 5263 if (!A.isInstantiationDependent() || A.isDependent())
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
LoopAccessAnalysis.h 319 Dependence::DepType isDependent(const MemAccessInfo &A, unsigned AIdx,
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonInstrInfo.h 353 bool isDependent(const MachineInstr &ProdMI,
HexagonInstrInfo.cpp 2116 bool HexagonInstrInfo::isDependent(const MachineInstr &ProdMI,
3099 if (!isDependent(ProdMI, ConsMI))
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
LoopAccessAnalysis.cpp 1453 MemoryDepChecker::isDependent(const MemAccessInfo &A, unsigned AIdx,
1691 isDependent(*A.first, A.second, *B.first, B.second, Strides);
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseTentative.cpp 1506 if (SS.getScopeRep() && SS.getScopeRep()->isDependent()) {
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTWriterStmt.cpp 502 if (!NestedReq->isDependent())

Completed in 93 milliseconds

1 2