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))
1114
if (slot > 0 && !this.State.
IsAssigned
(slot))
1224
if (slot == -1 || !State.
IsAssigned
(slot))
1427
return this.State.
IsAssigned
(unassignedSlot);
1642
Debug.Assert(!state.
IsAssigned
(containingSlot));
1657
if (slot == -1 || !state.
IsAssigned
(slot)) return false;
1683
if (state.
IsAssigned
(slot)) return; // was already fully assigned.
1701
if (state.
IsAssigned
(slot) || !FieldsAllSet(slot, state)) break;
1718
if (!state.
IsAssigned
(slot)) return; // was already unassigned
1924
if (slot > 0 && !this.State.
IsAssigned
(slot))
2909
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 &&