16 references to IsAssigned
Microsoft.CodeAnalysis.CSharp (16)
FlowAnalysis\DataFlowsOutWalker.cs (1)
82
if (slot > 0 && !this.State.
IsAssigned
(slot))
FlowAnalysis\DefiniteAssignment.cs (12)
481
if (!this.State.
IsAssigned
(thisSlot))
492
if (fieldSlot == -1 || !this.State.
IsAssigned
(fieldSlot))
1163
if (slot > 0 && !this.State.
IsAssigned
(slot))
1273
if (slot == -1 || !State.
IsAssigned
(slot))
1476
return this.State.
IsAssigned
(unassignedSlot);
1691
Debug.Assert(!state.
IsAssigned
(containingSlot));
1706
if (slot == -1 || !state.
IsAssigned
(slot)) return false;
1732
if (state.
IsAssigned
(slot)) return; // was already fully assigned.
1750
if (state.
IsAssigned
(slot) || !FieldsAllSet(slot, state)) break;
1767
if (!state.
IsAssigned
(slot)) return; // was already unassigned
1973
if (slot > 0 && !this.State.
IsAssigned
(slot))
2964
return Assigned.Capacity <= 0 || !
IsAssigned
(0);
FlowAnalysis\DefiniteAssignment.LocalFunctions.cs (2)
82
if (slot > 0 && !this.State.
IsAssigned
(slot))
114
if (fieldSlot > 0 && !State.
IsAssigned
(fieldSlot))
FlowAnalysis\DefinitelyAssignedWalker.cs (1)
94
state2opt?.
IsAssigned
(slot) != false &&