33 references to fAttrValue
System.Xml (33)
System\Xml\Core\HtmlEncodedRawTextWriter.cs (2)
565
while ( pDst < pDstEnd && ( ( ( xmlCharType.charProperties[( ch = *pSrc )] & XmlCharType.
fAttrValue
) != 0 ) ) ) {
642
while ( pDst < pDstEnd && ( ( ( xmlCharType.charProperties[( ch = *pSrc )] & XmlCharType.
fAttrValue
) != 0 ) && ch < 0x80 ) ) {
System\Xml\Core\HtmlUtf8RawTextWriter.cs (2)
563
while ( pDst < pDstEnd && ( ( ( xmlCharType.charProperties[( ch = *pSrc )] & XmlCharType.
fAttrValue
) != 0 ) && ch <= 0x7F ) ) {
642
while ( pDst < pDstEnd && ( ( ( xmlCharType.charProperties[( ch = *pSrc )] & XmlCharType.
fAttrValue
) != 0 ) && ch < 0x80 ) ) {
System\Xml\Core\XmlEncodedRawTextWriter.cs (3)
827
while ( pDst < pDstEnd && ( ( ( xmlCharType.charProperties[( ch = *pSrc )] & XmlCharType.
fAttrValue
) != 0 ) ) ) {
924
while ( pDst < pDstEnd && ( ( ( xmlCharType.charProperties[( ch = *pSrc )] & XmlCharType.
fAttrValue
) != 0 ) ) ) {
1290
while ( pDst < pDstEnd && ( ( ( xmlCharType.charProperties[( ch = *pSrc )] & XmlCharType.
fAttrValue
) != 0 ) && ch != ']' ) ) {
System\Xml\Core\XmlEncodedRawTextWriterAsync.cs (3)
602
while ( pDst < pDstEnd && ( ( ( xmlCharType.charProperties[( ch = *pSrc )] & XmlCharType.
fAttrValue
) != 0 ) ) ) {
772
while ( pDst < pDstEnd && ( ( ( xmlCharType.charProperties[( ch = *pSrc )] & XmlCharType.
fAttrValue
) != 0 ) ) ) {
1397
while ( pDst < pDstEnd && ( ( ( xmlCharType.charProperties[( ch = *pSrc )] & XmlCharType.
fAttrValue
) != 0 ) && ch != ']' ) ) {
System\Xml\Core\XmlTextEncoder.cs (3)
130
while ( i < endPos && ( xmlCharType.charProperties[ch = array[i]] & XmlCharType.
fAttrValue
) != 0 ) { // ( xmlCharType.IsAttributeValueChar( ( ch = array[i] ) ) ) ) {
240
while ( i < len && ( xmlCharType.charProperties[ch = text[i]] & XmlCharType.
fAttrValue
) != 0 ) { // ( xmlCharType.IsAttributeValueChar( ( ch = text[i] ) ) ) ) {
333
while ( i < len && ( xmlCharType.charProperties[ch = text[i]] & XmlCharType.
fAttrValue
) != 0 ) { // ( xmlCharType.IsAttributeValueChar( ( text[i] ) ) ) ) {
System\Xml\Core\XmlTextReaderImpl.cs (7)
3440
while ( ( (xmlCharType.charProperties[chars[pos]] & XmlCharType.
fAttrValue
) != 0) ) {
4474
while ( ( ( xmlCharType.charProperties[tmpch3 = chars[pos]] & XmlCharType.
fAttrValue
) != 0 ) ) {
4671
while ( ( ( xmlCharType.charProperties[chars[pos]] & XmlCharType.
fAttrValue
) != 0 ) ) {
6225
while ( ( ( xmlCharType.charProperties[ch = chars[pos]] & XmlCharType.
fAttrValue
) != 0 ) && chars[pos] != stopChar && ch != '-' && ch != '?') {
7439
while ( ( ( xmlCharType.charProperties[c = chars[pos]] & XmlCharType.
fAttrValue
) != 0 ) && c != '/' ) {
7444
while ( ( ( xmlCharType.charProperties[c = chars[pos]] & XmlCharType.
fAttrValue
) != 0 ) ) {
7703
while ( ( ( xmlCharType.charProperties[chars[pos]] & XmlCharType.
fAttrValue
) != 0 ) )
System\Xml\Core\XmlTextReaderImplAsync.cs (4)
1273
while (((xmlCharType.charProperties[chars[pos]] & XmlCharType.
fAttrValue
) != 0)) {
2360
while (((xmlCharType.charProperties[tmpch3 = chars[pos]] & XmlCharType.
fAttrValue
) != 0)) {
2453
while (((xmlCharType.charProperties[chars[pos]] & XmlCharType.
fAttrValue
) != 0)) {
4282
while (((xmlCharType.charProperties[ch = chars[pos]] & XmlCharType.
fAttrValue
) != 0) && chars[pos] != stopChar && ch != '-' && ch != '?') {
System\Xml\Core\XmlUtf8RawTextWriter.cs (3)
687
while ( pDst < pDstEnd && ( ( ( xmlCharType.charProperties[( ch = *pSrc )] & XmlCharType.
fAttrValue
) != 0 ) && ch <= 0x7F ) ) {
784
while ( pDst < pDstEnd && ( ( ( xmlCharType.charProperties[( ch = *pSrc )] & XmlCharType.
fAttrValue
) != 0 ) && ch <= 0x7F ) ) {
1150
while ( pDst < pDstEnd && ( ( ( xmlCharType.charProperties[( ch = *pSrc )] & XmlCharType.
fAttrValue
) != 0 ) && ch != ']' && ch <= 0x7F ) ) {
System\Xml\Core\XmlUtf8RawTextWriterAsync.cs (3)
520
while ( pDst < pDstEnd && ( ( ( xmlCharType.charProperties[( ch = *pSrc )] & XmlCharType.
fAttrValue
) != 0 ) && ch <= 0x7F ) ) {
689
while ( pDst < pDstEnd && ( ( ( xmlCharType.charProperties[( ch = *pSrc )] & XmlCharType.
fAttrValue
) != 0 ) && ch <= 0x7F ) ) {
1314
while ( pDst < pDstEnd && ( ( ( xmlCharType.charProperties[( ch = *pSrc )] & XmlCharType.
fAttrValue
) != 0 ) && ch != ']' && ch <= 0x7F ) ) {
System\Xml\Schema\DtdParser.cs (1)
2328
while ( ( xmlCharType.charProperties[chars[curPos]] & XmlCharType.
fAttrValue
) != 0 && chars[curPos] != '%' ) {
System\Xml\Schema\DtdParserAsync.cs (1)
1785
while ((xmlCharType.charProperties[chars[curPos]] & XmlCharType.
fAttrValue
) != 0 && chars[curPos] != '%') {
System\Xml\XmlCharType.cs (1)
602
return ( charProperties[ch] &
fAttrValue
) != 0;