16 references to IsAssigned
Microsoft.CodeAnalysis.CSharp (16)
FlowAnalysis\DataFlowsOutWalker.cs (1)
82
if (slot > 0 && !this.State.
IsAssigned
(slot))
FlowAnalysis\DefiniteAssignment.cs (12)
432
if (!this.State.
IsAssigned
(thisSlot))
443
if (fieldSlot == -1 || !this.State.
IsAssigned
(fieldSlot))
1115
if (slot > 0 && !this.State.
IsAssigned
(slot))
1225
if (slot == -1 || !State.
IsAssigned
(slot))
1428
return this.State.
IsAssigned
(unassignedSlot);
1643
Debug.Assert(!state.
IsAssigned
(containingSlot));
1658
if (slot == -1 || !state.
IsAssigned
(slot)) return false;
1684
if (state.
IsAssigned
(slot)) return; // was already fully assigned.
1702
if (state.
IsAssigned
(slot) || !FieldsAllSet(slot, state)) break;
1719
if (!state.
IsAssigned
(slot)) return; // was already unassigned
1925
if (slot > 0 && !this.State.
IsAssigned
(slot))
2912
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 &&