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

References

tools/clang/include/clang/AST/Expr.h
 1909   bool hasFunctionName() const { return PredefinedExprBits.HasFunctionName; }
 1927     return static_cast<IdentKind>(PredefinedExprBits.Kind);
 1930   SourceLocation getLocation() const { return PredefinedExprBits.Loc; }
 1931   void setLocation(SourceLocation L) { PredefinedExprBits.Loc = L; }
tools/clang/lib/AST/Expr.cpp
  615   PredefinedExprBits.Kind = IK;
  619   PredefinedExprBits.HasFunctionName = HasFunctionName;
  620   PredefinedExprBits.Loc = L;
  627   PredefinedExprBits.HasFunctionName = HasFunctionName;
tools/clang/lib/Serialization/ASTReaderStmt.cpp
  554   E->PredefinedExprBits.HasFunctionName = HasFunctionName;
  555   E->PredefinedExprBits.Kind = Record.readInt();