1 instantiation of XmlQualifiedNameTest
System.Data.SqlXml (1)
System\Xml\Xsl\XmlQualifiedNameTest.cs (1)
55return new XmlQualifiedNameTest(name == null ? wildcard : name, ns == null ? wildcard : ns, false);
34 references to XmlQualifiedNameTest
System.Data.SqlXml (34)
System\Xml\Xsl\Runtime\XmlQueryRuntime.cs (5)
754return XmlQueryTypeFactory.Type(nav.NodeType, XmlQualifiedNameTest.New(nav.LocalName, nav.NamespaceURI), XmlSchemaComplexType.UntypedAnyType, false); 756return XmlQueryTypeFactory.Type(nav.NodeType, XmlQualifiedNameTest.New(nav.LocalName, nav.NamespaceURI), nav.XmlType, nav.SchemaInfo.SchemaElement.IsNillable); 760return XmlQueryTypeFactory.Type(nav.NodeType, XmlQualifiedNameTest.New(nav.LocalName, nav.NamespaceURI), DatatypeImplementation.UntypedAtomicType, false); 762return XmlQueryTypeFactory.Type(nav.NodeType, XmlQualifiedNameTest.New(nav.LocalName, nav.NamespaceURI), nav.XmlType, false); 765return XmlQueryTypeFactory.Type(nav.NodeType, XmlQualifiedNameTest.Wildcard, XmlSchemaComplexType.AnyType, false);
System\Xml\Xsl\XmlQualifiedNameTest.cs (8)
31static XmlQualifiedNameTest wc = XmlQualifiedNameTest.New(wildcard, wildcard); 36public static XmlQualifiedNameTest Wildcard { 50public static XmlQualifiedNameTest New(string name, string ns) { 80private bool IsNameSubsetOf(XmlQualifiedNameTest other) { 85private bool IsNamespaceSubsetOf(XmlQualifiedNameTest other) { 94public bool IsSubsetOf(XmlQualifiedNameTest other) { 101public bool HasIntersection(XmlQualifiedNameTest other) {
System\Xml\Xsl\XmlQueryType.cs (1)
66public abstract XmlQualifiedNameTest NameTest { get; }
System\Xml\Xsl\XmlQueryTypeFactory.cs (20)
329private XmlQualifiedNameTest nameTest; 362BuiltInItemTypes[i] = new ItemType(typeCode, XmlQualifiedNameTest.Wildcard, XmlSchemaComplexType.AnyType, false, false, false); 372BuiltInItemTypes[i] = new ItemType(typeCode, XmlQualifiedNameTest.Wildcard, XmlSchemaComplexType.AnyType, false, false, true); 377BuiltInItemTypes[i] = new ItemType(typeCode, XmlQualifiedNameTest.Wildcard, DatatypeImplementation.AnySimpleType, false, false, true); 382BuiltInItemTypes[i] = new ItemType(typeCode, XmlQualifiedNameTest.Wildcard, DatatypeImplementation.AnyAtomicType, false, false, true); 388BuiltInItemTypes[i] = new ItemType(typeCode, XmlQualifiedNameTest.Wildcard, DatatypeImplementation.UntypedAtomicType, false, true, true); 394BuiltInItemTypes[i] = new ItemType(typeCode, XmlQualifiedNameTest.Wildcard, builtInType, false, false, true); 395BuiltInItemTypesStrict[i] = new ItemType(typeCode, XmlQualifiedNameTest.Wildcard, builtInType, false, true, true); 400UntypedDocument = new ItemType(XmlTypeCode.Document, XmlQualifiedNameTest.Wildcard, XmlSchemaComplexType.UntypedAnyType, false, false, true); 401UntypedElement = new ItemType(XmlTypeCode.Element, XmlQualifiedNameTest.Wildcard, XmlSchemaComplexType.UntypedAnyType, false, false, true); 402UntypedAttribute = new ItemType(XmlTypeCode.Attribute, XmlQualifiedNameTest.Wildcard, DatatypeImplementation.UntypedAtomicType, false, false, true); 403NodeNotRtf = new ItemType(XmlTypeCode.Node, XmlQualifiedNameTest.Wildcard, XmlSchemaComplexType.AnyType, false, false, true); 433return new ItemType(code, XmlQualifiedNameTest.Wildcard, schemaType, false, isStrict, true); 439public static XmlQueryType Create(XmlTypeCode code, XmlQualifiedNameTest nameTest, XmlSchemaType contentType, bool isNillable) { 483private ItemType(XmlTypeCode code, XmlQualifiedNameTest nameTest, XmlSchemaType schemaType, bool isNillable, bool isStrict, bool isNotRtf) { 560public override XmlQualifiedNameTest NameTest { 809public override XmlQualifiedNameTest NameTest { 810get { return XmlQualifiedNameTest.Wildcard; } 998public override XmlQualifiedNameTest NameTest { 1097public static XmlQueryType Type(XPathNodeType kind, XmlQualifiedNameTest nameTest, XmlSchemaType contentType, bool isNillable) {