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