Home
last modified time | relevance | path

Searched refs:TypeInformation (Results 1 – 25 of 347) sorted by relevance

12345678910>>...14

/dports/www/ilias6/ILIAS-6.14/src/GlobalScreen/Scope/MainMenu/Collector/Information/
H A DTypeInformationCollection.php12 * @var TypeInformation[]
18 * @param TypeInformation $information
20 public function add(TypeInformation $information)
29 * @return TypeInformation
33 …t($this->type_informations[$type]) && $this->type_informations[$type] instanceof TypeInformation) {
37 return new TypeInformation($type, $type, null);
42 * @return TypeInformation[]
/dports/www/ilias/ILIAS-5.4.25/src/GlobalScreen/Scope/MainMenu/Collector/Information/
H A DTypeInformationCollection.php12 * @var TypeInformation[]
18 * @param TypeInformation $information
20 public function add(TypeInformation $information)
29 * @return TypeInformation
33 …t($this->type_informations[$type]) && $this->type_informations[$type] instanceof TypeInformation) {
37 return new TypeInformation($type, $type, null);
42 * @return TypeInformation[]
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/Test/System.Security.Permissions/
H A DReflectionPermissionAttributeTest.cs51 Assert.IsFalse (a.TypeInformation, "TypeInformation"); in Default()
102 attr.Flags |= ReflectionPermissionFlag.TypeInformation; in Flags()
109 Assert.IsFalse (attr.TypeInformation, "Flags/NoFlags=TypeInformation"); in Flags()
120 Assert.IsFalse (attr.TypeInformation, "NoFlags=TypeInformation"); in NoFlags()
141 Assert.IsFalse (attr.TypeInformation, "MemberAccess=TypeInformation"); in MemberAccess()
155 Assert.IsFalse (attr.TypeInformation, "ReflectionEmit=TypeInformation"); in ReflectionEmit()
161 public void TypeInformation () in TypeInformation() method in MonoTests.System.Security.Permissions.ReflectionPermissionAttributeTest
164 attr.TypeInformation = true; in TypeInformation()
169 Assert.IsTrue (attr.TypeInformation, "TypeInformation=TypeInformation"); in TypeInformation()
180 attr.TypeInformation = true; in AllFlags()
[all …]
H A DReflectionPermissionTest.cs66 public void TypeInformation () in TypeInformation() method in MonoTests.System.Security.Permissions.ReflectionPermissionTest
68 ReflectionPermission p = new ReflectionPermission (ReflectionPermissionFlag.TypeInformation); in TypeInformation()
108 p.Flags = ReflectionPermissionFlag.TypeInformation; in Flags()
171 Assert.AreEqual (ReflectionPermissionFlag.TypeInformation, p2.Flags, "FromXml-TypeInformation"); in FromXml()
217 ReflectionPermission p1 = new ReflectionPermission (ReflectionPermissionFlag.TypeInformation); in Union()
220 …Equal (ReflectionPermissionFlag.MemberAccess | ReflectionPermissionFlag.TypeInformation, p3.Flags); in Union()
266 ReflectionPermission p2 = new ReflectionPermission (ReflectionPermissionFlag.TypeInformation); in Intersect()
274 …ReflectionPermission p5 = new ReflectionPermission (ReflectionPermissionFlag.TypeInformation | Ref… in Intersect()
276 … Assert.AreEqual (ReflectionPermissionFlag.TypeInformation, p3.Flags, "Intersect-TypeInformation"); in Intersect()
318 ReflectionPermission p2 = new ReflectionPermission (ReflectionPermissionFlag.TypeInformation); in IsSubsetOf()
/dports/devel/newtonsoft-json/Newtonsoft.Json-9.0.1/Src/Newtonsoft.Json/Utilities/
H A DConvertUtils.cs93 internal class TypeInformation class
161 private static readonly TypeInformation[] PrimitiveTypeCodes =
164 new TypeInformation { Type = typeof(object), TypeCode = PrimitiveTypeCode.Empty },
168 new TypeInformation { Type = typeof(char), TypeCode = PrimitiveTypeCode.Char },
169 new TypeInformation { Type = typeof(sbyte), TypeCode = PrimitiveTypeCode.SByte },
170 new TypeInformation { Type = typeof(byte), TypeCode = PrimitiveTypeCode.Byte },
171 new TypeInformation { Type = typeof(short), TypeCode = PrimitiveTypeCode.Int16 },
173 new TypeInformation { Type = typeof(int), TypeCode = PrimitiveTypeCode.Int32 },
174 new TypeInformation { Type = typeof(uint), TypeCode = PrimitiveTypeCode.UInt32 },
175 new TypeInformation { Type = typeof(long), TypeCode = PrimitiveTypeCode.Int64 },
[all …]
/dports/www/ilias/ILIAS-5.4.25/Services/MainMenu/classes/Provider/
H A Dclass.ilMMCustomProvider.php3 use ILIAS\GlobalScreen\Scope\MainMenu\Collector\Information\TypeInformation; alias
119 …$c->add(new TypeInformation(TopParentItem::class, $this->translateType(TopParentItem::class), new …
120 …$c->add(new TypeInformation(TopLinkItem::class, $this->translateType(TopLinkItem::class), new ilMM…
121 …$c->add(new TypeInformation(Link::class, $this->translateType(Link::class), null, new ilMMTypeHand…
122 $link_list = new TypeInformation(LinkList::class, $this->translateType(LinkList::class));
125 …$c->add(new TypeInformation(Separator::class, $this->translateType(Separator::class), null, new il…
126 …$c->add(new TypeInformation(RepositoryLink::class, $this->translateType(RepositoryLink::class), nu…
127 $complex = new TypeInformation(Complex::class, $this->translateType(Complex::class));
130 …$lost = new TypeInformation(Lost::class, $this->translateType(Lost::class), new ilMMLostItemRender…
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/src/System.Web.Http/Metadata/Providers/
H A DAssociatedMetadataProvider.cs18 …private ConcurrentDictionary<Type, TypeInformation> _typeInfoCache = new ConcurrentDictionary<Type…
32 TypeInformation typeInfo = GetTypeInformation(containerType); in GetMetadataForPropertiesImpl()
57 TypeInformation typeInfo = GetTypeInformation(containerType); in GetMetadataForProperty()
84 private TypeInformation GetTypeInformation(Type type) in GetTypeInformation()
87 TypeInformation typeInfo; in GetTypeInformation()
96 private TypeInformation CreateTypeInformation(Type type) in CreateTypeInformation()
98 TypeInformation info = new TypeInformation(); in CreateTypeInformation()
197 private class TypeInformation class in System.Web.Http.Metadata.Providers.AssociatedMetadataProvider
/dports/www/ilias6/ILIAS-6.14/src/GlobalScreen/Scope/MainMenu/Factory/
H A DisItem.php4 use ILIAS\GlobalScreen\Scope\MainMenu\Collector\Information\TypeInformation; alias
82 * @param TypeInformation $information
85 public function setTypeInformation(TypeInformation $information) : isItem;
88 * @return TypeInformation
90 public function getTypeInformation() : TypeInformation;
H A DAbstractBaseItem.php5 use ILIAS\GlobalScreen\Scope\MainMenu\Collector\Information\TypeInformation; alias
192 public function setTypeInformation(TypeInformation $information) : isItem
202 public function getTypeInformation() : TypeInformation
204 …return $this->type_information instanceof TypeInformation ? $this->type_information : new TypeInfo…
/dports/www/ilias/ILIAS-5.4.25/src/GlobalScreen/Scope/MainMenu/Factory/
H A DisItem.php4 use ILIAS\GlobalScreen\Scope\MainMenu\Collector\Information\TypeInformation; alias
126 * @param TypeInformation $information
130 public function setTypeInformation(TypeInformation $information) : isItem;
134 * @return TypeInformation
136 public function getTypeInformation() : TypeInformation;
H A DAbstractBaseItem.php4 use ILIAS\GlobalScreen\Scope\MainMenu\Collector\Information\TypeInformation; alias
230 public function setTypeInformation(TypeInformation $information) : isItem
241 public function getTypeInformation() : TypeInformation
243 …return $this->type_information instanceof TypeInformation ? $this->type_information : new TypeInfo…
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/System.Security.Permissions/
H A DReflectionPermissionAttribute.cs60 …typeInfo = ((flags & ReflectionPermissionFlag.TypeInformation) == ReflectionPermissionFlag.TypeInf…
101 public bool TypeInformation property in System.Security.Permissions.ReflectionPermissionAttribute
106 flags |= ReflectionPermissionFlag.TypeInformation;
108 flags -= ReflectionPermissionFlag.TypeInformation;
H A DReflectionPermissionFlag.cs45 TypeInformation = 0x00000001, enumerator
52 AllFlags = TypeInformation | MemberAccess | ReflectionEmit,
/dports/www/ilias6/ILIAS-6.14/Services/MainMenu/classes/Provider/
H A DCustomMainBarProvider.php5 use ILIAS\GlobalScreen\Scope\MainMenu\Collector\Information\TypeInformation; alias
166 $c->add(new TypeInformation(
172 $c->add(new TypeInformation(
179 $c->add(new TypeInformation(
187 $link_list = new TypeInformation(
196 $c->add(new TypeInformation(
205 $c->add(new TypeInformation(
213 $lost = new TypeInformation(
222 $complex = new TypeInformation(
/dports/misc/elki/elki-release0.7.1-1166-gfb1fffdf3/elki-core-api/src/main/java/de/lmu/ifi/dbs/elki/data/type/
H A DNoSupportedDataTypeException.java42 private Collection<TypeInformation> types = null;
50 public NoSupportedDataTypeException(TypeInformation type, Collection<TypeInformation> types) { in NoSupportedDataTypeException()
70 for(TypeInformation type : types) { in getMessage()
H A DTypeInformation.java29 public interface TypeInformation { interface
36 boolean isAssignableFromType(TypeInformation type); in isAssignableFromType()
/dports/misc/elki/elki-release0.7.1-1166-gfb1fffdf3/elki-core-data/src/main/java/de/lmu/ifi/dbs/elki/data/type/
H A DAlternativeTypeInformation.java32 public class AlternativeTypeInformation implements TypeInformation {
36 private final TypeInformation[] restrictions;
43 public AlternativeTypeInformation(TypeInformation... restrictions) { in AlternativeTypeInformation()
49 public boolean isAssignableFromType(TypeInformation type) { in isAssignableFromType()
H A DCombinedTypeInformation.java31 public class CombinedTypeInformation implements TypeInformation {
35 private final TypeInformation[] restrictions;
42 public CombinedTypeInformation(TypeInformation... restrictions) { in CombinedTypeInformation()
48 public boolean isAssignableFromType(TypeInformation type) { in isAssignableFromType()
/dports/www/ilias6/ILIAS-6.14/src/GlobalScreen/Scope/Tool/Collector/
H A DMainToolCollector.php8 use ILIAS\GlobalScreen\Scope\MainMenu\Collector\Information\TypeInformation; alias
57 $tool = new TypeInformation(Tool::class, Tool::class, new ToolItemRenderer());
61 $tool = new TypeInformation(TreeTool::class, TreeTool::class, new TreeToolItemRenderer());
154 * @return TypeInformation
156 private function getTypeInfoermationForItem(isToolItem $item) : TypeInformation
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Runtime.Serialization.Formatters/src/System/Runtime/Serialization/Formatters/Binary/
H A DBinaryFormatter.cs14 …readonly ConcurrentDictionary<Type, TypeInformation> s_typeNameCache = new ConcurrentDictionary<Ty…
92 internal static TypeInformation GetTypeInformation(Type type) =>
96 …return new TypeInformation(FormatterServices.GetClrTypeFullName(t), assemblyName, hasTypeForwarded…
/dports/misc/elki/elki-release0.7.1-1166-gfb1fffdf3/elki/src/main/java/de/lmu/ifi/dbs/elki/algorithm/outlier/clustering/
H A DSilhouetteOutlierDetection.java30 import de.lmu.ifi.dbs.elki.data.type.TypeInformation;
195 public TypeInformation[] getInputTypeRestriction() { in getInputTypeRestriction()
196 final TypeInformation dt = getDistanceFunction().getInputTypeRestriction(); in getInputTypeRestriction()
197 TypeInformation[] t = clusterer.getInputTypeRestriction(); in getInputTypeRestriction()
198 for(TypeInformation i : t) { in getInputTypeRestriction()
204 TypeInformation[] t2 = new TypeInformation[t.length + 1]; in getInputTypeRestriction()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Runtime.Serialization/System/Runtime/Serialization/
H A DTypeInformation.cs7 sealed class TypeInformation class
13 … internal TypeInformation(string fullTypeName, string assemblyString, bool hasTypeForwardedFrom) in TypeInformation() method in System.Runtime.Serialization.TypeInformation
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/system/runtime/serialization/formatters/binary/
H A Dbinaryformatter.cs52 …private static Dictionary<Type, TypeInformation> typeNameCache = new Dictionary<Type, TypeInformat…
237 internal static TypeInformation GetTypeInformation(Type type) in GetTypeInformation()
241 TypeInformation typeInformation = null; in GetTypeInformation()
246 …typeInformation = new TypeInformation(FormatterServices.GetClrTypeFullName(type), assemblyName, ha… in GetTypeInformation()
/dports/misc/elki/elki-release0.7.1-1166-gfb1fffdf3/elki-core-api/src/main/java/de/lmu/ifi/dbs/elki/index/
H A DIndexFactory.java23 import de.lmu.ifi.dbs.elki.data.type.TypeInformation;
50 TypeInformation getInputTypeRestriction(); in getInputTypeRestriction()
/dports/misc/elki/elki-release0.7.1-1166-gfb1fffdf3/elki-core-api/src/main/java/de/lmu/ifi/dbs/elki/algorithm/
H A DAlgorithm.java23 import de.lmu.ifi.dbs.elki.data.type.TypeInformation;
61 TypeInformation[] getInputTypeRestriction(); in getInputTypeRestriction()

12345678910>>...14