13 references to CodeVariableDeclarationStatement
PresentationBuildTasks (1)
BuildTasks\Ms\Internal\MarkupCompiler\MarkupCompiler.cs (1)
981CodeVariableDeclarationStatement cvdsES = new CodeVariableDeclarationStatement(KnownTypes.Types[(int)KnownElements.EventSetter], EVENTSETTER);
System.Data (1)
fx\src\data\System\Data\CodeGen\datacache.cs (1)
1531private static CodeStatement VariableDecl(Type type, String name) { return new CodeVariableDeclarationStatement(type, name); }
System.Data.Entity.Design (1)
System\Data\Entity\Design\EntityViewGeneration\EntityViewGenerator.cs (1)
582CodeVariableDeclarationStatement viewStringDeclaration = new CodeVariableDeclarationStatement(typeof(StringBuilder), "viewString");
System.Web (10)
Compilation\BaseTemplateCodeDomTreeGenerator.cs (5)
998CodeVariableDeclarationStatement tableDecl = new CodeVariableDeclarationStatement(typeof(OrderedDictionary), tableVarName); 1057CodeVariableDeclarationStatement controlDecl = new CodeVariableDeclarationStatement(entry.ControlType, entry.ControlID); 1245CodeVariableDeclarationStatement targetDecl = new CodeVariableDeclarationStatement(builder.ControlType, "target"); 1248CodeVariableDeclarationStatement containerDecl = new CodeVariableDeclarationStatement(bindingContainerType, "Container"); 1573topMethodStatements.Add(new CodeVariableDeclarationStatement(
Compilation\DataBindingExpressionBuilder.cs (2)
83CodeVariableDeclarationStatement targetDecl = new CodeVariableDeclarationStatement(controlBuilder.ControlType, "dataBindingExpressionBuilderTarget"); 96CodeVariableDeclarationStatement containerDecl = new CodeVariableDeclarationStatement(bindingContainerType, "Container");
Compilation\ObjectFactoryCodeDomTreeGenerator.cs (1)
117statements.Add(new CodeVariableDeclarationStatement(typeof(IServiceProvider), "__activator"));
Configuration\BrowserCapabilitiesCodeGenerator.cs (2)
1151cmm.Statements.Add(new CodeVariableDeclarationStatement(typeof(IDictionary), _dictionaryRefName)); 1318cmm.Statements.Add(new CodeVariableDeclarationStatement(varType, varName));