Home
last modified time | relevance | path

Searched refs:GetStatements (Results 1 – 25 of 200) sorted by relevance

12345678

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.CodeDom/tests/CodeTypeMembers/
H A DCodeMemberPropertyTests.cs21 Assert.Empty(property.GetStatements); in Ctor_Default()
58 property.GetStatements.Add(statement1); in HasGet_AddedGetStatements_ReturnsTrue()
60 Assert.Equal(new CodeStatement[] { statement1 }, property.GetStatements.Cast<CodeStatement>()); in HasGet_AddedGetStatements_ReturnsTrue()
63 property.GetStatements.Add(statement2); in HasGet_AddedGetStatements_ReturnsTrue()
66 …Assert.Equal(new CodeStatement[] { statement1, statement2 }, property.GetStatements.Cast<CodeState… in HasGet_AddedGetStatements_ReturnsTrue()
76 property.GetStatements.Add(new CodeMethodReturnStatement(new CodePrimitiveExpression("value"))); in HasGet_SetFalse_RemovesAllGetStatements()
80 Assert.Empty(property.GetStatements); in HasGet_SetFalse_RemovesAllGetStatements()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.CodeDom/src/System/CodeDom/
H A DCodeMemberProperty.cs27 get { return _hasGet || GetStatements.Count > 0; }
33 GetStatements.Clear();
51 public CodeStatementCollection GetStatements { get; } = new CodeStatementCollection(); property in System.CodeDom.CodeMemberProperty
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Design/Test/System.Resources.Tools/
H A DStronglyTypedResourceBuilderCodeDomTest.cs210 Assert.IsInstanceOfType (typeof (CodeConditionStatement), resourceManager.GetStatements [0]); in ResourceManagerProperty()
212 … ((CodeConditionStatement)resourceManager.GetStatements [0]).TrueStatements.Count); in ResourceManagerProperty()
214 …VariableDeclarationStatement)((CodeConditionStatement)resourceManager.GetStatements [0]).TrueState… in ResourceManagerProperty()
228 …eFieldReferenceExpression)((CodeMethodReturnStatement)resourceManager.GetStatements [1]).Expressio… in ResourceManagerProperty()
255 …((CodeFieldReferenceExpression)((CodeMethodReturnStatement)culture.GetStatements [0]).Expression).… in CultureProperty()
284 CodeVariableDeclarationStatement cvds = (CodeVariableDeclarationStatement)cmp.GetStatements [0]; in ResourcePropertiesForStandard()
298 …CodeCastExpression cce = ((CodeCastExpression)((CodeMethodReturnStatement)cmp.GetStatements [1]).E… in ResourcePropertiesForStandard()
319 Assert.IsInstanceOfType (typeof (CodeMethodReturnStatement), cmp.GetStatements [0]); in ResourcePropertyForStrings()
321 …n cmie = ((CodeMethodInvokeExpression)((CodeMethodReturnStatement)cmp.GetStatements [0]).Expressio… in ResourcePropertyForStrings()
345 …n cmie = ((CodeMethodInvokeExpression)((CodeMethodReturnStatement)cmp.GetStatements [0]).Expressio… in ResourcePropertyForStreams()
H A DStronglyTypedResourceBuilderNamespaceTests.cs238 …cvds = ((CodeVariableDeclarationStatement)((CodeConditionStatement)resourceManager.GetStatements [… in ResourcesNamespaceEmpty()
268 …cvds = ((CodeVariableDeclarationStatement)((CodeConditionStatement)resourceManager.GetStatements [… in ResourcesNamespaceNull()
296 …VariableDeclarationStatement)((CodeConditionStatement)resourceManager.GetStatements [0]).TrueState… in ResourcesNamespaceProviderKeywords()
328 …VariableDeclarationStatement)((CodeConditionStatement)resourceManager.GetStatements [0]).TrueState… in ResourcesNamespaceSpecialChars()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Design/System.Resources.Tools/
H A DStronglyTypedResourceBuilder.cs365 cultureProp.GetStatements.Add (new CodeMethodReturnStatement ( in GenerateCultureProp()
408 resourceManagerProp.GetStatements.Add (new CodeConditionStatement ( in GenerateResourceManagerProp()
416 resourceManagerProp.GetStatements.Add (new CodeMethodReturnStatement ( in GenerateResourceManagerProp()
429 prop.GetStatements.Add (new CodeVariableDeclarationStatement ( in GenerateStandardResourceProp()
438 prop.GetStatements.Add (new CodeMethodReturnStatement ( in GenerateStandardResourceProp()
450 prop.GetStatements.Add (new CodeMethodReturnStatement ( in GenerateStringResourceProp()
466 prop.GetStatements.Add (new CodeMethodReturnStatement ( in GenerateStreamResourceProp()
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vault-plugin-database-elasticsearch/vendor/github.com/hashicorp/vault/sdk/database/dbplugin/v5/
H A Dgrpc_server.go68 Statements: getStatementsFromProto(req.GetStatements()),
105 Statements: getStatementsFromProto(req.GetPassword().GetStatements()),
118 Statements: getStatementsFromProto(req.GetExpiration().GetStatements()),
151 Statements: getStatementsFromProto(req.GetStatements()),
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vault-plugin-database-couchbase/vendor/github.com/hashicorp/vault/sdk/database/dbplugin/v5/
H A Dgrpc_server.go68 Statements: getStatementsFromProto(req.GetStatements()),
105 Statements: getStatementsFromProto(req.GetPassword().GetStatements()),
118 Statements: getStatementsFromProto(req.GetExpiration().GetStatements()),
151 Statements: getStatementsFromProto(req.GetStatements()),
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vault-plugin-database-mongodbatlas/vendor/github.com/hashicorp/vault/sdk/database/dbplugin/v5/
H A Dgrpc_server.go68 Statements: getStatementsFromProto(req.GetStatements()),
105 Statements: getStatementsFromProto(req.GetPassword().GetStatements()),
118 Statements: getStatementsFromProto(req.GetExpiration().GetStatements()),
151 Statements: getStatementsFromProto(req.GetStatements()),
/dports/security/vault/vault-1.8.2/sdk/database/dbplugin/v5/
H A Dgrpc_server.go68 Statements: getStatementsFromProto(req.GetStatements()),
105 Statements: getStatementsFromProto(req.GetPassword().GetStatements()),
118 Statements: getStatementsFromProto(req.GetExpiration().GetStatements()),
151 Statements: getStatementsFromProto(req.GetStatements()),
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/Compilation/
H A DTemplateControlCodeDomTreeGenerator.cs129 …prop.GetStatements.Add(new CodeMethodReturnStatement(new CodeCastExpression(propertyType, propRef)… in BuildStronglyTypedProperty()
235 … prop.GetStatements.Add(new CodeMethodReturnStatement(new CodePrimitiveExpression(false))); in BuildAutomaticEventHookup()
266 prop.GetStatements.Add(new CodeMethodReturnStatement(new CodeCastExpression( in BuildApplicationInstanceProperty()
H A DBaseCodeDomTreeGenerator.cs481 prop.GetStatements.Add(new CodeMethodReturnStatement(new CodeCastExpression( in BuildProfileProperty()
503 prop.GetStatements.Add(new CodeMethodReturnStatement(fieldRef)); in BuildAccessorProperty()
569 prop.GetStatements.Add(ifStmt); in BuildInjectedGetPropertyMethod()
570 prop.GetStatements.Add(new CodeMethodReturnStatement(fieldAccess)); in BuildInjectedGetPropertyMethod()
611 …prop.GetStatements.Add(new CodeMethodReturnStatement(new CodeCastExpression(declaredType, getObjec… in BuildObjectPropertiesHelper()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web/System.Web.Compilation/
H A DPageThemeCompiler.cs75 …prop.GetStatements.Add (new CodeMethodReturnStatement (new CodeVariableReferenceExpression ("__con… in CreateMethods()
88 …prop.GetStatements.Add (new CodeMethodReturnStatement (new CodeVariableReferenceExpression ("__lin… in CreateMethods()
96 prop.GetStatements.Add (new CodeMethodReturnStatement ( in CreateMethods()
H A DMasterPageCompiler.cs58 mprop.GetStatements.Add (new CodeMethodReturnStatement (prop)); in CreateMethods()
H A DBaseCompiler.cs404 property.GetStatements.Add (ret); in InternalCreatePageProperty()
507 prop.GetStatements.Add (stmt); in CreateApplicationOrSessionPropertyForObject()
513 prop.GetStatements.Add (new CodeMethodReturnStatement (result)); in CreateApplicationOrSessionPropertyForObject()
544 prop.GetStatements.Add (stmt); in CreatePropertyForObject()
545 prop.GetStatements.Add (new CodeMethodReturnStatement (field)); in CreatePropertyForObject()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/XamlBuildTask/Microsoft/Build/Tasks/Xaml/
H A DClassGenerator.cs931 GetStatements = in GenerateProperty()
1110 AssemblyList.GetStatements.Add(assemblyListNull); in GenerateAssemblyListProperty()
1111 AssemblyList.GetStatements.Add(new CodeMethodReturnStatement(assemblyList)); in GenerateAssemblyListProperty()
1156 …CodeVariableReferenceExpression xsc = SchemaContext.GetStatements.DeclareVar(typeof(XamlSchemaCont… in GenerateSchemaContext()
1170 SchemaContext.GetStatements.Add(getSchemaContextIfNotNull); in GenerateSchemaContext()
1180 SchemaContext.GetStatements.Add(initSchemaContext); in GenerateSchemaContext()
1183 SchemaContext.GetStatements.Add(assignSchemaContextField); in GenerateSchemaContext()
1185 SchemaContext.GetStatements.Add(new CodeMethodReturnStatement(xsc)); in GenerateSchemaContext()
/dports/devel/msbuild/msbuild-0.06/src/Tasks/system.design/
H A Dstronglytypedresourcebuilder.cs434 resMgr.GetStatements.Add(new CodeConditionStatement(isResMgrNull, init)); in EmitBasicClassMembers()
435 resMgr.GetStatements.Add(new CodeMethodReturnStatement(field_resMgr)); in EmitBasicClassMembers()
445 culture.GetStatements.Add(new CodeMethodReturnStatement(field_resCulture)); in EmitBasicClassMembers()
576 prop.GetStatements.Add(returnObj); in DefineResourceFetchingProperty()
580 prop.GetStatements.Add(ret); in DefineResourceFetchingProperty()
/dports/devel/msbuild/msbuild-0.06/src/Tasks/
H A DStronglyTypedResourceBuilder.cs439 resMgr.GetStatements.Add(new CodeConditionStatement(isResMgrNull, init)); in EmitBasicClassMembers()
440 resMgr.GetStatements.Add(new CodeMethodReturnStatement(field_resMgr)); in EmitBasicClassMembers()
450 culture.GetStatements.Add(new CodeMethodReturnStatement(field_resCulture)); in EmitBasicClassMembers()
581 prop.GetStatements.Add(returnObj); in DefineResourceFetchingProperty()
585 prop.GetStatements.Add(ret); in DefineResourceFetchingProperty()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/system/codedom/
H A DCodeMemberProperty.cs118 public CodeStatementCollection GetStatements { property in System.CodeDom.CodeMemberProperty
/dports/textproc/textql/textql-1d6fef5/textql/
H A Dmain.go55 func (clo *commandLineOptions) GetStatements() string { func
187 sqlStrings := strings.Split(cmdLineOpts.GetStatements(), ";")
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.CodeDom/
H A DCodeMemberPropertyCas.cs56 Assert.AreEqual (0, cmp.GetStatements.Count, "GetStatements"); in Constructor0_Deny_Unrestricted()
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-dynamodb/include/aws/dynamodb/model/
H A DBatchExecuteStatementRequest.h41 inline const Aws::Vector<BatchStatementRequest>& GetStatements() const{ return m_statements; } in GetStatements() function
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-serverlessrepo/include/aws/serverlessrepo/model/
H A DGetApplicationPolicyResult.h39 …inline const Aws::Vector<ApplicationPolicyStatement>& GetStatements() const{ return m_statements; } in GetStatements() function
H A DPutApplicationPolicyResult.h39 …inline const Aws::Vector<ApplicationPolicyStatement>& GetStatements() const{ return m_statements; } in GetStatements() function
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-wafv2/include/aws/wafv2/model/
H A DAndStatement.h47 inline const Aws::Vector<Statement>& GetStatements() const{ return m_statements; } in GetStatements() function
H A DOrStatement.h47 inline const Aws::Vector<Statement>& GetStatements() const{ return m_statements; } in GetStatements() function

12345678