16 references to IsAssigned
Microsoft.CodeAnalysis.CSharp (16)
FlowAnalysis\DataFlowsOutWalker.cs (1)
82
if (slot > 0 && !this.State.
IsAssigned
(slot))
FlowAnalysis\DefiniteAssignment.cs (12)
472
if (!this.State.
IsAssigned
(thisSlot))
483
if (fieldSlot == -1 || !this.State.
IsAssigned
(fieldSlot))
1162
if (slot > 0 && !this.State.
IsAssigned
(slot))
1272
if (slot == -1 || !State.
IsAssigned
(slot))
1475
return this.State.
IsAssigned
(unassignedSlot);
1690
Debug.Assert(!state.
IsAssigned
(containingSlot));
1705
if (slot == -1 || !state.
IsAssigned
(slot)) return false;
1731
if (state.
IsAssigned
(slot)) return; // was already fully assigned.
1749
if (state.
IsAssigned
(slot) || !FieldsAllSet(slot, state)) break;
1766
if (!state.
IsAssigned
(slot)) return; // was already unassigned
1960
if (slot > 0 && !this.State.
IsAssigned
(slot))
2951
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 &&