Home
last modified time | relevance | path

Searched refs:TContext (Results 1 – 25 of 124) sorted by relevance

12345

/dports/editors/picpas/PicPas-7940bc3/_libraries/Xpres-1.3.2/
H A DXpresBas.pas44 TContext = class;
85 TContext = class class
164 function AddContext: TContext; in AddContext()
197 constructor TContext.Create;
204 destructor TContext.Destroy;
218 function TContext.Eof: Boolean; in TContext.Eof()
242 procedure TContext.SkipWhites;
267 function TContext.Token: string; in TContext.Token()
301 function TContext.Next: boolean; in Next()
335 procedure TContext.SetStartPos;
[all …]
/dports/editors/picpas/PicPas-7940bc3/txpres/
H A DXpresBas.pas44 TContext = class;
85 TContext = class class
164 function AddContext: TContext; in AddContext()
197 constructor TContext.Create;
204 destructor TContext.Destroy;
218 function TContext.Eof: Boolean; in TContext.Eof()
242 procedure TContext.SkipWhites;
267 function TContext.Token: string; in TContext.Token()
301 function TContext.Next: boolean; in Next()
335 procedure TContext.SetStartPos;
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web.DynamicData/Test/ModelProviders/
H A DDynamicDataContainerModelProvider.cs14 public class DynamicDataContainerModelProvider <TContext> : DataModelProvider
16 IDynamicDataContainer <TContext> container;
20 public IDynamicDataContainer <TContext> Container
27 container = Activator.CreateInstance (containerType) as IDynamicDataContainer <TContext>;
39 return typeof (TContext);
53 public DynamicDataContainerModelProvider (IDynamicDataContainer <TContext> container) in DynamicDataContainerModelProvider()
81 var table = t as DynamicDataContainerTableProvider <TContext>; in ResolveAssociations()
97 tables.Add (new DynamicDataContainerTableProvider <TContext>(this, table)); in LoadTables()
/dports/lang/mono/mono-5.10.1.57/mcs/class/Mono.CodeContracts/Mono.CodeContracts.Static.Analysis.Numerical/
H A DConstToIntervalEvaluator.cs32 class ConstToIntervalEvaluator<TContext, TVar, TExpr, TInterval, TNumeric> :
33 GenericTypeExpressionVisitor<TVar, TExpr, TContext, TInterval>
34 where TContext : IntervalContextBase<TInterval, TNumeric>
42 public override TInterval Visit (TExpr e, TContext ctx) in Visit()
50 protected override TInterval VisitBool (TExpr expr, TContext ctx) in VisitBool()
59 protected override TInterval VisitInt32 (TExpr expr, TContext ctx) in VisitInt32()
68 protected override TInterval Default (TExpr expr, TContext ctx) in Default()
/dports/textproc/py-sphinx-autoapi/sphinx-autoapi-1.8.4/tests/dotnetexample/example/Identity/test/EF.Test/
H A DDbUtil.cs15 …iceCollection ConfigureDbServices<TContext>(string connectionString, IServiceCollection services =…
22 services.AddDbContext<TContext>(options =>
29 …public static TContext Create<TContext>(string connectionString, IServiceCollection services = nul…
31 …var serviceProvider = ConfigureDbServices<TContext>(connectionString, services).BuildServiceProvid…
32 return serviceProvider.GetRequiredService<TContext>();
/dports/textproc/py-sphinx-autoapi/sphinx-autoapi-1.8.4/tests/dotnetexample/example/Identity/src/EF/
H A DRoleStore.cs35 public class RoleStore<TRole, TContext> : RoleStore<TRole, TContext, string>
37 where TContext : DbContext
44 …public RoleStore(TContext context, IdentityErrorDescriber describer = null) : base(context, descri… in RoleStore()
53 …public class RoleStore<TRole, TContext, TKey> : RoleStore<TRole, TContext, TKey, IdentityUserRole<…
58 where TContext : DbContext
65 …public RoleStore(TContext context, IdentityErrorDescriber describer = null) : base(context, descri… in RoleStore()
76 public class RoleStore<TRole, TContext, TKey, TUserRole, TRoleClaim> :
81 where TContext : DbContext
90 public RoleStore(TContext context, IdentityErrorDescriber describer = null) in RoleStore()
106 public TContext Context { get; private set; }
H A DUserOnlyStore.cs33 public class UserOnlyStore<TUser, TContext> : UserOnlyStore<TUser, TContext, string>
35 where TContext : DbContext
42 …public UserOnlyStore(TContext context, IdentityErrorDescriber describer = null) : base(context, de… in UserOnlyStore()
51 …public class UserOnlyStore<TUser, TContext, TKey> : UserOnlyStore<TUser, TContext, TKey, IdentityU…
53 where TContext : DbContext
61 …public UserOnlyStore(TContext context, IdentityErrorDescriber describer = null) : base(context, de… in UserOnlyStore()
73 public class UserOnlyStore<TUser, TContext, TKey, TUserClaim, TUserLogin, TUserToken> :
89 where TContext : DbContext
100 …public UserOnlyStore(TContext context, IdentityErrorDescriber describer = null) : base(describer ?… in UserOnlyStore()
112 public TContext Context { get; private set; }
H A DUserStore.cs50 public class UserStore<TUser, TRole, TContext> : UserStore<TUser, TRole, TContext, string>
53 where TContext : DbContext
60 …public UserStore(TContext context, IdentityErrorDescriber describer = null) : base(context, descri… in UserStore()
70 …public class UserStore<TUser, TRole, TContext, TKey> : UserStore<TUser, TRole, TContext, TKey, Ide…
73 where TContext : DbContext
81 …public UserStore(TContext context, IdentityErrorDescriber describer = null) : base(context, descri… in UserStore()
96 …public class UserStore<TUser, TRole, TContext, TKey, TUserClaim, TUserRole, TUserLogin, TUserToken…
101 where TContext : DbContext
114 …public UserStore(TContext context, IdentityErrorDescriber describer = null) : base(describer ?? ne… in UserStore()
126 public TContext Context { get; private set; }
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web.DynamicData/Test/Common/
H A DTestDataContainer.cs13 …public class TestDataContainer <TContext>: DynamicDataContainer<TContext> where TContext: ITestDat…
39 TContext contextInstance = ContainedTypeInstance; in Select()
45 var data = Activator.CreateInstance<TContext> (); in GetTables()
/dports/lang/mono/mono-5.10.1.57/mcs/class/Mono.CodeContracts/Mono.CodeContracts.Static.Analysis.ExpressionAnalysis/
H A DExpressionAnalysisFacade.cs38 class ExpressionAnalysisFacade<TSymValue, TContext, TEdgeData>
40 where TContext : IValueContextProvider<TSymValue>
45 public readonly ICodeLayer<TSymValue, TSymValue, TContext, TEdgeData> ValueLayer;
48 public ExpressionAnalysisFacade (ICodeLayer<TSymValue, TSymValue, TContext, TEdgeData> valueLayer, in ExpressionAnalysisFacade() argument
78 return new ValueAnalysis<TSymValue, TContext, TEdgeData> (this); in CreateExpressionAnalysis()
85 return new ExpressionDecoder<TSymValue, TContext, TEdgeData> (ilDecoder, this); in GetDecoder()
/dports/lang/mono/mono-5.10.1.57/mcs/class/Mono.CodeContracts/Mono.CodeContracts.Static.Analysis.StackAnalysis/
H A DStackDepthFactory.cs35 …APC, int, int, IStackContextProvider, Dummy> Create<TContext> (IILDecoder<APC, Dummy, Dummy, TCont…
36 … IMetaDataProvider metadataDecoder) where TContext : IMethodContextProvider
38 return new StackDepthProvider<TContext> (ilDecoder, metadataDecoder);
/dports/textproc/py-sphinx-autoapi/sphinx-autoapi-1.8.4/tests/dotnetexample/example/Identity/test/Identity.FunctionalTests/
H A DRegistrationTests.cs12 …lic abstract class RegistrationTests<TStartup, TContext> : IClassFixture<ServerFactory<TStartup, T…
14 where TContext : DbContext
16 public RegistrationTests(ServerFactory<TStartup, TContext> serverFactory) in RegistrationTests()
21 public ServerFactory<TStartup, TContext> ServerFactory { get; }
H A DAuthorizationTests.cs14 …ic abstract class AuthorizationTests<TStartup, TContext> : IClassFixture<ServerFactory<TStartup, T…
16 where TContext : DbContext
18 public AuthorizationTests(ServerFactory<TStartup, TContext> serverFactory) in AuthorizationTests()
23 public ServerFactory<TStartup, TContext> ServerFactory { get; }
/dports/biology/seqan/seqan-library-2.4.0/include/seqan/basic/
H A Dbasic_exception.h290 template <typename TFunctor, typename TContext>
292 getExceptionMessage(TFunctor const &, TContext const &) in getExceptionMessage()
294 return ExceptionMessage<TFunctor, TContext>::VALUE; in getExceptionMessage()
305 template <typename TFunctor, typename TException, typename TContext = Nothing, bool RETURN_VALUE = …
340 getExceptionMessage(func, TContext())); in operator()
H A Dfundamental_tags.h636 template <typename TContext>
637 inline typename Value<TContext>::Type
638 tagApply(TContext &, TagSelector<>)
640 return typename Value<TContext>::Type();
643 template <typename TContext, typename TTagList>
644 inline typename Value<TContext>::Type
645 tagApply(TContext &ctx, TagSelector<TTagList> &format)
/dports/biology/seqan-apps/seqan-seqan-v2.4.0/include/seqan/basic/
H A Dbasic_exception.h290 template <typename TFunctor, typename TContext>
292 getExceptionMessage(TFunctor const &, TContext const &) in getExceptionMessage()
294 return ExceptionMessage<TFunctor, TContext>::VALUE; in getExceptionMessage()
305 template <typename TFunctor, typename TException, typename TContext = Nothing, bool RETURN_VALUE = …
340 getExceptionMessage(func, TContext())); in operator()
H A Dfundamental_tags.h636 template <typename TContext>
637 inline typename Value<TContext>::Type
638 tagApply(TContext &, TagSelector<>)
640 return typename Value<TContext>::Type();
643 template <typename TContext, typename TTagList>
644 inline typename Value<TContext>::Type
645 tagApply(TContext &ctx, TagSelector<TTagList> &format)
/dports/biology/pbseqan/seqan-21d95d737d8decb5cc3693b9065d81e831e7f57d/include/seqan/basic/
H A Dbasic_exception.h290 template <typename TFunctor, typename TContext>
292 getExceptionMessage(TFunctor const &, TContext const &) in getExceptionMessage()
294 return ExceptionMessage<TFunctor, TContext>::VALUE; in getExceptionMessage()
305 template <typename TFunctor, typename TException, typename TContext = Nothing, bool RETURN_VALUE = …
340 getExceptionMessage(func, TContext())); in operator()
H A Dfundamental_tags.h580 template <typename TContext>
581 inline typename Value<TContext>::Type
582 tagApply(TContext &, TagSelector<>)
584 return typename Value<TContext>::Type();
587 template <typename TContext, typename TTagList>
588 inline typename Value<TContext>::Type
589 tagApply(TContext &ctx, TagSelector<TTagList> &format)
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/src/Microsoft.Web.Http.Data.EntityFramework/
H A DLinqToEntitiesDataController.cs19 …public abstract class LinqToEntitiesDataController<TContext> : DataController where TContext : Obj…
21 private TContext _objectContext;
22 private TContext _refreshContext;
34 protected internal TContext ObjectContext
85 protected virtual TContext CreateObjectContext() in CreateObjectContext()
87 return new TContext(); in CreateObjectContext()
H A DDbDataController.cs18 public abstract class DbDataController<TContext> : DataController
19 where TContext : DbContext, new()
21 private TContext _dbContext;
50 protected TContext DbContext
90 protected virtual TContext CreateDbContext() in CreateDbContext()
92 return new TContext(); in CreateDbContext()
/dports/textproc/py-sphinx-autoapi/sphinx-autoapi-1.8.4/tests/dotnetexample/example/Identity/test/WebSites/Identity.DefaultUI.WebSite/
H A DStartupBase.cs15 public class StartupBase<TUser,TContext>
17 where TContext : DbContext
37 services.AddDbContext<TContext>(options => in ConfigureServices()
46 .AddEntityFrameworkStores<TContext>(); in ConfigureServices()
/dports/lang/mono/mono-5.10.1.57/mcs/class/Mono.CodeContracts/Mono.CodeContracts.Static.Analysis.HeapAnalysis/
H A DValueDecoder.cs36 class ValueDecoder<TContext> :
38 where TContext : IStackContextProvider
41 private readonly IILDecoder<APC, int, int, TContext, Dummy> stack_decoder;
44 public ValueDecoder(HeapAnalysis parent, IILDecoder<APC, int, int, TContext, Dummy> stackDecoder) in ValueDecoder() argument
46 …zy<IValueContextProvider<SymbolicValue>> (()=> new ValueContextProvider<TContext>(this.parent, thi… in ValueDecoder()
/dports/textproc/py-sphinx-autoapi/sphinx-autoapi-1.8.4/tests/dotnetexample/example/Identity/test/Identity.FunctionalTests/Infrastructure/
H A DServerFactory.cs13 public class ServerFactory<TStartup,TContext>: WebApplicationFactory<TStartup>
15 where TContext : DbContext
27 … builder.ConfigureServices(sc => sc.SetupTestDatabase<TContext>(Guid.NewGuid().ToString()) in ConfigureWebHost()
/dports/emulators/dolphin-emu/dolphin-3152428/Externals/WIL/include/wil/
H A Drpc_helpers.h168 template<typename TContext, typename close_fn_t, close_fn_t close_fn>
169 …handle = unique_any<TContext, decltype(&details::rpc_closer_t<TContext, close_fn_t, close_fn>::Clo…

12345