Searched refs:clone (Results 26 - 50 of 118) sorted by path

12345

/haiku/src/apps/cortex/NodeManager/
H A DConnection.h91 const Connection& clone); //nyi
93 const Connection& clone); //nyi
/haiku/src/apps/cortex/RouteApp/
H A DNodeKey.h77 const NodeKey& clone) { _clone(clone); }
79 const NodeKey& clone) { _clone(clone); return *this; }
114 const NodeKey& clone) {
115 content = clone.content;
116 m_node = clone.m_node;
76 NodeKey( const NodeKey& clone) argument
78 operator =( const NodeKey& clone) argument
113 _clone( const NodeKey& clone) argument
/haiku/src/apps/cortex/ValControl/
H A DValCtrlLayoutEntry.h93 ValCtrlLayoutEntry(const ValCtrlLayoutEntry& clone) { argument
94 operator=(clone);
97 ValCtrlLayoutEntry& operator=(const ValCtrlLayoutEntry& clone) { argument
98 type = clone.type;
99 flags = clone.flags;
100 pView = clone.pView;
102 frame = clone.frame;
103 fPadding = clone.fPadding;
/haiku/src/apps/cortex/addons/common/
H A DAudioBuffer.h82 AudioBuffer(const AudioBuffer& clone);
83 AudioBuffer& operator=(const AudioBuffer& clone);
H A DRawBuffer.cpp83 RawBuffer::RawBuffer(const RawBuffer& clone) { argument
84 operator=(clone);
88 RawBuffer& RawBuffer::operator=(const RawBuffer& clone) { argument
89 m_pData = clone.m_pData;
90 m_allocatedSize = clone.m_allocatedSize;
91 m_frameSize = clone.m_frameSize;
92 m_frames = clone.m_frames;
93 m_bCircular = clone.m_bCircular;
94 m_pPool = clone.m_pPool;
/haiku/src/apps/icon-o-matic/generic/gui/
H A DIconButton.cpp243 BMessage clone(*message);
244 clone.AddInt64("be:when", system_time());
245 clone.AddPointer("be:source", (BView*)this);
246 clone.AddInt32("be:value", Value());
247 clone.AddInt32("id", ID());
248 return BInvoker::Invoke(&clone);
/haiku/src/apps/icon-o-matic/generic/property/
H A DPropertyObject.cpp205 Property* clone = p->Clone(); local
206 if (!AddProperty(clone)) {
207 delete clone;
/haiku/src/apps/icon-o-matic/generic/property/specific_properties/
H A DOptionProperty.cpp34 // clone the actual options
38 option* clone = new (nothrow) option; local
39 if (!clone || !fOptions.AddItem(clone)) {
40 delete clone;
43 clone->id = o->id;
44 clone->name = o->name;
/haiku/src/apps/mediaplayer/playlist/
H A DListViews.cpp897 BListItem* clone = NULL; local
899 clone = new SimpleItem(item->Text());
900 return clone;
/haiku/src/apps/mediaplayer/supplier/
H A DSubTitlesSRT.cpp118 SubTitle* clone = new(std::nothrow) SubTitle(subTitle); local
119 if (clone == NULL || !fSubTitles.AddItem(clone, index)) {
120 delete clone;
/haiku/src/build/libroot/
H A Dfs_descriptors.cpp129 FileDescriptor::Dup(Descriptor *&clone) argument
135 clone = new FileDescriptor(dupFD);
188 DirectoryDescriptor::Dup(Descriptor *&clone) argument
199 clone = new DirectoryDescriptor(dupDir, ref);
251 SymlinkDescriptor::Dup(Descriptor *&clone) argument
253 clone = new SymlinkDescriptor(path.c_str());
415 AttributeDescriptor::Dup(Descriptor*& clone) argument
459 AttrDirDescriptor::Dup(Descriptor *&clone) argument
H A Dfs_descriptors.h30 virtual status_t Dup(Descriptor *&clone) = 0;
45 virtual status_t Dup(Descriptor *&clone);
60 virtual status_t Dup(Descriptor *&clone);
73 virtual status_t Dup(Descriptor *&clone);
96 virtual status_t Dup(Descriptor*& clone);
115 virtual status_t Dup(Descriptor *&clone);
/haiku/src/kits/game/
H A DSimpleGameSound.cpp101 BSimpleGameSound *clone = new BSimpleGameSound(data, 0, &format, Device());
104 return clone;
/haiku/src/kits/interface/
H A DControl.cpp420 BMessage clone(kind);
426 clone = *message;
428 clone.AddInt64("when", (int64)system_time());
429 clone.AddPointer("source", this);
430 clone.AddInt32("be:value", fValue);
431 clone.AddMessenger("be:sender", BMessenger(this));
436 err = BInvoker::Invoke(&clone);
441 SendNotices(kind, &clone);
H A DOptionControl.cpp163 BOptionControl::BOptionControl(const BOptionControl & clone) argument
171 BOptionControl::operator=(const BOptionControl & clone) argument
H A DOptionPopUp.cpp351 BOptionPopUp::BOptionPopUp(const BOptionPopUp& clone) argument
353 BOptionControl(clone.Frame(), "", "", clone.Message())
359 BOptionPopUp::operator=(const BOptionPopUp& clone) argument
/haiku/src/kits/interface/layouter/
H A DCollapsingLayouter.cpp236 CollapsingLayouter* clone = new CollapsingLayouter(fElementCount, fSpacing); local
238 clone->fElements[i].SetTo(fElements[i]);
240 clone->fValidElementCount = fValidElementCount;
241 clone->fHaveMultiElementConstraints = fHaveMultiElementConstraints;
244 clone->fLayouter = fLayouter->CloneLayouter();
245 return clone;
H A DLayoutOptimizer.cpp576 LayoutOptimizer* clone = new(nothrow) LayoutOptimizer(fVariableCount); local
577 ObjectDeleter<LayoutOptimizer> cloneDeleter(clone);
578 if (!clone || clone->InitCheck() != B_OK
579 || !clone->AddConstraintsFrom(this)) {
/haiku/src/kits/media/
H A DTimeCode.cpp266 BTimeCode::BTimeCode(const BTimeCode &clone) argument
269 if (SetType(clone.Type()) == B_OK) {
270 SetData(clone.Hours(),clone.Minutes(),clone.Seconds(),clone.Frames());
336 BTimeCode::operator=(const BTimeCode &clone) argument
339 fHours = clone.Hours();
340 fMinutes = clone.Minutes();
341 fSeconds = clone
[all...]
/haiku/src/kits/package/hpkg/
H A DPackageFileHeapReader.cpp138 PackageFileHeapReader* clone = new(std::nothrow) PackageFileHeapReader( local
141 if (clone == NULL)
145 if (!clone->fOffsets.Init(chunkCount, fOffsets)) {
146 delete clone;
150 return clone;
/haiku/src/kits/shared/
H A DCalendarView.cpp308 BMessage clone(kind);
318 clone = *message;
320 clone.AddPointer("source", this);
321 clone.AddInt64("when", (int64)system_time());
322 clone.AddMessenger("be:sender", BMessenger(this));
328 clone.AddInt32("year", fDate.Year());
329 clone.AddInt32("month", fDate.Month());
330 clone.AddInt32("day", fDate.Day());
333 status = BInvoker::Invoke(&clone);
335 SendNotices(kind, &clone);
[all...]
/haiku/src/kits/storage/
H A DDriverSettings.cpp92 Delegate* clone = fDelegate->Clone(); local
93 if (clone == NULL)
95 _SetTo(clone, false);
/haiku/src/libs/alm/
H A DALMGroup.cpp137 ALMGroup clone = *this; local
140 fGroups.push_back(clone);
/haiku/src/servers/media/
H A DBufferManager.h46 void _ReleaseClonedArea(area_id clone);
50 area_id clone; member in struct:BufferManager::clone_info
H A DDefaultManager.cpp544 media_node clone; local
546 &clone) == B_OK) {
547 if (clone.kind & B_TIME_SOURCE) {
548 fTimeSource = clone.node;
549 fRoster->StartTimeSource(clone,
551 fRoster->ReleaseNode(clone);
555 fRoster->ReleaseNode(clone);

Completed in 363 milliseconds

12345