10 implementations of PostParse
System.Speech (10)
Internal\SrgsCompiler\GrammarElement.cs (1)
79void IElement.PostParse(IElement? parent)
Internal\SrgsCompiler\Item.cs (1)
28void IElement.PostParse(IElement parentElement)
Internal\SrgsCompiler\OneOf.cs (1)
45void IElement.PostParse(IElement parentElement)
Internal\SrgsCompiler\ParseElement.cs (1)
46void IElement.PostParse(IElement? parent)
Internal\SrgsCompiler\PropertyTag.cs (1)
80void IElement.PostParse(IElement parentElement)
Internal\SrgsCompiler\Rule.cs (1)
152void IElement.PostParse(IElement? grammar)
Internal\SrgsCompiler\Subset.cs (1)
42void IElement.PostParse(IElement? parentElement)
Recognition\SrgsGrammar\SrgsElement.cs (1)
46void IElement.PostParse(IElement? parent)
Recognition\SrgsGrammar\SrgsGrammar.cs (1)
205void IElement.PostParse(IElement? parent)
Recognition\SrgsGrammar\SrgsRule.cs (1)
312void IElement.PostParse(IElement grammar)
23 references to PostParse
System.Speech (23)
Internal\GrammarBuilding\BuilderElements.cs (2)
161element.PostParse(parent); 174element.PostParse(parent);
Internal\GrammarBuilding\OneOfElement.cs (1)
39element.PostParse(oneOf);
Internal\GrammarBuilding\RuleElement.cs (1)
71_rule.PostParse(grammar);
Internal\SrgsCompiler\RuleRef.cs (2)
112((IRule)rule).PostParse(parent); 124((IOneOf)oneOf).PostParse(parent);
Internal\SrgsCompiler\SrgsElementCompilerFactory.cs (1)
296((IOneOf)oneOf).PostParse(parent);
Internal\SrgsParser\SrgsDocumentParser.cs (7)
75rule.PostParse(grammar); 88grammar.PostParse(null!); 167ruleRef.PostParse(parent); 183oneOf.PostParse(parent); 200item.PostParse(parent); 262tag.PostParse(parent); 277tag.PostParse(parent);
Internal\SrgsParser\XmlParser.cs (6)
493grammar.PostParse(null!); 772ruleRef.PostParse(parent); 800oneOf.PostParse(parent); 853item.PostParse(parent); 1422tag.PostParse(parent!); 1556rule.PostParse(grammar);
Recognition\GrammarBuilder.cs (3)
514element.PostParse(root); 520root.PostParse(elementFactory.Grammar); 522elementFactory.Grammar.PostParse(null!);