17 references to InstructionFlags
System.Private.Xml (17)
System\Xml\Xsl\Xslt\XsltLoader.cs (17)
1187
LoadEndTag(LoadInstructions(
InstructionFlags
.AllowParam)), ctxInfo
1345
return LoadInstructions(new List<XslNode>(),
InstructionFlags
.None);
1348
private List<XslNode> LoadInstructions(
InstructionFlags
flags)
1355
return LoadInstructions(content,
InstructionFlags
.None);
1360
private List<XslNode> LoadInstructions(List<XslNode> content,
InstructionFlags
flags)
1385
InstructionFlags
instrFlag = (
1386
Ref.Equal(name, _atoms.Param) ?
InstructionFlags
.AllowParam :
1387
Ref.Equal(name, _atoms.Sort) ?
InstructionFlags
.AllowSort :
1388
/*else */
InstructionFlags
.None
1390
if (instrFlag !=
InstructionFlags
.None)
1466
private List<XslNode> LoadWithParams(
InstructionFlags
flags)
1485
else if (flags ==
InstructionFlags
.AllowSort && _input.IsXsltKeyword(_atoms.Sort))
1489
else if (flags ==
InstructionFlags
.AllowFallback && _input.IsXsltKeyword(_atoms.Fallback))
1523
List<XslNode>? content = LoadWithParams(
InstructionFlags
.None);
1564
List<XslNode> content = LoadWithParams(
InstructionFlags
.AllowSort);
1581
List<XslNode> content = LoadWithParams(
InstructionFlags
.None);
1742
List<XslNode> content = LoadInstructions(
InstructionFlags
.AllowSort);