Searched defs:DNLoc (Results 1 - 6 of 6) sorted by relevance

/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 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 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),
/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 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/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);

Completed in 480 milliseconds