Searched refs:DNLoc (Results 1 - 13 of 13) sorted by relevance

/external/clang/include/clang/AST/
H A DDeclCXX.h2646 /// DNLoc - Provides source/type location info for the
2648 DeclarationNameLoc DNLoc; member in class:clang::UsingDecl
2662 DNLoc(NameInfo.getInfo()), FirstUsingShadow(0, IsTypeNameArg) {
2682 return DeclarationNameInfo(getDeclName(), getLocation(), DNLoc);
2783 /// DNLoc - Provides source/type location info for the
2785 DeclarationNameLoc DNLoc; member in class:clang::UnresolvedUsingValueDecl
2794 DNLoc(NameInfo.getInfo())
2814 return DeclarationNameInfo(getDeclName(), getLocation(), DNLoc);
H A DDecl.h1509 /// DNLoc - Provides source/type location info for the
1511 DeclarationNameLoc DNLoc;
1567 DNLoc(NameInfo.getInfo()) {}
1614 return DeclarationNameInfo(getDeclName(), getLocation(), DNLoc);
H A DExpr.h800 DeclarationNameLoc DNLoc; member in class:clang::DeclRefExpr
854 D(D), Loc(L), DNLoc(LocInfo) {
895 return DeclarationNameInfo(getDecl()->getDeclName(), Loc, DNLoc);
/external/clang/include/clang/Serialization/
H A DASTWriter.h574 void AddDeclarationNameLoc(const DeclarationNameLoc &DNLoc,
H A DASTReader.h1330 DeclarationNameLoc &DNLoc, DeclarationName Name,
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp83 void ReadDeclarationNameLoc(DeclarationNameLoc &DNLoc, DeclarationName Name, argument
85 Reader.ReadDeclarationNameLoc(F, DNLoc, Name, R, I);
501 ReadDeclarationNameLoc(FD->DNLoc, FD->getDeclName(), Record, Idx);
1030 ReadDeclarationNameLoc(D->DNLoc, D->getDeclName(), Record, Idx);
1059 ReadDeclarationNameLoc(D->DNLoc, D->getDeclName(), Record, Idx);
H A DASTWriterDecl.cpp311 Writer.AddDeclarationNameLoc(D->DNLoc, D->getDeclName(), Record);
875 Writer.AddDeclarationNameLoc(D->DNLoc, D->getDeclName(), Record);
904 Writer.AddDeclarationNameLoc(D->DNLoc, D->getDeclName(), Record);
H A DASTReader.cpp5811 DeclarationNameLoc &DNLoc,
5818 DNLoc.NamedType.TInfo = GetTypeSourceInfo(F, Record, Idx);
5822 DNLoc.CXXOperatorName.BeginOpNameLoc
5824 DNLoc.CXXOperatorName.EndOpNameLoc
5829 DNLoc.CXXLiteralOperatorName.OpNameLoc
5847 DeclarationNameLoc DNLoc;
5848 ReadDeclarationNameLoc(F, DNLoc, NameInfo.getName(), Record, Idx);
5849 NameInfo.setInfo(DNLoc);
H A DASTWriter.cpp3990 void ASTWriter::AddDeclarationNameLoc(const DeclarationNameLoc &DNLoc, argument
3996 AddTypeSourceInfo(DNLoc.NamedType.TInfo, Record);
4001 SourceLocation::getFromRawEncoding(DNLoc.CXXOperatorName.BeginOpNameLoc),
4004 SourceLocation::getFromRawEncoding(DNLoc.CXXOperatorName.EndOpNameLoc),
4010 SourceLocation::getFromRawEncoding(DNLoc.CXXLiteralOperatorName.OpNameLoc),
H A DASTReaderStmt.cpp60 void ReadDeclarationNameLoc(DeclarationNameLoc &DNLoc, DeclarationName Name, argument
62 Reader.ReadDeclarationNameLoc(F, DNLoc, Name, R, I);
372 ReadDeclarationNameLoc(E->DNLoc, E->getDecl()->getDeclName(), Record, Idx);
H A DASTWriterStmt.cpp311 Writer.AddDeclarationNameLoc(E->DNLoc, E->getDecl()->getDeclName(), Record);
/external/clang/lib/AST/
H A DASTContext.cpp3585 // DNInfo work in progress: CHECKME: what about DNLoc?
3591 // DNInfo work in progress: CHECKME: what about DNLoc?
3604 DeclarationNameLoc DNLoc; local
3605 DNLoc.CXXOperatorName.BeginOpNameLoc = SourceLocation().getRawEncoding();
3606 DNLoc.CXXOperatorName.EndOpNameLoc = SourceLocation().getRawEncoding();
3607 return DeclarationNameInfo(DName, NameLoc, DNLoc);
H A DExpr.cpp287 D(D), Loc(NameInfo.getLoc()), DNLoc(NameInfo.getInfo()) {

Completed in 632 milliseconds