Lines Matching refs:peFlags

35     internal NodeFlags peFlags = NodeFlags.None;  field in CXmlBase
112 get { return peFlags; }
132 if ((this.peFlags & NodeFlags.IsWhitespace) == 0) in InsertNode()
149 if ((rChild.peFlags & NodeFlags.IsWhitespace) == 0) in _Child()
178 peFlags |= NodeFlags.DefaultAttribute; in CXmlAttribute()
188 if ((this.peFlags & NodeFlags.DefaultAttribute) == 0) in Write()
213 if ((this.peFlags & NodeFlags.DefaultAttribute) == 0) in WriteXml()
250 get { return ((base.peFlags & NodeFlags.SingleQuote) != 0 ? '\'' : '"'); }
251 …set { if (value == '\'') base.peFlags |= NodeFlags.SingleQuote; else base.peFlags &= ~NodeFlags.Si…
287 peFlags |= CXmlCache._eDefaultFlags; in CXmlNode()
292 peFlags |= NodeFlags.IsWhitespace; in CXmlNode()
297 peFlags |= NodeFlags.EmptyElement; in CXmlNode()
302 peFlags |= NodeFlags.HasValue; in CXmlNode()
367 if ((this.prParentNode.peFlags & NodeFlags.DocumentRoot) != 0) in Write()
459 if ((base.peFlags & NodeFlags.EmptyElement) == 0) in WriteXml()
518 if ((this.peFlags & NodeFlags.HasValue) != 0)
524 if ((this.peFlags & NodeFlags.UnparsedEntities) == 0)
710 prDocumentRootNode.peFlags = NodeFlags.DocumentRoot | NodeFlags.Indent; in Load()
932 rNewNode.peFlags |= NodeFlags.MixedContent; in Process()
937 rNewNode.peFlags |= NodeFlags.Indent; // Turn on Indent for current Node in Process()
943 rNewNode.peFlags |= NodeFlags.Indent; // Turn on Indent in Process()
944 rNewNode.peFlags &= ~NodeFlags.MixedContent; // Turn off MixedContent in Process()
971 rValueNode.peFlags = _eDefaultFlags | NodeFlags.HasValue; in Process()
1022 rNewNode.peFlags = _eDefaultFlags | NodeFlags.AttributeTextNode; in Process()
1024 … rNewNode.peFlags |= NodeFlags.MixedContent; // turn on Mixed Content for current node in Process()
1025 rNewNode.peFlags &= ~NodeFlags.Indent; // turn off Indent for current node in Process()
1026 … rParentNode.peFlags |= NodeFlags.MixedContent; // turn on Mixed Content for Parent Node in Process()
1032 … rNewNode.peFlags |= NodeFlags.MixedContent; // turn on Mixed Content for current node in Process()
1033 rNewNode.peFlags &= ~NodeFlags.Indent; // turn off Indent for current node in Process()
1034 … rParentNode.peFlags |= NodeFlags.MixedContent; // turn on Mixed Content for Parent Node in Process()