HomeSort by: relevance | last modified time | path
    Searched defs:Primary (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Frontend/
ChainedDiagnosticConsumer.h 20 /// should be the "primary" client, and will be used for computing whether the
25 DiagnosticConsumer *Primary;
29 ChainedDiagnosticConsumer(std::unique_ptr<DiagnosticConsumer> Primary,
31 : OwningPrimary(std::move(Primary)), Primary(OwningPrimary.get()),
34 /// Construct without taking ownership of \c Primary.
35 ChainedDiagnosticConsumer(DiagnosticConsumer *Primary,
37 : Primary(Primary), Secondary(std::move(Secondary)) {}
41 Primary->BeginSourceFile(LO, PP)
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclLookups.h 76 DeclContext *Primary = const_cast<DeclContext*>(this)->getPrimaryContext();
77 if (Primary->hasExternalVisibleStorage())
78 getParentASTContext().getExternalSource()->completeVisibleDeclsMap(Primary);
79 if (StoredDeclsMap *Map = Primary->buildLookup())
90 DeclContext *Primary = const_cast<DeclContext*>(this)->getPrimaryContext();
92 Primary->loadLazyLocalLexicalLookups();
93 if (StoredDeclsMap *Map = Primary->getLookupPtr())
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTImporterLookupTable.cpp 153 StringRef Primary = DC->getPrimaryContext() ? " primary" : "";
154 llvm::errs() << "== DC:" << cast<Decl>(DC) << Primary << "\n";
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaTemplateDeduction.cpp 5534 ClassTemplateDecl *Primary = Spec->getSpecializedTemplate();
5535 QualType PrimaryT = Primary->getInjectedClassNameSpecialization();
5537 if (!isAtLeastAsSpecializedAs(*this, PartialT, PrimaryT, Primary, Info))
5543 Primary->getAssociatedConstraints(PrimaryAC);
5546 if (IsAtLeastAsConstrained(Spec, SpecAC, Primary, PrimaryAC,
5551 if (IsAtLeastAsConstrained(Primary, PrimaryAC, Spec, SpecAC,
5598 TemplateDecl *Primary = Spec->getSpecializedTemplate();
5602 Context.getInjectedTemplateArgs(Primary->getTemplateParameters(),
5606 Context.getCanonicalTemplateName(TemplateName(Primary));
5612 if (!isAtLeastAsSpecializedAs(*this, PartialT, PrimaryT, Primary, Info)
    [all...]
SemaTemplate.cpp 2141 CXXRecordDecl *Primary = Template->getTemplatedDecl();
2145 QualType DeducedType = SemaRef.Context.getTypeDeclType(Primary);
2339 // We use the injected-class-name type of the primary template instead.
2345 TLB.pushTypeSpec(ReturnType).setNameLoc(Primary->getLocation());
2504 for (NamedDecl *D : LookupConstructors(Transform.Primary)) {
2834 // If a template parameter of a primary class template or alias template
4230 // - The specialization shall be more specialized than the primary
4361 // to the implicit argument list of the primary template.
4367 // of the primary template.
4608 // from the primary template
    [all...]

Completed in 26 milliseconds