19 references to fNCNameSC
System.Xml (19)
System\Xml\Core\XmlTextReaderImpl.cs (4)
3932
if( ( ( xmlCharType.charProperties[chars[pos]] & XmlCharType.
fNCNameSC
) != 0 ) ) {
4170
if ( ( (xmlCharType.charProperties[chars[pos]] & XmlCharType.
fNCNameSC
) != 0 ) ||
4376
if (((xmlCharType.charProperties[tmpch2 = chars[pos]] & XmlCharType.
fNCNameSC
) != 0)) {
6801
if ( ( ( xmlCharType.charProperties[chars[pos]] & XmlCharType.
fNCNameSC
) != 0 ) ) {
System\Xml\Core\XmlTextReaderImplAsync.cs (4)
1740
if (((xmlCharType.charProperties[chars[pos]] & XmlCharType.
fNCNameSC
) != 0)) {
2029
if (((xmlCharType.charProperties[chars[pos]] & XmlCharType.
fNCNameSC
) != 0) ||
2251
if (((xmlCharType.charProperties[tmpch2 = chars[pos]] & XmlCharType.
fNCNameSC
) != 0)) {
4644
if (((xmlCharType.charProperties[chars[pos]] & XmlCharType.
fNCNameSC
) != 0)) {
System\Xml\Core\XmlWellFormedWriter.cs (1)
1795
if ((xmlCharType.charProperties[ncname[i]] & XmlCharType.
fNCNameSC
) != 0) { // if ( xmlCharType.IsNCNameChar( ncname[i] ) ) {
System\Xml\Schema\DtdParser.cs (2)
2864
if ( ( xmlCharType.charProperties[chars[curPos]] & XmlCharType.
fNCNameSC
) != 0 ) { // while ( xmlCharType.IsNCNameSingleChar(chars[curPos]) ) {
2932
if ((xmlCharType.charProperties[chars[curPos]] & XmlCharType.
fNCNameSC
) != 0 || chars[curPos] == ':') { // if ( xmlCharType.IsNCNameChar(chars[curPos]) || chars[curPos] == ':' ) {
System\Xml\Schema\DtdParserAsync.cs (2)
2298
if ((xmlCharType.charProperties[chars[curPos]] & XmlCharType.
fNCNameSC
) != 0) { // while ( xmlCharType.IsNCNameSingleChar(chars[curPos]) ) {
2366
if ((xmlCharType.charProperties[chars[curPos]] & XmlCharType.
fNCNameSC
) != 0 || chars[curPos] == ':') { // if ( xmlCharType.IsNCNameChar(chars[curPos]) || chars[curPos] == ':' ) {
System\Xml\ValidateNames.cs (4)
54
if ((xmlCharType.charProperties[s[i]] & XmlCharType.
fNCNameSC
) != 0) { // if (xmlCharType.IsNCNameSingleChar(s[i])) {
91
if ((xmlCharType.charProperties[s[i]] & XmlCharType.
fNCNameSC
) != 0 || s[i] == ':') { // if (xmlCharType.IsNameSingleChar(s[i])) {
147
if ((xmlCharType.charProperties[s[i]] & XmlCharType.
fNCNameSC
) != 0 || s[i] == ':') { // if (xmlCharType.IsNCNameSingleChar(s[i]))
203
if ((xmlCharType.charProperties[s[i]] & XmlCharType.
fNCNameSC
) != 0) { // if (xmlCharType.IsNCNameSingleChar(s[i]))
System\Xml\XmlCharType.cs (1)
513
return ( charProperties[ch] &
fNCNameSC
) != 0;
System\Xml\XmlConvert.cs (1)
560
return (xmlCharType.charProperties[ch] & XmlCharType.
fNCNameSC
) != 0;