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

Declarations

tools/clang/include/clang/AST/Type.h
 2071   bool isAtomicType() const;                    // C11 _Atomic()

References

tools/clang/lib/AST/ExprConstant.cpp
13141   assert(E->isRValue() && E->getType()->isAtomicType());
13330   } else if (T->isAtomicType()) {
13370     else if (T->isAtomicType()) {
tools/clang/lib/CodeGen/CGAtomic.cpp
 1476   if (LV.getType()->isAtomicType()) {
 1900   if (lvalue.getType()->isAtomicType()) {
 2025     if (!init->getType()->isAtomicType()) {
tools/clang/lib/CodeGen/CGDecl.cpp
 1890     if (type->isAtomicType()) {
tools/clang/lib/CodeGen/CGExpr.cpp
 1668   if (Ty->isAtomicType() || LValueIsSuitableForInlineAtomic(AtomicLValue)) {
 1747   if (Ty->isAtomicType() ||
tools/clang/lib/CodeGen/CGExprAgg.cpp
  222   if (LV.getType()->isAtomicType() || CGF.LValueIsSuitableForInlineAtomic(LV)) {
  752     assert(atomicType->isAtomicType());
 1159     if (LHS.getType()->isAtomicType() ||
 1178   if (LHS.getType()->isAtomicType() ||
tools/clang/lib/CodeGen/CGExprComplex.cpp
  348   if (lvalue.getType()->isAtomicType())
  373   if (lvalue.getType()->isAtomicType() ||
tools/clang/lib/Sema/SemaChecking.cpp
 4704     if (!AtomTy->isAtomicType()) {
11048   if (E->getLHS()->getType()->isAtomicType())
11219   if (E->getLHS()->getType()->isAtomicType())
11561   if (Source->isAtomicType())
12027   if (E->IgnoreParenImpCasts()->getType()->isAtomicType())
12088     if (!CE->getType()->isVoidType() && E->getType()->isAtomicType())
12146       if (U->getSubExpr()->getType()->isAtomicType())
tools/clang/lib/Sema/SemaExpr.cpp
 8568     if (!LHSType->isRecordType() && !LHSType->isAtomicType()) {
12839     if (LHSTy->isAtomicType() || RHSTy->isAtomicType()) {
12839     if (LHSTy->isAtomicType() || RHSTy->isAtomicType()) {
13463     if ((Opc != UO_AddrOf && Ty->isAtomicType()) ||
tools/clang/lib/Sema/SemaInit.cpp
 1385   } else if (ElemType->isScalarType() || ElemType->isAtomicType()) {
 7843       ETy->isAtomicType() && !HasGlobalAS &&
tools/clang/lib/Sema/SemaType.cpp
 1836   if (CVRAU & DeclSpec::TQ_atomic && !T->isAtomicType()) {
 2874       unsigned AtomicQual = RetTy->isAtomicType() ? DeclSpec::TQ_atomic : 0;
 4687       if ((T.getCVRQualifiers() || T->isAtomicType()) &&
 8444     else if (T->isAtomicType())
tools/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedObject.h
  326          T->isFunctionType() || T->isAtomicType() ||