Searched refs:list (Results 76 - 100 of 437) sorted by relevance

1234567891011>>

/haiku/src/bin/unzip/
H A Dzipgrep27 list=0
31 *l*) list=1; opt=`echo $opt | sed s/l//`
42 if test $list -eq 1; then
/haiku/src/add-ons/accelerants/s3/
H A Daccel.h38 display_mode* modeList; // list of standard display modes
39 area_id modeListArea; // mode list area ID
59 void (*FillSpan)(engine_token*, uint32 color, uint16* list, uint32 count);
139 void Savage_FillRectangle(engine_token* et, uint32 color, fill_rect_params* list, uint32 count);
140 void Savage_FillSpan(engine_token* et, uint32 color, uint16* list, uint32 count);
141 void Savage_InvertRectangle(engine_token* et, fill_rect_params* list, uint32 count);
142 void Savage_ScreenToScreenBlit(engine_token* et, blit_params* list, uint32 count);
144 void Trio64_FillRectangle(engine_token* et, uint32 color, fill_rect_params* list, uint32 count);
145 void Trio64_FillSpan(engine_token* et, uint32 color, uint16* list, uint32 count);
146 void Trio64_InvertRectangle(engine_token* et, fill_rect_params* list, uint3
[all...]
/haiku/headers/private/device/
H A DJoystickTweaker.h53 BList *list, BEntry *rootEntry = NULL);
55 void _EmpyList(BList *list);
/haiku/src/kits/device/
H A DJoystickTweaker.cpp83 _BJoystickTweaker::_ScanIncludingDisabled(const char *rootPath, BList *list, argument
97 ASSERT(list != NULL);
100 status_t result = _ScanIncludingDisabled(rootPath, list, &entry);
117 if (!list->AddItem(deviceName)) {
137 _BJoystickTweaker::_EmpyList(BList *list) argument
139 for (int32 i = 0; i < list->CountItems(); i++)
140 delete (BString *)list->ItemAt(i);
142 list->MakeEmpty();
/haiku/headers/os/support/
H A DObjectList.h78 _PointerList_(const _PointerList_ &list);
125 BObjectList(const BObjectList& list);
126 // clones list; if list is owning, makes
131 BObjectList& operator=(const BObjectList& list);
132 // clones list; if list is owning, makes
152 // if list is owning, deletes the item
184 // list must be sorted with CompareFunction for
209 // Binary insertion - list mus
258 WhileEachListItem(BObjectList<Item>* list, Result (Item::*func)(Param1), Param1 p1) argument
275 WhileEachListItem(BObjectList<Item>* list, Result (*func)(Item*, Param1), Param1 p1) argument
292 WhileEachListItem(BObjectList<Item>* list, Result (Item::*func)(Param1, Param2), Param1 p1, Param2 p2) argument
309 WhileEachListItem(BObjectList<Item>* list, Result (*func)(Item*, Param1, Param2), Param1 p1, Param2 p2) argument
327 WhileEachListItem(BObjectList<Item>* list, Result (*func)(Item*, Param1, Param2, Param3, Param4), Param1 p1, Param2 p2, Param3 p3, Param4 p4) argument
345 EachListItemIgnoreResult(BObjectList<Item>* list, Result (Item::*func)()) argument
355 EachListItem(BObjectList<Item>* list, void (*func)(Item*, Param1), Param1 p1) argument
365 EachListItem(BObjectList<Item>* list, void (Item::*func)(Param1, Param2), Param1 p1, Param2 p2) argument
376 EachListItem(BObjectList<Item>* list, void (*func)(Item*,Param1, Param2), Param1 p1, Param2 p2) argument
387 EachListItem(BObjectList<Item>* list, void (*func)(Item*,Param1, Param2, Param3), Param1 p1, Param2 p2, Param3 p3) argument
398 EachListItem(BObjectList<Item>* list, void (*func)(Item*,Param1, Param2, Param3, Param4), Param1 p1, Param2 p2, Param3 p3, Param4 p4) argument
427 BObjectList(const BObjectList<T>& list) argument
457 operator =(const BObjectList<T>& list) argument
494 AddList(BObjectList<T>* list) argument
502 AddList(BObjectList<T>* list, int32 index) argument
[all...]
/haiku/headers/libs/print/libprint/
H A DPrintProcess.h10 #include <list>
48 typedef list<PageData *> PageDataList;
/haiku/src/system/libroot/os/
H A Ddebug.c277 va_list list; local
278 va_start(list, format);
280 debug_vprintf(format, list);
282 va_end(list);
298 va_list list; local
299 va_start(list, format);
301 ktrace_vprintf(format, list);
303 va_end(list);
/haiku/headers/build/private/storage/mime/
H A DMimeUpdateThread.h18 #include <list>
51 std::list< std::pair<dev_t, bool> > fAttributeSupportList;
/haiku/src/servers/registrar/mime/
H A DMimeUpdateThread.h16 #include <list>
52 std::list< std::pair<dev_t, bool> > fAttributeSupportList;
/haiku/src/servers/registrar/
H A DRecentApps.cpp12 //! Recently launched apps list
33 \brief Manages the roster's list of recently launched applications
38 /*! \var std::list<std::string> RecentApps::fAppList
39 \brief The list of app sigs, most recent first
46 /*! \brief Creates a new list.
48 The list is initially empty.
65 the recent apps list.
67 If the app already exists elsewhere in the list, that item is
68 removed so only one instance exists in the list at any time.
73 application is \b not added to the list (bu
159 Get(int32 maxCount, BMessage *list) argument
[all...]
H A DRecentEntries.h24 // Description: Recently used entries list
36 #include <list>
72 std::list<recent_entry*> fEntryList;
H A DAppInfoListMessagingTargetSet.h6 * no other representation (array/list) is needed to feed them into the
19 AppInfoListMessagingTargetSet(AppInfoList &list,
/haiku/src/add-ons/print/drivers/gutenprint/
H A DGPJob.h13 #include<list>
36 status_t PrintPage(list<GPBand*>& bands);
41 RectInt32 GetPrintRectangle(list<GPBand*>& bands);
79 list<GPBand*>* fBands;
/haiku/src/apps/cortex/Persistence/
H A DXML.h10 * notice, this list of conditions, and the following disclaimer.
13 * notice, this list of conditions, and the following disclaimer in the
101 std::list<BString>* outErrors);
114 std::list<BString>* outErrors);
135 std::list<BString>* outErrors);
162 std::list<BString>* outErrors); //nyi
H A DImportContext.cpp10 * notice, this list of conditions, and the following disclaimer.
13 * notice, this list of conditions, and the following disclaimer in the
47 ImportContext::ImportContext(list<BString>& errors) :
67 list<BString>::const_reverse_iterator it = m_elementStack.rbegin();
72 list<BString>& ImportContext::errors() const {
H A DImporter.h10 * notice, this list of conditions, and the following disclaimer.
13 * notice, this list of conditions, and the following disclaimer in the
47 #include <list>
65 std::list<BString>& errors);
74 std::list<BString>& errors,
/haiku/src/bin/rc/
H A Drdef.cpp43 free_ptr_list(ptr_list_t &list) argument
45 for (ptr_iter_t i = list.begin(); i != list.end(); ++i) {
49 list.clear();
96 // we found the entry in the list, let's remove it
/haiku/src/tests/system/kernel/util/
H A DVectorSetTest.h24 void TestList(List &list, typename List::ValueType *values, int valueCount);
H A DVectorTest.h26 void TestList(List &list, typename List::ValueType *values, int valueCount);
/haiku/src/kits/support/
H A DList.cpp140 BList::AddList(const BList* list, int32 index) argument
142 bool result = (list && index >= 0 && index <= fItemCount);
143 if (result && list->fItemCount > 0) {
144 int32 count = list->fItemCount;
151 memcpy(fObjectList + index, list->fObjectList,
152 list->fItemCount * sizeof(void*));
161 BList::AddList(const BList* list) argument
163 bool result = (list != NULL);
164 if (result && list->fItemCount > 0) {
166 int32 count = list
455 AddList__5BListP5BListl(BList* self, BList* list, int32 index) argument
462 AddList__5BListP5BList(BList* self, BList* list) argument
[all...]
/haiku/src/preferences/joysticks/
H A DJoyWin.h33 status_t _AddToList(BListView *list, uint32 command,
52 PortItem* _GetSelectedItem(BListView* list);
53 void _SelectDeselectJoystick(BListView* list, bool enable);
/haiku/src/add-ons/kernel/file_systems/packagefs/resolvables/
H A DDependencyFamily.h20 ResolvableDependencyList& list) const;
51 DependencyFamily::AddDependenciesToList(ResolvableDependencyList& list) const
55 list.Add(dependency);
/haiku/src/system/libnetwork/netresolv/net/
H A Dhesiod.c293 hesiod_free_list(void *context, char **list) argument
299 if (list == NULL)
301 for (p = list; *p; p++)
303 free(list);
413 * return a list of them.
420 char *dst, **list; local
466 list = malloc((ancount + 1) * sizeof(char *));
467 if (!list) {
492 list[j] = malloc((size_t)len);
493 if (!list[
573 static char **list; local
[all...]
/haiku/src/libs/libfdt/
H A Dfdt_ro.c725 const char *list, *end; local
728 list = fdt_getprop(fdt, nodeoffset, property, &length);
729 if (!list)
732 end = list + length;
734 while (list < end) {
735 length = strnlen(list, end - list) + 1;
738 if (list + length > end)
741 list += length;
752 const char *list, *en local
782 const char *list, *end; local
[all...]
/haiku/src/tests/add-ons/print/ppd/test/
H A DTestParser.cpp71 void ExtractChildren(StatementList* list, int level);
124 void ExtractChildren(StatementList* list, int level) argument
126 if (list == NULL) return;
127 for (int32 i = 0; i < list->Size(); i ++) {
128 Statement* statement = list->StatementAt(i);

Completed in 82 milliseconds

1234567891011>>