14 references to IsEmpty
System.Speech (14)
Internal\SrgsCompiler\Arc.cs (2)
665if ((_start != null && !_start.OutArcs.IsEmpty) || (_end != null && !_end.InArcs.IsEmpty))
Internal\SrgsCompiler\BackEnd.cs (3)
670System.Diagnostics.Debug.Assert(stateToDelete.InArcs.IsEmpty); 671System.Diagnostics.Debug.Assert(stateToDelete.OutArcs.IsEmpty); 999if (thisState == 0 && state.InArcs.IsEmpty && state.Rule._cStates > 1)
Internal\SrgsCompiler\Graph.cs (3)
191System.Diagnostics.Debug.Assert(srcState.OutArcs.IsEmpty); 218System.Diagnostics.Debug.Assert(srcState.InArcs.IsEmpty); 230System.Diagnostics.Debug.Assert(srcState.InArcs.IsEmpty);
Internal\SrgsCompiler\OneOf.cs (3)
47if (_startArc!.End!.OutArcs.IsEmpty) 76if (start.IsEpsilonTransition && start.IsPropertylessTransition && startEndState != null && startEndState.InArcs.IsEmpty) 88if (end.IsEpsilonTransition && end.IsPropertylessTransition && endStartState != null && endStartState.OutArcs.IsEmpty)
Internal\SrgsCompiler\Rule.cs (1)
145_cfgRule.FirstArcIndex = _firstState != null && !_firstState.OutArcs.IsEmpty ? (uint)_firstState.SerializeId : 0;
Internal\SrgsCompiler\State.cs (2)
406Arc? arc1 = state1._outArcs != null && !state1._outArcs.IsEmpty ? state1._outArcs.First : null; 407Arc? arc2 = state2._outArcs != null && !state2._outArcs.IsEmpty ? state2._outArcs.First : null;