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

  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.cpp 120 DIScope *DeclContext;
122 DeclContext = resolve(SDMDecl->getScope());
129 DeclContext = GV->getScope();
145 addGlobalName(GV->getName(), *VariableDIE, DeclContext);
  /external/clang/lib/AST/
DeclBase.cpp 10 // This file implements the Decl and DeclContext classes.
76 DeclContext *Parent, std::size_t Extra) {
122 const char *DeclContext::getDeclKindName() const {
199 const DeclContext *Decl::getParentFunctionOrMethod() const {
200 for (const DeclContext *DC = getDeclContext();
241 void Decl::setDeclContext(DeclContext *DC) {
245 void Decl::setLexicalDeclContext(DeclContext *DC) {
257 void Decl::setDeclContextsImpl(DeclContext *SemaDC, DeclContext *LexicalDC,
270 const DeclContext *LDC = getLexicalDeclContext()
    [all...]
  /external/clang/include/clang/AST/
DeclBase.h 10 // This file defines the Decl and DeclContext interfaces.
31 class DeclContext;
210 /// DeclContext. These pointers form the linked list that is
211 /// traversed via DeclContext's decls_begin()/decls_end().
218 friend class DeclContext;
221 DeclContext *SemanticDC;
222 DeclContext *LexicalDC;
226 /// DeclCtx - Holds either a DeclContext* or a MultipleDC*.
228 /// the DeclContext where the Decl was declared.
239 llvm::PointerUnion<DeclContext*, MultipleDC*> DeclCtx
    [all...]
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp 79 /// A DeclContext is a named program scope that is used for ODR
81 /// The set of DeclContext for the ODR-subject parts of a Dwarf link
91 /// DeclContext would be too space inefficient.
92 /// The solution here is to give each DeclContext a link to its parent
94 /// specific DeclContext using a separate DenseMap keyed on the hash
96 class DeclContext {
103 const DeclContext &Parent;
111 typedef DenseSet<DeclContext *, DeclMapInfo> Map;
113 DeclContext()
118 DeclContext(unsigned Hash, uint32_t Line, uint32_t ByteSize, uint16_t Tag
    [all...]

Completed in 2028 milliseconds