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

References

tools/clang/lib/AST/DeclPrinter.cpp
 1468       Out << (first ? "" : ", ") << "class";
 1469       first = false;
 1474       Out << (first ? "" : ", ") << "nonatomic";
 1475       first = false;
 1479       Out << (first ? "" : ", ") << "atomic";
 1480       first = false;
 1484       Out << (first ? "" : ", ") << "assign";
 1485       first = false;
 1488       Out << (first ? "" : ", ") << "retain";
 1489       first = false;
 1493       Out << (first ? "" : ", ") << "strong";
 1494       first = false;
 1497       Out << (first ? "" : ", ") << "copy";
 1498       first = false;
 1501       Out << (first ? "" : ", ") << "weak";
 1502       first = false;
 1506       Out << (first ? "" : ", ") << "unsafe_unretained";
 1507       first = false;
 1512       Out << (first ? "" : ", ") << "readwrite";
 1513       first = false;
 1517       Out << (first ? "" : ", ") << "readonly";
 1518       first = false;
 1522       Out << (first ? "" : ", ") << "getter = ";
 1524       first = false;
 1527       Out << (first ? "" : ", ") << "setter = ";
 1529       first = false;
 1538           Out << (first ? "" : ", ") << "null_resettable";
 1540           Out << (first ? "" : ", ")
 1543         first = false;
 1547     (void) first; // Silence dead store warning due to idiomatic code.