17 references to InstructionFlags
System.Private.Xml (17)
System\Xml\Xsl\Xslt\XsltLoader.cs (17)
1187
LoadEndTag(LoadInstructions(
InstructionFlags
.AllowParam)), ctxInfo
1347
return LoadInstructions(new List<XslNode>(),
InstructionFlags
.None);
1350
private List<XslNode> LoadInstructions(
InstructionFlags
flags)
1357
return LoadInstructions(content,
InstructionFlags
.None);
1362
private List<XslNode> LoadInstructions(List<XslNode> content,
InstructionFlags
flags)
1387
InstructionFlags
instrFlag = (
1388
Ref.Equal(name, _atoms.Param) ?
InstructionFlags
.AllowParam :
1389
Ref.Equal(name, _atoms.Sort) ?
InstructionFlags
.AllowSort :
1390
/*else */
InstructionFlags
.None
1392
if (instrFlag !=
InstructionFlags
.None)
1468
private List<XslNode> LoadWithParams(
InstructionFlags
flags)
1487
else if (flags ==
InstructionFlags
.AllowSort && _input.IsXsltKeyword(_atoms.Sort))
1491
else if (flags ==
InstructionFlags
.AllowFallback && _input.IsXsltKeyword(_atoms.Fallback))
1525
List<XslNode>? content = LoadWithParams(
InstructionFlags
.None);
1566
List<XslNode> content = LoadWithParams(
InstructionFlags
.AllowSort);
1583
List<XslNode> content = LoadWithParams(
InstructionFlags
.None);
1744
List<XslNode> content = LoadInstructions(
InstructionFlags
.AllowSort);