Home
last modified time | relevance | path

Searched refs:typeHandler (Results 1 – 25 of 30) sorted by relevance

12

/dports/irc/smuxi/smuxi-1.1/lib/db4o-net/Db4objects.Db4o/Db4objects.Db4o/Internal/
H A DOpenTypeHandler.cs65 if (typeHandler != null) in Delete()
67 context.Delete(typeHandler); in Delete()
109 if (typeHandler == null) in ReadObjectID()
139 if (typeHandler == null) in Defragment()
144 if (IsPlainObject(typeHandler)) in Defragment()
163 if (null == typeHandler) in CorrectTypeHandlerVersionFor()
207 if (typeHandler == null) in Read()
212 if (IsPlainObject(typeHandler)) in Read()
241 if (typeHandler == null) in CollectIDs()
304 return typeHandler; in ReadTypeHandlerRestoreOffset()
[all …]
H A DHandlers4.cs110 public static bool IsClassAware(ITypeHandler4 typeHandler) in IsClassAware() argument
112 return typeHandler is IBuiltinTypeHandler || typeHandler is StandardReferenceTypeHandler; in IsClassAware()
172 if (typeHandler is IFieldAwareTypeHandler) in FieldAwareTypeHandler()
174 return (IFieldAwareTypeHandler)typeHandler; in FieldAwareTypeHandler()
182 if (typeHandler is ICascadingTypeHandler) in CollectIDs()
184 ((ICascadingTypeHandler)typeHandler).CollectIDs(context); in CollectIDs()
225 if (IsValueType(typeHandler)) in HandleAsObject()
229 if (IsUntyped(typeHandler)) in HandleAsObject()
248 return typeHandler is ArrayHandler; in HandlesPrimitiveArray()
252 public static bool HasClassIndex(ITypeHandler4 typeHandler) in HasClassIndex() argument
[all …]
H A DHandlerRegistry.cs223 typeHandler.RegisterReflector(_reflector); in RegisterBuiltinHandler()
226 primitiveName = typeHandler.ClassReflector().GetName(); in RegisterBuiltinHandler()
232 IReflectClass classReflector = typeHandler.ClassReflector(); in RegisterBuiltinHandler()
236 if (typeHandler is PrimitiveHandler) in RegisterBuiltinHandler()
298 ITypeHandler4 typeHandler, ClassMetadata classMetadata) in CorrectHandlerVersion() argument
301 if (typeHandler != correctHandlerVersion) in CorrectHandlerVersion()
316 if (typeHandler is StandardReferenceTypeHandler) in CorrectClassMetadataOn()
581 if (typeHandler is IBuiltinTypeHandler) in ConfiguredTypeHandler()
585 if (Handlers4.IsValueType(typeHandler)) in ConfiguredTypeHandler()
587 MapClassToTypeHandler(claxx, typeHandler); in ConfiguredTypeHandler()
[all …]
H A DTypeHandlerCloneContext.cs25 public virtual ITypeHandler4 CorrectHandlerVersion(ITypeHandler4 typeHandler) in CorrectHandlerVersion() argument
27 return handlerRegistry.CorrectHandlerVersion(typeHandler, version); in CorrectHandlerVersion()
H A DTypeHandlerConfiguration.cs61 protected virtual void RegisterTypeHandlerFor(Type clazz, ITypeHandler4 typeHandler in RegisterTypeHandlerFor() argument
64 _config.RegisterTypeHandler(new SingleClassTypeHandlerPredicate(clazz), typeHandler in RegisterTypeHandlerFor()
H A DPreparedArrayContainsComparison.cs23 , ITypeHandler4 typeHandler, object obj) in PreparedArrayContainsComparison() argument
26 _preparedComparison = Handlers4.PrepareComparisonFor(typeHandler, context, obj); in PreparedArrayContainsComparison()
H A DTypeHandlerAspect.cs19 public TypeHandlerAspect(ClassMetadata classMetadata, ITypeHandler4 typeHandler) in TypeHandlerAspect() argument
21 if (Handlers4.IsValueType(typeHandler)) in TypeHandlerAspect()
26 _typeHandler = typeHandler; in TypeHandlerAspect()
H A DDefragmentContextImpl.cs410 ITypeHandler4 typeHandler = HandlerRegistry.CorrectHandlerVersion(this, handler); in Defragment()
411 if (Handlers4.UseDedicatedSlot(this, typeHandler)) in Defragment()
413 if (Handlers4.HasClassIndex(typeHandler)) in Defragment()
423 typeHandler.Defragment(this); in Defragment()
H A DClassMetadata.cs1806 ITypeHandler4 typeHandler = CorrectHandlerVersion(context); in ReadCandidateHandler()
1807 if (typeHandler is ICascadingTypeHandler) in ReadCandidateHandler()
1809 return ((ICascadingTypeHandler)typeHandler).ReadCandidateHandler(context); in ReadCandidateHandler()
2543 ITypeHandler4 typeHandler = HandlerRegistry.CorrectHandlerVersion(context, _typeHandler in CorrectHandlerVersion()
2545 if (typeHandler != _typeHandler) in CorrectHandlerVersion()
2547 if (typeHandler is StandardReferenceTypeHandler) in CorrectHandlerVersion()
2549 ((StandardReferenceTypeHandler)typeHandler).ClassMetadata(this); in CorrectHandlerVersion()
2552 return typeHandler; in CorrectHandlerVersion()
/dports/science/gromacs/gromacs-2021.4/src/gromacs/options/
H A Dfilenameoption.cpp231 FileTypeHandler typeHandler(fileType_); in FileNameOptionStorage() local
241 else if (typeHandler.extensionCount() > 0) in FileNameOptionStorage()
266 FileTypeHandler typeHandler(fileType_); in typeString() local
275 result.append(typeHandler.extension(count)); in typeString()
277 if (count < typeHandler.extensionCount()) in typeString()
297 FileTypeHandler typeHandler(fileType_); in formatExtraDescription() local
299 if (typeHandler.extensionCount() > 2) in formatExtraDescription()
419 result.reserve(typeHandler.extensionCount()); in extensions()
422 result.push_back(typeHandler.extension(i)); in extensions()
429 FileTypeHandler typeHandler(fileType_); in isValidType() local
[all …]
/dports/irc/smuxi/smuxi-1.1/lib/db4o-net/Db4objects.Db4o/Db4objects.Db4o/Internal/Handlers/Versions/
H A DOpenTypeHandler7.cs30 ITypeHandler4 typeHandler = ReadTypeHandler(context, payloadOffset); in Read()
31 if (typeHandler == null) in Read()
35 if (IsPlainObject(typeHandler)) in Read()
39 SeekSecondaryOffset(context, typeHandler); in Read()
40 return context.ReadAtCurrentSeekPosition(typeHandler); in Read()
58 ITypeHandler4 typeHandler = CorrectTypeHandlerVersionFor(context, classMetadataId in Defragment()
60 if (typeHandler != null) in Defragment()
62 if (IsPlainObject(typeHandler)) in Defragment()
68 SeekSecondaryOffset(context, typeHandler); in Defragment()
69 context.Defragment(typeHandler); in Defragment()
H A DOpenTypeHandler2.cs17 protected override void SeekSecondaryOffset(IReadBuffer buffer, ITypeHandler4 typeHandler in SeekSecondaryOffset() argument
20 if (Handlers4.HandlesPrimitiveArray(typeHandler)) in SeekSecondaryOffset()
/dports/sysutils/gomplate/gomplate-3.9.0/internal/tests/integration/
H A Ddatasources_http_test.go26 http.HandleFunc("/not.json", typeHandler("application/yaml", "value: notjson\n"))
27 http.HandleFunc("/foo", typeHandler("application/json", `{"value": "json"}`))
28 http.HandleFunc("/actually.json", typeHandler("", `{"value": "json"}`))
29 http.HandleFunc("/bogus.csv", typeHandler("text/plain", `{"value": "json"}`))
30 http.HandleFunc("/list", typeHandler("application/array+json", `[1, 2, 3, 4, 5]`))
H A Ddatasources_merge_test.go34 http.HandleFunc("/foo.json", typeHandler("application/json", `{"foo": "bar"}`))
35 http.HandleFunc("/1.env", typeHandler("application/x-env", "FOO=1\nBAR=2\n"))
36 http.HandleFunc("/2.env", typeHandler("application/x-env", "FOO=3\n"))
/dports/www/tikiwiki/tiki-21.2/lib/core/Tiki/Sitemap/
H A DGenerator.php90 $typeHandler = new $class($sitemap);
91 if (is_subclass_of($typeHandler, self::BASE_CLASS)) {
92 $typeHandler->generate();
/dports/irc/smuxi/smuxi-1.1/lib/db4o-net/Db4objects.Db4o/Db4objects.Db4o/Internal/Handlers/
H A DTypeHandlerPredicatePair.cs14 public TypeHandlerPredicatePair(ITypeHandlerPredicate predicate, ITypeHandler4 typeHandler in TypeHandlerPredicatePair() argument
18 _typeHandler = typeHandler; in TypeHandlerPredicatePair()
/dports/net-im/coccinella/Coccinella-0.96.20Src/bin/unix/Linux/i686/vfs1.3/
H A DvfsUrl.tcl53 set typeHandler [::vfs::filesystem info $newRoot]
60 ::vfs::log [list $typeHandler $newRoot $newRelative]
61 eval $typeHandler [list $cmd $newRoot $newRelative $actualpath] $args
/dports/net-im/coccinella/Coccinella-0.96.20Src/bin/unix/NetBSD/i686/vfs1.3/
H A DvfsUrl.tcl53 set typeHandler [::vfs::filesystem info $newRoot]
60 ::vfs::log [list $typeHandler $newRoot $newRelative]
61 eval $typeHandler [list $cmd $newRoot $newRelative $actualpath] $args
/dports/net-im/coccinella/Coccinella-0.96.20Src/bin/windows/intel/vfs1.3/
H A DvfsUrl.tcl53 set typeHandler [::vfs::filesystem info $newRoot]
60 ::vfs::log [list $typeHandler $newRoot $newRelative]
61 eval $typeHandler [list $cmd $newRoot $newRelative $actualpath] $args
/dports/devel/tclvfs/tclvfs-20080503/library/
H A DvfsUrl.tcl53 set typeHandler [::vfs::filesystem info $newRoot]
60 ::vfs::log [list $typeHandler $newRoot $newRelative]
61 eval $typeHandler [list $cmd $newRoot $newRelative $actualpath] $args
/dports/irc/smuxi/smuxi-1.1/lib/db4o-net/Db4objects.Db4o/Db4objects.Db4o/Internal/Marshall/
H A DSlotFormat.cs75 public virtual object DoWithSlotIndirection(IReadBuffer buffer, ITypeHandler4 typeHandler in DoWithSlotIndirection() argument
78 if (!IsIndirectedWithinSlot(typeHandler)) in DoWithSlotIndirection()
/dports/irc/smuxi/smuxi-1.1/lib/db4o-net/Db4objects.Db4o/Db4objects.Db4o/Internal/Config/
H A DCommonConfigurationImpl.cs235 typeHandler) in RegisterTypeHandler()
237 _config.RegisterTypeHandler(predicate, typeHandler); in RegisterTypeHandler()
/dports/multimedia/qt5-multimedia/kde-qtmultimedia-5.15.2p3/src/plugins/wmf/player/
H A Dmfplayersession.cpp283 } typeHandler; in getStreamType() local
284 if (SUCCEEDED(stream->GetMediaTypeHandler(&typeHandler.ptr))) { in getStreamType()
286 if (SUCCEEDED(typeHandler.ptr->GetMajorType(&guidMajorType))) { in getStreamType()
526 IMFMediaTypeHandler *typeHandler = NULL; in setupAudioSampleGrabber() local
547 if (typeHandler) in setupAudioSampleGrabber()
548 typeHandler->Release(); in setupAudioSampleGrabber()
1628 IMFMediaTypeHandler *typeHandler = 0; in handleSessionEvent() local
1629 if (SUCCEEDED(streamSink->GetMediaTypeHandler((&typeHandler)))) { in handleSessionEvent()
1631 if (SUCCEEDED(typeHandler->GetCurrentMediaType(&mediaType))) { in handleSessionEvent()
1635 typeHandler->Release(); in handleSessionEvent()
/dports/irc/smuxi/smuxi-1.1/lib/db4o-net/Db4objects.Db4o/Db4objects.Db4o/Config/
H A DICommonConfiguration.cs618 void RegisterTypeHandler(ITypeHandlerPredicate predicate, ITypeHandler4 typeHandler in RegisterTypeHandler() argument
H A DIConfiguration.cs878 void RegisterTypeHandler(ITypeHandlerPredicate predicate, ITypeHandler4 typeHandler in RegisterTypeHandler() argument

12