Home
last modified time | relevance | path

Searched refs:customType (Results 1 – 25 of 768) sorted by relevance

12345678910>>...31

/dports/textproc/py-sphinx-autoapi/sphinx-autoapi-1.8.4/tests/dotnetexample/example/Identity/src/Core/
H A DIdentityBuilder.cs148 var customType = typeof(TUserManager); field in Microsoft.AspNetCore.Identity.IdentityBuilder.__anon1
149 if (!userManagerType.GetTypeInfo().IsAssignableFrom(customType.GetTypeInfo()))
151 …throw new InvalidOperationException(Resources.FormatInvalidManagerType(customType.Name, "UserManag…
153 if (userManagerType != customType)
155 … Services.AddScoped(customType, services => services.GetRequiredService(userManagerType));
157 return AddScoped(userManagerType, customType);
230 var customType = typeof(TRoleManager); field in Microsoft.AspNetCore.Identity.IdentityBuilder.__anon5
231 if (!managerType.GetTypeInfo().IsAssignableFrom(customType.GetTypeInfo()))
233 …throw new InvalidOperationException(Resources.FormatInvalidManagerType(customType.Name, "RoleManag…
235 if (managerType != customType)
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/google/apiclient-services/src/Google/Service/Directory/
H A DUserRelation.php20 public $customType; variable in Google_Service_Directory_UserRelation
24 public function setCustomType($customType) argument
26 $this->customType = $customType;
30 return $this->customType;
H A DUserExternalId.php20 public $customType; variable in Google_Service_Directory_UserExternalId
24 public function setCustomType($customType) argument
26 $this->customType = $customType;
30 return $this->customType;
H A DUserKeyword.php20 public $customType; variable in Google_Service_Directory_UserKeyword
24 public function setCustomType($customType) argument
26 $this->customType = $customType;
30 return $this->customType;
H A DUserWebsite.php20 public $customType; variable in Google_Service_Directory_UserWebsite
25 public function setCustomType($customType) argument
27 $this->customType = $customType;
31 return $this->customType;
H A DUserEmail.php21 public $customType; variable in Google_Service_Directory_UserEmail
33 public function setCustomType($customType) argument
35 $this->customType = $customType;
39 return $this->customType;
H A DUserPhone.php20 public $customType; variable in Google_Service_Directory_UserPhone
25 public function setCustomType($customType) argument
27 $this->customType = $customType;
31 return $this->customType;
H A DUserIm.php21 public $customType; variable in Google_Service_Directory_UserIm
35 public function setCustomType($customType) argument
37 $this->customType = $customType;
41 return $this->customType;
H A DUserLocation.php22 public $customType; variable in Google_Service_Directory_UserLocation
44 public function setCustomType($customType) argument
46 $this->customType = $customType;
50 return $this->customType;
H A DUserOrganization.php21 public $customType; variable in Google_Service_Directory_UserOrganization
41 public function setCustomType($customType) argument
43 $this->customType = $customType;
47 return $this->customType;
H A DUserAddress.php22 public $customType; variable in Google_Service_Directory_UserAddress
50 public function setCustomType($customType) argument
52 $this->customType = $customType;
56 return $this->customType;
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/Directory/
H A DUserExternalId.php20 public $customType; variable in Google_Service_Directory_UserExternalId
24 public function setCustomType($customType) argument
26 $this->customType = $customType;
30 return $this->customType;
H A DUserRelation.php20 public $customType; variable in Google_Service_Directory_UserRelation
24 public function setCustomType($customType) argument
26 $this->customType = $customType;
30 return $this->customType;
H A DUserKeyword.php20 public $customType; variable in Google_Service_Directory_UserKeyword
24 public function setCustomType($customType) argument
26 $this->customType = $customType;
30 return $this->customType;
H A DUserEmail.php21 public $customType; variable in Google_Service_Directory_UserEmail
33 public function setCustomType($customType) argument
35 $this->customType = $customType;
39 return $this->customType;
H A DUserPhone.php20 public $customType; variable in Google_Service_Directory_UserPhone
25 public function setCustomType($customType) argument
27 $this->customType = $customType;
31 return $this->customType;
H A DUserWebsite.php20 public $customType; variable in Google_Service_Directory_UserWebsite
25 public function setCustomType($customType) argument
27 $this->customType = $customType;
31 return $this->customType;
H A DUserIm.php21 public $customType; variable in Google_Service_Directory_UserIm
35 public function setCustomType($customType) argument
37 $this->customType = $customType;
41 return $this->customType;
H A DUserLocation.php22 public $customType; variable in Google_Service_Directory_UserLocation
44 public function setCustomType($customType) argument
46 $this->customType = $customType;
50 return $this->customType;
H A DUserOrganization.php21 public $customType; variable in Google_Service_Directory_UserOrganization
41 public function setCustomType($customType) argument
43 $this->customType = $customType;
47 return $this->customType;
H A DUserAddress.php22 public $customType; variable in Google_Service_Directory_UserAddress
50 public function setCustomType($customType) argument
52 $this->customType = $customType;
56 return $this->customType;
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.IdentityModel/System/IdentityModel/Configuration/
H A DTypeResolveHelper.cs14 …ic T Resolve<T>(ConfigurationElementInterceptor customTypeElement, Type customType) where T : class
21 if (customType == null)
28 if (!typeof(T).IsAssignableFrom(customType))
33 SR.GetString(SR.ID1029, customType.AssemblyQualifiedName, typeof(T)));
51 customType,
77 …owHelperError(new ConfigurationErrorsException(SR.GetString(SR.ID0012, customType.AssemblyQualifie…
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.beans/src/main/java/org/springframework/beans/factory/annotation/
H A DCustomAutowireConfigurer.java99 Class customType = null; in postProcessBeanFactory() local
101 customType = (Class) value; in postProcessBeanFactory()
105 customType = ClassUtils.resolveClassName(className, this.beanClassLoader); in postProcessBeanFactory()
111 if (!Annotation.class.isAssignableFrom(customType)) { in postProcessBeanFactory()
113 "Qualifier type [" + customType.getName() + "] needs to be annotation type"); in postProcessBeanFactory()
115 resolver.addQualifierType(customType); in postProcessBeanFactory()
/dports/games/scummvm/scummvm-2.5.1/engines/twine/
H A Dinput.cpp121 switch (event.customType) { in processCustomEngineEventStart()
136 _actionStates[event.customType] = 1 + event.kbdRepeat; in processCustomEngineEventStart()
140 _actionStates[event.customType] = 1 + event.kbdRepeat; in processCustomEngineEventStart()
142 debug(3, "twine custom event type start: %i", event.customType); in processCustomEngineEventStart()
146 _actionStates[event.customType] = 0; in processCustomEngineEventEnd()
147 debug(3, "twine custom event type end: %i", event.customType); in processCustomEngineEventEnd()
/dports/textproc/py-sphinx-autoapi/sphinx-autoapi-1.8.4/tests/dotnetexample/example/Identity/src/Identity/
H A DIdentityBuilderExtensions.cs64 var customType = typeof(TSignInManager); field in Microsoft.AspNetCore.Identity.IdentityBuilderExtensions.__anon1
65 if (!managerType.GetTypeInfo().IsAssignableFrom(customType.GetTypeInfo()))
67 …throw new InvalidOperationException(Resources.FormatInvalidManagerType(customType.Name, "SignInMan…
69 if (managerType != customType)

12345678910>>...31