Searched refs:FieldNode (Results 1 - 3 of 3) sorted by relevance

/openbsd-current/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
H A DUninitializedObject.h85 class FieldNode { class in namespace:clang::ento
91 /* non-virtual */ ~FieldNode() = default;
94 FieldNode(const FieldRegion *FR) : FR(FR) {} function in class:clang::ento::FieldNode
97 // this interface to only store references to FieldNode objects in containers.
98 FieldNode() = delete;
99 FieldNode(const FieldNode &) = delete;
100 FieldNode(FieldNode &&) = delete;
101 FieldNode
[all...]
H A DUninitializedPointee.cpp30 class LocField final : public FieldNode {
36 : FieldNode(FR), IsDereferenced(IsDereferenced) {}
61 class NeedsCastLocField final : public FieldNode {
66 : FieldNode(FR), CastBackType(T) {}
90 class CyclicLocField final : public FieldNode {
93 CyclicLocField(const FieldRegion *FR) : FieldNode(FR) {}
H A DUninitializedObjectChecker.cpp56 class RegularField final : public FieldNode {
58 RegularField(const FieldRegion *FR) : FieldNode(FR) {}
73 /// Represents that the FieldNode that comes after this is declared in a base
74 /// of the previous FieldNode. As such, this descendant doesn't wrap a
77 class BaseClass final : public FieldNode {
81 BaseClass(const QualType &T) : FieldNode(nullptr), BaseClassT(T) {
395 for (const FieldNode &Node : Chain) {
426 const FieldNode &LastField = getHead();
431 for (const FieldNode &Node : Chain)

Completed in 63 milliseconds