reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/include/clang/AST/Expr.h
 4709       Field.NameOrField = reinterpret_cast<uintptr_t>(FieldName) | 0x01;
 4710       Field.DotLoc = DotLoc.getRawEncoding();
 4711       Field.FieldLoc = FieldLoc.getRawEncoding();
 4742       if (Field.NameOrField & 0x01)
 4745         return reinterpret_cast<FieldDecl *>(Field.NameOrField);
 4750       Field.NameOrField = reinterpret_cast<uintptr_t>(FD);
 4755       return SourceLocation::getFromRawEncoding(Field.DotLoc);
 4760       return SourceLocation::getFromRawEncoding(Field.FieldLoc);
tools/clang/lib/AST/Expr.cpp
 4227   if (Field.NameOrField & 0x01)
 4228     return reinterpret_cast<IdentifierInfo *>(Field.NameOrField&~0x01);
 4341       StartLoc = SourceLocation::getFromRawEncoding(First.Field.FieldLoc);
 4343       StartLoc = SourceLocation::getFromRawEncoding(First.Field.DotLoc);