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