Searched refs:Type (Results 1 - 25 of 587) sorted by relevance

1234567891011>>

/haiku-fatelf/src/bin/patch/
H A Dxalloc.h47 # define XMALLOC(Type, N_bytes) ((Type *) xmalloc (sizeof (Type) * (N_bytes)))
48 # define XCALLOC(Type, N_bytes) ((Type *) xcalloc (sizeof (Type), (N_bytes)))
49 # define XREALLOC(Ptr, Type, N_bytes) \
50 ((Type *) xrealloc ((void *) (Ptr), sizeof (Type) * (N_bytes)))
H A Dbackupfile.h39 # define VALID_BACKUP_TYPE(Type) \
40 ((Type) == none \
41 || (Type) == simple \
42 || (Type) == numbered_existing \
43 || (Type) == numbered)
/haiku-fatelf/headers/private/package/hpkg/
H A DStacker.h16 template<typename Type>
19 Stacker(Type*& location, Type* element)
27 Stacker(Type** location, Type* element)
42 Type** fLocation;
43 Type* fPreviousElement;
/haiku-fatelf/headers/private/kernel/util/
H A DFixedWidthPointer.h20 template<typename Type>
23 Type * Pointer() const
25 return (Type*)(addr_t)fValue;
28 operator Type*() const
33 Type& operator*() const
38 Type* operator->() const
43 Type& operator[](size_t i) const
54 FixedWidthPointer& operator=(Type* p)
124 template<typename Type>
126 operator==(const FixedWidthPointer<Type>
[all...]
/haiku-fatelf/headers/private/shared/
H A DReferenceable.h40 template<typename Type = BReferenceable>
49 BReference(Type* object, bool alreadyHasReference = false)
56 BReference(const BReference<Type>& other)
77 void SetTo(Type* object, bool alreadyHasReference = false)
95 Type* Get() const
100 Type* Detach()
102 Type* object = fObject;
107 Type& operator*() const
112 Type* operator->() const
117 operator Type*() cons
[all...]
H A DAutoDeleter.h143 template<typename Type, typename DestructorReturnType>
146 inline void operator()(Type *object)
159 DestructorReturnType (*fDestructor)(Type*);
162 template<typename Type, typename DestructorReturnType = void>
164 : AutoDeleter<Type, CObjectDelete<Type, DestructorReturnType> >
166 typedef AutoDeleter<Type, CObjectDelete<Type, DestructorReturnType> > Base;
175 CObjectDeleter(Type *object, Destructor destructor) : Base(object)
184 template<typename Type, typenam
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/headers/shared/
H A DReferencable.h30 template<typename Type>
38 Reference(Type* object, bool alreadyHasReference = false)
44 Reference(const Reference<Type>& other)
55 void SetTo(Type* object, bool alreadyHasReference = false)
71 Type* Get() const
76 Type* Detach()
78 Type* object = fObject;
83 Type& operator*() const
88 Type* operator->() const
93 Reference& operator=(const Reference<Type>
[all...]
/haiku-fatelf/headers/private/net/
H A DNetBufferUtilities.h22 template<typename Type, int Offset, typename Module = NetBufferModuleGetter>
29 fStatus = Module::Get()->direct_access(fBuffer, Offset, sizeof(Type),
33 sizeof(Type));
43 Type& Data() const
48 Type* operator->() const
53 Type& operator*() const
64 Module::Get()->write(fBuffer, Offset, fData, sizeof(Type));
76 Type* fData;
77 Type fDataBuffer;
82 template<typename Type, in
[all...]
/haiku-fatelf/src/apps/debugger/value/
H A DTypeHandler.h12 class Type;
21 virtual float SupportsType(Type* type) = 0;
23 Type* type, ValueNode*& _node) = 0;
/haiku-fatelf/src/apps/debugger/value/value_nodes/
H A DCStringValueNode.h18 Type* type);
21 virtual Type* GetType() const;
29 Type* fType;
/haiku-fatelf/src/bin/diffutils/lib/
H A Dxalloc.h59 # define XMALLOC(Type, N_items) ((Type *) xmalloc (sizeof (Type) * (N_items)))
60 # define XCALLOC(Type, N_items) ((Type *) xcalloc (sizeof (Type), (N_items)))
61 # define XREALLOC(Ptr, Type, N_items) \
62 ((Type *) xrealloc ((void *) (Ptr), sizeof (Type) * (N_items)))
65 # define NEW(Type, Va
[all...]
/haiku-fatelf/src/tests/add-ons/print/ppd/model/
H A DValue.h16 enum Type { enum in class:Value
25 Type fType;
32 Value(BString* value = NULL, Type type = kUnknownValue);
35 void SetType(Type type);
36 Type GetType();
/haiku-fatelf/src/system/kernel/slab/
H A Dslab_private.h29 template<typename Type>
30 static inline Type*
31 _pop(Type*& head)
33 Type* oldHead = head;
39 template<typename Type>
41 _push(Type*& head, Type* object)
/haiku-fatelf/src/apps/debugger/model/
H A DVariable.h15 class Type;
22 Type* type, ValueLocation* location);
27 Type* GetType() const { return fType; }
33 Type* fType;
H A DTeamTypeInformation.h14 class Type;
25 Type*& _type) = 0;
H A DType.h64 class Type;
72 virtual Type* GetType() const = 0;
81 virtual Type* GetType() const = 0;
98 virtual Type* GetType() const = 0;
110 virtual Type* GetType() const = 0;
119 virtual Type* GetType() const = 0;
124 class Type : public BReferenceable { class in inherits:BReferenceable
126 virtual ~Type();
133 virtual Type* ResolveRawType(bool nextOneOnly) const;
154 class PrimitiveType : public virtual Type {
[all...]
/haiku-fatelf/src/apps/debugger/value/type_handlers/
H A DBMessageTypeHandler.h16 virtual float SupportsType(Type* type);
18 Type* type, ValueNode*& _node);
H A DCStringTypeHandler.h16 virtual float SupportsType(Type* type);
18 Type* type, ValueNode*& _node);
H A DBListTypeHandler.h16 virtual float SupportsType(Type* type);
18 Type* type, ValueNode*& _node);
/haiku-fatelf/src/bin/coreutils/lib/
H A Dbackupfile.h44 # define VALID_BACKUP_TYPE(Type) \
45 ((unsigned int) (Type) <= numbered_backups)
/haiku-fatelf/headers/private/fs_shell/
H A Dfssh_auto_deleter.h132 template<typename Type, typename DestructorReturnType>
135 inline void operator()(Type *object)
148 DestructorReturnType (*fDestructor)(Type*);
151 template<typename Type, typename DestructorReturnType = void>
153 : AutoDeleter<Type, CObjectDelete<Type, DestructorReturnType> >
155 typedef AutoDeleter<Type, CObjectDelete<Type, DestructorReturnType> > Base;
164 CObjectDeleter(Type *object, Destructor destructor) : Base(object)
173 template<typename Type, typenam
[all...]
/haiku-fatelf/src/tools/gensyscalls/
H A Dgensyscalls.h15 // Type
16 class Type { class
18 Type(const char* name, int size,
21 ~Type() {}
37 class Parameter : public Type {
62 Type* ReturnType() const { return fReturnType; }
69 Type* SetReturnType(const char* name, int size,
84 Type* fReturnType;
/haiku-fatelf/src/add-ons/kernel/bus_managers/acpi/acpica/components/executer/
H A Dexresolv.c241 switch (StackDesc->Common.Type)
348 if ((StackDesc->Reference.Node->Type == ACPI_TYPE_DEVICE) ||
349 (StackDesc->Reference.Node->Type == ACPI_TYPE_THERMAL))
393 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "FieldRead SourceDesc=%p Type=%X\n",
394 StackDesc, StackDesc->Common.Type));
437 ACPI_OBJECT_TYPE Type; local
449 Type = ObjDesc->Common.Type;
453 Type = ((ACPI_NAMESPACE_NODE *) ObjDesc)->Type;
[all...]
/haiku-fatelf/src/add-ons/media/plugins/matroska/libebml/ebml/
H A DEbmlMaster.h180 template <typename Type>
181 Type & GetChild(EbmlMaster & Master)
183 return *(static_cast<Type *>(Master.FindFirstElt(Type::ClassInfos, true)));
188 template <typename Type>
189 Type * FindChild(EbmlMaster & Master)
191 return static_cast<Type *>(Master.FindFirstElt(Type::ClassInfos, false));
194 template <typename Type>
195 Type
[all...]
/haiku-fatelf/src/apps/debugger/source_language/
H A DSourceLanguage.cpp24 TeamTypeInformation* info, Type*& _resultType) const

Completed in 158 milliseconds

1234567891011>>