Searched refs:fContainer (Results 1 - 25 of 27) sorted by relevance

12

/haiku/src/kits/debugger/value/
H A DValueNode.cpp20 fContainer(NULL),
49 if (container == fContainer)
52 if (fContainer != NULL)
53 fContainer->ReleaseReference();
55 fContainer = container;
57 if (fContainer != NULL)
58 fContainer->AcquireReference();
63 ChildAt(i)->SetContainer(fContainer);
130 if (fContainer != NULL)
131 fContainer
[all...]
/haiku/src/kits/debugger/debug_managers/
H A DValueNodeManager.cpp23 fContainer(NULL),
41 if (fContainer != NULL) {
42 AutoLocker<ValueNodeContainer> containerLocker(fContainer);
44 fContainer->RemoveListener(this);
46 fContainer->RemoveAllChildren();
48 fContainer->ReleaseReference();
49 fContainer = NULL;
58 fContainer = new(std::nothrow) ValueNodeContainer;
59 if (fContainer == NULL)
62 status_t error = fContainer
[all...]
/haiku/src/kits/storage/
H A DResources.cpp37 fContainer(NULL),
41 fContainer = new(nothrow) ResourcesContainer;
50 fContainer(NULL),
54 fContainer = new(nothrow) ResourcesContainer;
64 fContainer(NULL),
68 fContainer = new(nothrow) ResourcesContainer;
78 fContainer(NULL),
82 fContainer = new(nothrow) ResourcesContainer;
91 delete fContainer;
117 if (fContainer)
[all...]
/haiku/src/apps/icon-o-matic/generic/command/
H A DRemoveCommand.h53 Container<Type>* fContainer; member in class:RemoveCommand
65 fContainer(container),
71 if (!fContainer || !fItems || !fIndices)
76 fItems[i] = fContainer->ItemAt(fIndices[i]);
98 return fContainer && fItems && fIndices ? B_OK : B_NO_INIT;
110 if (fItems[i] && !fContainer->RemoveItem(fItems[i])) {
129 if (fItems[i] && !fContainer->AddItem(fItems[i], fIndices[i])) {
H A DAddCommand.h63 Container<Type>* fContainer; member in class:AddCommand
76 fContainer(container),
83 if (!fContainer || !fItems)
115 return fContainer && fItems ? B_OK : B_NO_INIT;
125 if (fItems[i] && !fContainer->AddItem(fItems[i], fIndex + i)) {
128 fContainer->RemoveItem(fItems[j]);
144 fContainer->RemoveItem(fItems[i]);
H A DMoveCommand.h53 Container<Type>* fContainer; member in class:MoveCommand
67 fContainer(container),
73 if (!fContainer || !fItems || !fIndices)
81 fIndices[i] = fContainer->IndexOf(fItems[i]);
101 if (!fContainer || !fItems || !fIndices)
143 if (fItems[i] && !fContainer->RemoveItem(fItems[i])) {
154 if (fItems[i] && !fContainer->AddItem(fItems[i], index++)) {
172 if (fItems[i] && !fContainer->RemoveItem(fItems[i])) {
182 if (fItems[i] && !fContainer->AddItem(fItems[i], fIndices[i])) {
/haiku/src/kits/tracker/
H A DFavoritesMenu.cpp80 fContainer(NULL),
93 delete fContainer;
151 fContainer = new QueryEntryListCollection(&startModel);
153 fContainer = new VirtualDirectoryEntryList(&startModel);
158 fContainer = new DirectoryEntryList(*directory);
161 ThrowOnInitCheckError(fContainer);
162 ThrowOnError(fContainer->Rewind());
164 delete fContainer;
165 fContainer = NULL;
171 if (fContainer !
[all...]
H A DFavoritesMenu.h95 EntryListBase* fContainer; member in class:BPrivate::FavoritesMenu
H A DNavMenu.cpp273 fContainer(NULL),
306 fContainer(NULL),
389 delete fContainer;
390 fContainer = NULL;
431 fContainer = new QueryEntryListCollection(&startModel);
433 fContainer = new VirtualDirectoryEntryList(&startModel);
436 fContainer = DesktopPoseView::InitDesktopDirentIterator(0,
446 fContainer = new EntryIteratorList();
456 = dynamic_cast<EntryIteratorList*>(fContainer);
470 fContainer
[all...]
/haiku/src/kits/debugger/jobs/
H A DResolveValueNodeJob.cpp35 fContainer(container),
40 fContainer->AcquireReference();
49 fContainer->ReleaseReference();
65 AutoLocker<ValueNodeContainer> containerLocker(fContainer);
66 if (fValueNode->Container() != fContainer)
97 AutoLocker<ValueNodeContainer> containerLocker(fContainer);
194 AutoLocker<ValueNodeContainer> containerLocker(fContainer);
208 AutoLocker<ValueNodeContainer> containerLocker(fContainer);
210 if (parentNode->Container() != fContainer)
228 fArchitecture, fCpuState, fTypeInformation, fContainer,
[all...]
/haiku/headers/private/debugger/value/
H A DValueNode.h49 { return fContainer; }
87 ValueNodeContainer* fContainer; member in class:ValueNode
115 { return fContainer; }
129 ValueNodeContainer* fContainer; member in class:ValueNodeChild
/haiku/src/apps/terminal/
H A DPrefHandler.cpp107 fContainer('Pref')
152 fContainer = p->fContainer;
245 fContainer.GetInfo(B_STRING_TYPE, i, &key, &type) == B_OK;
247 fContainer.GetInfo(B_STRING_TYPE, i, (char**)&key, &type) == B_OK;
320 const char *value = fContainer.FindString(key);
331 const char *value = fContainer.FindString(key);
346 if (fContainer.FindString(key, &buffer) != B_OK)
357 const char *value = fContainer.FindString(key);
368 const char *value = fContainer
[all...]
H A DPrefHandler.h86 BMessage fContainer; member in class:PrefHandler
/haiku/headers/private/debugger/debug_managers/
H A DValueNodeManager.h37 ValueNodeContainer* GetContainer() const { return fContainer; };
49 ValueNodeContainer* fContainer; member in class:ValueNodeManager
/haiku/src/tests/kits/interface/layout/widget_layout_test/
H A DView.cpp16 fContainer(NULL),
27 fContainer(NULL),
191 return fContainer;
306 if (fContainer) {
308 fContainer->Invalidate(rect.OffsetByCopy(LocationInContainer()));
412 if (fContainer)
422 fContainer = container;
427 child->_AddedToContainer(fContainer);
439 fContainer = NULL;
H A DView.h94 BView* fContainer; member in class:View
/haiku/src/kits/debugger/value/value_nodes/
H A DAddressValueNode.cpp117 fChild->SetContainer(fContainer);
119 if (fContainer != NULL)
120 fContainer->NotifyValueNodeChildrenCreated(this);
H A DCompoundValueNode.cpp210 child->SetContainer(fContainer);
223 child->SetContainer(fContainer);
226 if (fContainer != NULL)
227 fContainer->NotifyValueNodeChildrenCreated(this);
H A DArrayValueNode.cpp114 if (fContainer != NULL)
115 fContainer->NotifyValueNodeChildrenDeleted(this);
168 child->SetContainer(fContainer);
171 if (fContainer != NULL)
172 fContainer->NotifyValueNodeChildrenCreated(this);
H A DBListValueNode.cpp339 if (fContainer != NULL)
340 fContainer->NotifyValueNodeChildrenDeleted(this);
364 countChild->SetContainer(fContainer);
397 child->SetContainer(fContainer);
403 if (fContainer != NULL)
404 fContainer->NotifyValueNodeChildrenCreated(this);
H A DBMessageValueNode.cpp340 whatNode->SetContainer(fContainer);
366 node->SetContainer(fContainer);
372 if (fContainer != NULL)
373 fContainer->NotifyValueNodeChildrenCreated(this);
664 if (fContainer != NULL)
665 child->SetContainer(fContainer);
672 if (fContainer != NULL)
673 fContainer->NotifyValueNodeChildrenCreated(this);
/haiku/src/kits/mail/
H A DMailAttachment.cpp439 fContainer(NULL),
450 fContainer(NULL),
460 fContainer(NULL),
470 // Our SimpleAttachments are deleted by fContainer
471 delete fContainer;
479 delete fContainer;
481 fContainer = new BMIMEMultipartMailContainer("++++++BFile++++++");
484 fContainer->AddComponent(_data);
490 fContainer->AddComponent(_attributes_attach);
492 fContainer
[all...]
/haiku/src/apps/icon-o-matic/style/
H A DRemoveStylesCommand.cpp81 shape->SetStyle(fContainer->ItemAt(0));
/haiku/headers/os/mail/
H A DMailAttachment.h120 BMIMEMultipartMailContainer *fContainer; member in class:BAttributedMailAttachment
/haiku/headers/os/storage/
H A DResources.h123 BPrivate::Storage::ResourcesContainer* fContainer; member in class:BResources

Completed in 485 milliseconds

12