16 references to IsAssigned
Microsoft.CodeAnalysis.CSharp (16)
FlowAnalysis\DataFlowsOutWalker.cs (1)
82
if (slot > 0 && !this.State.
IsAssigned
(slot))
FlowAnalysis\DefiniteAssignment.cs (12)
495
if (!this.State.
IsAssigned
(thisSlot))
506
if (fieldSlot == -1 || !this.State.
IsAssigned
(fieldSlot))
1177
if (slot > 0 && !this.State.
IsAssigned
(slot))
1287
if (slot == -1 || !State.
IsAssigned
(slot))
1490
return this.State.
IsAssigned
(unassignedSlot);
1705
Debug.Assert(!state.
IsAssigned
(containingSlot));
1720
if (slot == -1 || !state.
IsAssigned
(slot)) return false;
1746
if (state.
IsAssigned
(slot)) return; // was already fully assigned.
1764
if (state.
IsAssigned
(slot) || !FieldsAllSet(slot, state)) break;
1781
if (!state.
IsAssigned
(slot)) return; // was already unassigned
1987
if (slot > 0 && !this.State.
IsAssigned
(slot))
2978
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 &&