1 write to tags
System.Speech (1)
Internal\SrgsCompiler\CFGGrammar.cs (1)
276header.tags = Load<CfgSemanticTag>(streamHelper, cfgSerializedHeader.tags, cfgSerializedHeader.cTags);
14 references to tags
System.Speech (14)
Internal\SrgsCompiler\BackEnd.cs (5)
805System.Diagnostics.Debug.Assert(header.tags != null, "ConvertCfgHeader should set includeAllGrammarData"); 933System.Diagnostics.Debug.Assert(header.tags[iCurTag].StartArcIndex == k); 935while (iCurTag < header.tags.Length && header.tags[iCurTag].StartArcIndex == k) 938CfgSemanticTag semTag = header.tags[iCurTag];
Internal\SrgsCompiler\CFGGrammar.cs (9)
442System.Diagnostics.Debug.Assert(header.tags != null, "Including all grammar data should have populated the tags field"); 447for (int i = 0; i < header.tags.Length; i++) 449int startArc = (int)header.tags[i].StartArcIndex; 450int endArc = (int)header.tags[i].EndArcIndex; 458header.tags[i].PropVariantType != VarEnum.VT_EMPTY && 459header.tags[i].PropVariantType != VarEnum.VT_BSTR && 460header.tags[i].PropVariantType != VarEnum.VT_BOOL && 461header.tags[i].PropVariantType != VarEnum.VT_R8 && 462header.tags[i].PropVariantType != VarEnum.VT_I4)