Searched refs:m_target (Results 1 – 8 of 8) sorted by relevance
/haiku/src/apps/cortex/support/ |
H A D | ILockable.h | 94 ASSERT(m_target); in ~Autolock() 96 m_target->unlock(); in ~Autolock() 99 Autolock(ILockable& target) : m_target(&target) { init(); } in Autolock() 100 Autolock(ILockable* target) : m_target( target) { init(); } in Autolock() 103 m_target(const_cast<ILockable*>(&target)) { init(); } in Autolock() 105 m_target(const_cast<ILockable*>( target)) { init(); } in Autolock() 109 ASSERT(m_target); in init() 110 m_locked = m_target->lock(); in init() 113 ILockable* m_target; variable
|
H A D | ProfileBlock.h | 52 m_target(target), in ProfileBlock() 57 m_target.addBlockEntry(m_name, system_time()-m_initTime); in ~ProfileBlock() 61 ProfileTarget& m_target;
|
H A D | TextControlFloater.cpp | 121 m_target(target), in TextControlFloater() 171 m_target.SendMessage(message); in MessageReceived() 185 m_target.SendMessage(m_cancelMessage); in QuitRequested()
|
H A D | TextControlFloater.h | 84 BMessenger m_target; variable
|
/haiku/src/apps/cortex/ParameterView/ |
H A D | ParameterContainerView.cpp | 59 m_target(target), in ParameterContainerView() 67 m_target->Bounds(), 0, B_FOLLOW_ALL_SIDES, B_WILL_DRAW|B_FRAME_EVENTS); in ParameterContainerView() 68 m_target->SetResizingMode(B_FOLLOW_LEFT|B_FOLLOW_TOP); in ParameterContainerView() 69 m_target->MoveTo(B_ORIGIN); in ParameterContainerView() 70 wrapper->AddChild(m_target); in ParameterContainerView() 87 m_target, in ParameterContainerView() 99 m_target, in ParameterContainerView()
|
H A D | ParameterContainerView.h | 79 BView* m_target;
|
/haiku/src/apps/cortex/TipManager/ |
H A D | TipManagerImpl.h | 150 m_target(target), in _ViewEntry() 185 BView* target() const { return m_target; } in target() 198 BView* m_target; variable 217 m_target(target) {} in _WindowEntry() 245 BWindow* target() const { return m_target; } in target() 253 BWindow* m_target;
|
H A D | TipManagerImpl.cpp | 94 while(pCurView && pCurView != m_target) { in add() 98 if(pCurView != m_target) in add() 164 while(pCurView && pCurView != m_target) { in remove() 168 if(pCurView != m_target) in remove() 268 m_target->ConvertFromParent(&f); in match() 269 return make_pair(m_target, f.Contains(point) ? pFront : 0); in match() 284 return pair<BView*, const tip_entry*>(m_target, entry); in match() 312 ASSERT(m_target); in Frame() 319 BRect f = m_target->Frame(); in Frame() 353 m_target->Name())); in dump() [all …]
|