Home | History | Annotate | Download | only in AST

Lines Matching defs:Definition

90     /// \brief What we should import from the definition.
92 /// \brief Import the default subset of the definition, which might be
1904 // Ensure that we have a definition for the base.
2300 // Import the definition
2308 // If this record has a definition in the translation unit we're coming from,
2309 // but this particular declaration is not that definition, import the
2310 // definition and map to that.
2311 TagDecl *Definition = D->getDefinition();
2312 if (Definition && Definition != D) {
2313 Decl *ImportedDef = Importer.Import(Definition);
3165 // Start the protocol definition
3197 // If this protocol has a definition in the translation unit we're coming
3198 // from, but this particular declaration is not that definition, import the
3199 // definition and map to that.
3200 ObjCProtocolDecl *Definition = D->getDefinition();
3201 if (Definition && Definition != D) {
3202 Decl *ImportedDef = Importer.Import(Definition);
3283 // Start the definition.
3343 // If this class has a definition in the translation unit we're coming from,
3344 // but this particular declaration is not that definition, import the
3345 // definition and map to that.
3346 ObjCInterfaceDecl *Definition = D->getDefinition();
3347 if (Definition && Definition != D) {
3348 Decl *ImportedDef = Importer.Import(Definition);
3725 // If this record has a definition in the translation unit we're coming from,
3726 // but this particular declaration is not that definition, import the
3727 // definition and map to that.
3728 CXXRecordDecl *Definition
3730 if (Definition && Definition != D->getTemplatedDecl()) {
3732 = Importer.Import(Definition->getDescribedClassTemplate());
3816 // FIXME: Import definition!
3824 // If this record has a definition in the translation unit we're coming from,
3825 // but this particular declaration is not that definition, import the
3826 // definition and map to that.
3827 TagDecl *Definition = D->getDefinition();
3828 if (Definition && Definition != D) {
3829 Decl *ImportedDef = Importer.Import(Definition);
4236 // need it to have a definition.