22 references to IsWhiteSpace
PresentationBuildTasks (3)
Core\CSharp\System\Windows\Media\ParsersCommon.cs (2)
131while ((curIndex < pathString.Length) && Char.IsWhiteSpace(pathString, curIndex)) 145while ((curIndex < pathString.Length) && Char.IsWhiteSpace(pathString, curIndex))
Shared\MS\Internal\TokenizerHelper.cs (1)
105if (!Char.IsWhiteSpace(_str, _charIndex))
PresentationCore (2)
Core\CSharp\System\Windows\Media\ParsersCommon.cs (2)
131while ((curIndex < pathString.Length) && Char.IsWhiteSpace(pathString, curIndex)) 145while ((curIndex < pathString.Length) && Char.IsWhiteSpace(pathString, curIndex))
System.Data (1)
fx\src\data\System\Data\xmlsaver.cs (1)
2686if (!Char.IsWhiteSpace(tempValue, i)) {
System.Data.Entity.Design (4)
System\Data\EntityModel\Emitters\FixUp.cs (2)
399if ( (index == 0 || char.IsWhiteSpace(line,index-1)) && (indexAfter == line.Length || char.IsWhiteSpace(line,indexAfter)) )
System\Data\EntityModel\Emitters\FixUpCollection.cs (2)
648if ( (index == 0 || char.IsWhiteSpace(line, index-1)) && (indexAfter == line.Length || (ch=line[indexAfter]) == '(' || char.IsWhiteSpace(ch)) ) 670if ( index >= line.Length || !char.IsWhiteSpace(line, index) )
System.Data.Services (3)
System\Data\Services\HttpProcessUtility.cs (1)
563while (textIndex < text.Length && Char.IsWhiteSpace(text, textIndex))
System\Data\Services\WebUtil.cs (2)
1155(Char.IsWhiteSpace(elementValue, 0) || 1156Char.IsWhiteSpace(elementValue, elementValue.Length - 1)))
System.Data.Services.Client (1)
parent\Server\System\Data\Services\HttpProcessUtility.cs (1)
563while (textIndex < text.Length && Char.IsWhiteSpace(text, textIndex))
System.Data.Services.Design (4)
System\Data\EntityModel\Emitters\FixUp.cs (2)
397if ( (index == 0 || char.IsWhiteSpace(line,index-1)) && (indexAfter == line.Length || char.IsWhiteSpace(line,indexAfter)) )
System\Data\EntityModel\Emitters\FixUpCollection.cs (2)
644if ( (index == 0 || char.IsWhiteSpace(line, index-1)) && (indexAfter == line.Length || (ch=line[indexAfter]) == '(' || char.IsWhiteSpace(ch)) ) 666if ( index >= line.Length || !char.IsWhiteSpace(line, index) )
System.Web (1)
UI\ClientScriptManager.cs (1)
925while ((index >= 0) && Char.IsWhiteSpace(script, index)) {
System.Web.DataVisualization (1)
Common\General\LegendColumns.cs (1)
1844 if(char.IsWhiteSpace(resultString, charIndex) &&
System.Windows.Forms.DataVisualization (1)
Common\General\LegendColumns.cs (1)
1844 if(char.IsWhiteSpace(resultString, charIndex) &&
WindowsBase (1)
Shared\MS\Internal\TokenizerHelper.cs (1)
105if (!Char.IsWhiteSpace(_str, _charIndex))