5 types derived from InteriorNode
System.Private.Xml (5)
System\Xml\Schema\ContentValidator.cs (5)
471
internal sealed class SequenceNode :
InteriorNode
597
internal sealed class ChoiceNode :
InteriorNode
680
internal sealed class PlusNode :
InteriorNode
705
internal sealed class QmarkNode :
InteriorNode
726
internal sealed class StarNode :
InteriorNode
22 references to InteriorNode
System.Private.Xml (22)
System\Xml\Schema\ContentValidator.cs (22)
267
public abstract void ExpandTree(
InteriorNode
parent, SymbolsDictionary symbols, Positions positions);
319
public override void ExpandTree(
InteriorNode
parent, SymbolsDictionary symbols, Positions positions)
362
public override void ExpandTree(
InteriorNode
parent, SymbolsDictionary symbols, Positions positions)
379
InteriorNode
choice = new ChoiceNode();
439
Stack<
InteriorNode
> nodeStack = new Stack<
InteriorNode
>();
440
InteriorNode
this_ = this;
446
this_ = (
InteriorNode
)this_._leftChild;
463
public override void ExpandTree(
InteriorNode
parent, SymbolsDictionary symbols, Positions positions)
561
public override void ExpandTree(
InteriorNode
parent, SymbolsDictionary symbols, Positions positions)
644
public override void ExpandTree(
InteriorNode
parent, SymbolsDictionary symbols, Positions positions)
908
public override void ExpandTree(
InteriorNode
parent, SymbolsDictionary symbols, Positions positions)
1105
InteriorNode
? inNode = (
InteriorNode
?)_stack.Pop();
1144
InteriorNode
? inNode = (
InteriorNode
?)_stack.Pop();
1158
InteriorNode
choice = new ChoiceNode();
1166
InteriorNode
sequence = new SequenceNode();
1192
InteriorNode
sequence = new SequenceNode();
1203
private void Closure(
InteriorNode
node)
1208
InteriorNode
? inNode = topNode as
InteriorNode
;