HomeSort by relevance Sort by last modified time
    Searched defs:Primary (Results 1 - 6 of 6) sorted by null

  /external/clang/include/clang/Frontend/
ChainedDiagnosticConsumer.h 21 /// should be the "primary" client, and will be used for computing whether the
25 std::unique_ptr<DiagnosticConsumer> Primary;
31 Primary.reset(_Primary);
37 Primary->BeginSourceFile(LO, PP);
43 Primary->EndSourceFile();
48 Primary->finish();
52 return Primary->IncludeInDiagnosticCounts();
60 Primary->HandleDiagnostic(DiagLevel, Info);
  /external/clang/include/clang/AST/
DeclLookups.h 72 DeclContext *Primary = const_cast<DeclContext*>(this)->getPrimaryContext();
73 if (Primary->hasExternalVisibleStorage())
74 getParentASTContext().getExternalSource()->completeVisibleDeclsMap(Primary);
75 if (StoredDeclsMap *Map = Primary->buildLookup())
90 DeclContext *Primary = const_cast<DeclContext*>(this)->getPrimaryContext();
91 if (StoredDeclsMap *Map = Primary->getLookupPtr())
  /external/llvm/lib/DebugInfo/
DWARFDebugFrame.cpp 101 // Some instructions have a primary opcode encoded in the top bits.
102 uint8_t Primary = Opcode & DWARF_CFI_PRIMARY_OPCODE_MASK;
104 if (Primary) {
105 // If it's a primary opcode, the first operand is encoded in the bottom
108 switch (Primary) {
109 default: llvm_unreachable("Impossible primary CFI opcode");
112 addInstruction(Primary, Op1);
115 addInstruction(Primary, Op1, Data.getULEB128(Offset));
  /external/clang/lib/AST/
DeclCXX.cpp 580 NamedDecl *Primary =
582 if (Primary->getPreviousDecl())
583 Conversions.replace(cast<NamedDecl>(Primary->getPreviousDecl()),
584 Primary, AS);
586 Conversions.addDecl(Ctx, Primary, AS);
    [all...]
ASTDumper.cpp 578 const DeclContext *Primary = DC->getPrimaryContext();
579 if (Primary != DC) {
580 OS << " primary";
581 dumpPointer(cast<Decl>(Primary));
584 bool HasUndeserializedLookups = Primary->hasExternalVisibleStorage();
586 DeclContext::all_lookups_iterator I = Primary->noload_lookups_begin(),
587 E = Primary->noload_lookups_end();
    [all...]
  /external/clang/lib/Sema/
SemaDeclCXX.cpp     [all...]

Completed in 229 milliseconds