13 instantiations of SchemaElementDecl
dotnet-svcutil-lib (13)
FrameworkFork\Microsoft.Xml\Xml\schema\DatatypeImplementation.cs (3)
183
simpleType.ElementDecl = new
SchemaElementDecl
(dataType);
335
tempNormalizedStringTypeV1Compat.ElementDecl = new
SchemaElementDecl
(c_normalizedStringV1Compat);
349
tempTokenTypeV1Compat.ElementDecl = new
SchemaElementDecl
(c_tokenV1Compat);
FrameworkFork\Microsoft.Xml\Xml\schema\DtdParser.cs (2)
670
elementDecl = new
SchemaElementDecl
(elementName, elementName.Namespace);
967
elementDecl = new
SchemaElementDecl
(name, name.Namespace);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (2)
612
SchemaElementDecl decl = new
SchemaElementDecl
();
761
SchemaElementDecl decl = new
SchemaElementDecl
();
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaElementDecl.cs (2)
30
internal static readonly SchemaElementDecl Empty = new
SchemaElementDecl
();
55
SchemaElementDecl anyTypeElementDecl = new
SchemaElementDecl
();
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (2)
697
SchemaElementDecl decl = new
SchemaElementDecl
();
833
SchemaElementDecl decl = new
SchemaElementDecl
();
FrameworkFork\Microsoft.Xml\Xml\schema\XdrBuilder.cs (2)
718
builder._ElementDef._ElementDecl = new
SchemaElementDecl
();
1198
ed = new
SchemaElementDecl
(qname, prefix);
92 references to SchemaElementDecl
dotnet-svcutil-lib (92)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (4)
599
SchemaElementDecl
ed = GetSchemaElementDecl(elem);
627
private
SchemaElementDecl
GetSchemaElementDecl(XmlElement elem)
635
SchemaElementDecl
elemDecl;
1619
SchemaElementDecl
ed = GetSchemaElementDecl(elem);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlLoader.cs (2)
666
SchemaElementDecl
elementDecl = (
SchemaElementDecl
)elementDecls.Value;
FrameworkFork\Microsoft.Xml\Xml\schema\DtdParser.cs (3)
665
SchemaElementDecl
elementDecl;
764
private void ParseAttlistType(SchemaAttDef attrDef,
SchemaElementDecl
elementDecl, bool ignoreErrors)
949
SchemaElementDecl
elementDecl = null;
FrameworkFork\Microsoft.Xml\Xml\schema\dtdvalidator.cs (1)
238
SchemaElementDecl
elementDecl = schemaInfo.GetElementDecl(elementName);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (4)
612
SchemaElementDecl
decl = new SchemaElementDecl();
761
SchemaElementDecl
decl = new SchemaElementDecl();
2270
SchemaElementDecl
decl = null;
2419
xe.ElementDecl =
SchemaElementDecl
.Empty;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaElementDecl.cs (7)
30
internal static readonly
SchemaElementDecl
Empty = new SchemaElementDecl();
53
internal static
SchemaElementDecl
CreateAnyTypeElementDecl()
55
SchemaElementDecl
anyTypeElementDecl = new SchemaElementDecl();
67
get { return ((
SchemaElementDecl
)this).Prefix; }
72
get { return ((
SchemaElementDecl
)this).Name.Name; }
124
internal
SchemaElementDecl
Clone()
126
return (
SchemaElementDecl
)MemberwiseClone();
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaInfo.cs (24)
32
private Dictionary<XmlQualifiedName,
SchemaElementDecl
> _elementDecls = new Dictionary<XmlQualifiedName,
SchemaElementDecl
>();
33
private Dictionary<XmlQualifiedName,
SchemaElementDecl
> _undeclaredElementDecls = new Dictionary<XmlQualifiedName,
SchemaElementDecl
>();
47
private Dictionary<XmlQualifiedName,
SchemaElementDecl
> _elementDeclsByType = new Dictionary<XmlQualifiedName,
SchemaElementDecl
>();
68
internal Dictionary<XmlQualifiedName,
SchemaElementDecl
> ElementDecls
73
internal Dictionary<XmlQualifiedName,
SchemaElementDecl
> UndeclaredElementDecls
113
internal Dictionary<XmlQualifiedName,
SchemaElementDecl
> ElementDeclsByType
141
internal
SchemaElementDecl
GetElementDecl(XmlQualifiedName qname)
143
SchemaElementDecl
elemDecl;
151
internal
SchemaElementDecl
GetTypeDecl(XmlQualifiedName qname)
153
SchemaElementDecl
elemDecl;
164
SchemaElementDecl
ed = GetElementDecl(qname);
184
SchemaElementDecl
ed = GetElementDecl(qname);
202
internal SchemaAttDef GetAttributeXdr(
SchemaElementDecl
ed, XmlQualifiedName qname)
224
internal SchemaAttDef GetAttributeXsd(
SchemaElementDecl
ed, XmlQualifiedName qname, XmlSchemaObject partialValidationType, out AttributeMatchState attributeMatchState)
305
internal SchemaAttDef GetAttributeXsd(
SchemaElementDecl
ed, XmlQualifiedName qname, ref bool skip)
359
foreach (KeyValuePair<XmlQualifiedName,
SchemaElementDecl
> entry in sinfo._elementDecls)
366
foreach (KeyValuePair<XmlQualifiedName,
SchemaElementDecl
> entry in sinfo._elementDeclsByType)
391
Dictionary<XmlQualifiedName,
SchemaElementDecl
> elements = _elementDecls;
394
foreach (
SchemaElementDecl
e in elements.Values)
431
SchemaElementDecl
elementDecl;
441
foreach (
SchemaElementDecl
elemDecl in _elementDecls.Values)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (4)
697
SchemaElementDecl
decl = new SchemaElementDecl();
833
SchemaElementDecl
decl = new SchemaElementDecl();
2701
SchemaElementDecl
decl = null;
2862
xe.ElementDecl =
SchemaElementDecl
.Empty;
FrameworkFork\Microsoft.Xml\Xml\schema\validationstate.cs (2)
31
public
SchemaElementDecl
ElementDecl; // ElementDecl
32
public
SchemaElementDecl
ElementDeclBeforeXsi; //elementDecl before its changed by that of xsi:type's
FrameworkFork\Microsoft.Xml\Xml\schema\XdrBuilder.cs (6)
66
internal
SchemaElementDecl
_ElementDecl;
118
internal
SchemaElementDecl
_ElementDecl; // Element Information
705
foreach (
SchemaElementDecl
ed in builder._UndeclaredElements.Values)
910
SchemaElementDecl
ed = builder._ElementDef._ElementDecl;
1195
SchemaElementDecl
ed = (
SchemaElementDecl
)builder._UndeclaredElements[qname];
FrameworkFork\Microsoft.Xml\Xml\schema\xdrvalidator.cs (2)
195
private
SchemaElementDecl
ThoroughGetElementDecl()
225
SchemaElementDecl
elementDecl = schemaInfo.GetElementDecl(elementName);
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaComplexType.cs (2)
57
s_untypedAnyType.ElementDecl =
SchemaElementDecl
.CreateAnyTypeElementDecl();
79
localAnyType.ElementDecl =
SchemaElementDecl
.CreateAnyTypeElementDecl();
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaElement.cs (2)
45
private
SchemaElementDecl
_elementDecl;
334
internal
SchemaElementDecl
ElementDecl
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaType.cs (2)
28
private volatile
SchemaElementDecl
_elementDecl;
271
internal
SchemaElementDecl
ElementDecl
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaValidator.cs (21)
438
SchemaElementDecl
elementDecl = FastGetElementDecl(elementName, particle);
553
SchemaElementDecl
currentElementDecl = _context.ElementDecl;
755
SchemaElementDecl
currentElementDecl = _context.ElementDecl;
946
SchemaElementDecl
currentElementDecl = _context.ElementDecl;
1017
SchemaElementDecl
elementDecl = _context.ElementDecl;
1052
SchemaElementDecl
currentElementDecl = _context.ElementDecl;
1205
SchemaElementDecl
contextElementDecl = _context.ElementDecl;
1446
SchemaElementDecl
currentElementDecl = _context.ElementDecl;
1451
SchemaElementDecl
declBeforeXsi = _context.ElementDeclBeforeXsi;
1491
SchemaElementDecl
currentElementDecl = _context.ElementDecl;
1607
private
SchemaElementDecl
FastGetElementDecl(XmlQualifiedName elementName, object particle)
1609
SchemaElementDecl
elementDecl = null;
1658
private
SchemaElementDecl
CheckXsiTypeAndNil(
SchemaElementDecl
elementDecl, string xsiType, string xsiNil, ref bool declFound)
1703
SchemaElementDecl
elementDeclXsi = _compiledSchemaInfo.GetTypeDecl(xsiTypeName);
1836
SchemaElementDecl
elementDecl = _context.ElementDecl;
2128
private void CheckRequiredAttributes(
SchemaElementDecl
currentElementDecl)
2146
SchemaElementDecl
beforeXsiDecl = _context.ElementDeclBeforeXsi;
2147
SchemaElementDecl
currentDecl = _context.ElementDecl;
2187
SchemaElementDecl
currentElementDecl = _context.ElementDecl;
2248
SchemaElementDecl
currentElementDecl = _context.ElementDecl;
FrameworkFork\Microsoft.Xml\Xml\schema\xsdvalidator.cs (6)
219
SchemaElementDecl
elementDecl = FastGetElementDecl(particle);
366
private
SchemaElementDecl
FastGetElementDecl(object particle)
368
SchemaElementDecl
elementDecl = null;
385
private
SchemaElementDecl
ThoroughGetElementDecl(
SchemaElementDecl
elementDecl, XmlQualifiedName xsiType, string xsiNil)
407
SchemaElementDecl
elementDeclXsi;