1 write to arcs
System.Speech (1)
Internal\SrgsCompiler\CFGGrammar.cs (1)
275
header.
arcs
= Load<CfgArc>(streamHelper, cfgSerializedHeader.pArcs, cfgSerializedHeader.cArcs);
9 references to arcs
System.Speech (9)
Internal\SrgsCompiler\BackEnd.cs (7)
804
System.Diagnostics.Debug.Assert(header.
arcs
!= null, "ConvertCfgHeader should set includeAllGrammarData");
814
State?[] apStateTable = new State[header.
arcs
.Length];
828
Arc[] apArcTable = new Arc[header.
arcs
.Length];
842
for (int k = 1; k < header.
arcs
.Length; k++)
844
CfgArc arc = header.
arcs
[k];
927
for (int k = 1, iCurTag = 0; k < header.
arcs
.Length; k++)
929
CfgArc arc = header.
arcs
[k];
Internal\SrgsCompiler\CFGGrammar.cs (2)
443
System.Diagnostics.Debug.Assert(header.
arcs
!= null, "Including all grammar data should have populated the arcs field");
451
int cArcs = header.
arcs
.Length;