Searched refs:clone (Results 51 - 75 of 123) sorted by relevance

12345

/haiku-fatelf/src/kits/interface/
H A DControl.cpp409 BMessage clone(kind);
415 clone = *message;
417 clone.AddInt64("when", (int64)system_time());
418 clone.AddPointer("source", this);
419 clone.AddInt32("be:value", fValue);
420 clone.AddMessenger("be:sender", BMessenger(this));
425 err = BInvoker::Invoke(&clone);
430 SendNotices(kind, &clone);
H A DOptionControl.cpp163 BOptionControl::BOptionControl(const BOptionControl & clone) argument
171 BOptionControl::operator=(const BOptionControl & clone) argument
H A DOptionPopUp.cpp336 BOptionPopUp::BOptionPopUp(const BOptionPopUp& clone) argument
338 BOptionControl(clone.Frame(), "", "", clone.Message())
344 BOptionPopUp::operator=(const BOptionPopUp& clone) argument
H A DMenuItem.cpp605 BMessage clone(kind);
615 clone = *message;
617 clone.AddInt32("index", Menu()->IndexOf(this));
618 clone.AddInt64("when", (int64)system_time());
619 clone.AddPointer("source", this);
620 clone.AddMessenger("be:sender", BMessenger(fSuper));
623 err = BInvoker::Invoke(&clone);
626 // SendNotices(kind, &clone);
/haiku-fatelf/src/libs/alm/
H A DALMGroup.cpp137 ALMGroup clone = *this; local
140 fGroups.push_back(clone);
/haiku-fatelf/src/tools/cppunit/
H A DTestApp.cpp18 // clone and push it
19 BMessage *clone = new BMessage(*message); local
21 fQueue.AddMessage(clone);
/haiku-fatelf/headers/tools/cppunit/cppunit/
H A DException.h62 virtual Exception *clone() const;
/haiku-fatelf/src/kits/locale/
H A DTimeZone.cpp54 : other.fICUTimeZone->clone()),
57 : other.fICULocale->clone()),
83 : source.fICUTimeZone->clone();
86 : source.fICULocale->clone();
/haiku-fatelf/src/kits/media/
H A DTimedEventQueue.cpp68 media_timed_event::media_timed_event(const media_timed_event &clone) argument
71 *this = clone;
76 media_timed_event::operator=(const media_timed_event &clone) argument
79 memcpy(this, &clone, sizeof(*this));
H A DMediaDefs.cpp39 media_destination::media_destination(const media_destination& clone) argument
41 port(clone.port),
42 id(clone.id)
48 media_destination::operator=(const media_destination& clone) argument
50 port = clone.port;
51 id = clone.id;
84 media_source::media_source(const media_source& clone) argument
86 port(clone.port),
87 id(clone.id)
93 media_source::operator=(const media_source& clone) argument
846 operator =(const media_format& clone) argument
[all...]
/haiku-fatelf/src/kits/tracker/
H A DFSUtils.h300 WellKnownEntry(const WellKnownEntry &clone) argument
302 node(clone.node),
303 which(clone.which),
304 name(clone.name)
/haiku-fatelf/src/tools/cppunit/cppunit/
H A DException.cpp115 Exception::clone() const function in class:CppUnit::Exception
H A DNotEqualException.cpp71 NotEqualException::clone() const function in class:CppUnit::NotEqualException
H A DTestCase.cpp36 Exception *copy = e.clone();
H A DTestResultCollector.cpp52 m_failures.push_back( failure.clone() );
/haiku-fatelf/src/add-ons/kernel/network/stack/
H A Dutility.cpp44 net_buffer* Dequeue(bool clone);
270 net_buffer *buffer = gNetBufferModule.clone(_buffer, false);
297 Fifo::Dequeue(bool clone) argument
303 if (clone) {
304 buffer = gNetBufferModule.clone(buffer, false);
370 MSG_PEEK - returns a clone of the buffer and keep the original
385 // we need to clone the buffer for inspection; we can't give a
387 buffer = gNetBufferModule.clone(buffer, false);
440 net_buffer *buffer = gNetBufferModule.clone(_buffer, false);
/haiku-fatelf/src/system/libroot/add-ons/icu/
H A DICUCtypeData.cpp529 // ... and clone it into the mbstate
532 UConverter* clone local
534 if (clone == NULL || !U_SUCCESS(icuStatus))
537 if ((char*)clone < mbState->data || (char*)clone >= mbState->data + 8) {
543 mbState->converter = clone;
545 converterOut = clone;
/haiku-fatelf/src/servers/media/
H A Dmedia_server.cpp426 request.team, &reply.clone);
491 area_id clone; local
492 clone = clone_area("media_inputs clone", (void**)&inputs,
494 if (clone < B_OK) {
495 ERROR("SERVER_PUBLISH_INPUTS: failed to clone area, "
496 "error %#lx\n", clone);
497 status = clone;
501 delete_area(clone);
520 area_id clone; local
[all...]
H A DDefaultManager.cpp535 media_node clone; local
537 &clone)) {
538 if (clone.kind & B_TIME_SOURCE) {
539 fTimeSource = clone.node;
540 BMediaRoster::Roster()->StartTimeSource(clone,
542 BMediaRoster::Roster()->ReleaseNode(clone);
546 BMediaRoster::Roster()->ReleaseNode(clone);
/haiku-fatelf/src/add-ons/media/media-add-ons/reader/
H A DMediaReader.h216 const MediaReader & clone);
218 const MediaReader & clone);
/haiku-fatelf/src/add-ons/media/media-add-ons/writer/
H A DMediaWriter.h178 const MediaWriter & clone);
180 const MediaWriter & clone);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/fs_shell/
H A Dcache.h31 void *clone; /* copy of data by set_block_info() */ member in struct:cache_ent
/haiku-fatelf/src/apps/icon-o-matic/generic/property/
H A DPropertyObject.cpp205 Property* clone = p->Clone(); local
206 if (!AddProperty(clone)) {
207 delete clone;
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/shared/
H A DDriverSettings.cpp75 Delegate* clone = fDelegate->Clone(); local
76 if (!clone)
78 _SetTo(clone, false);
/haiku-fatelf/src/kits/shared/
H A DCalendarView.cpp292 BMessage clone(kind);
302 clone = *message;
304 clone.AddPointer("source", this);
305 clone.AddInt64("when", (int64)system_time());
306 clone.AddMessenger("be:sender", BMessenger(this));
312 clone.AddInt32("year", fDate.Year());
313 clone.AddInt32("month", fDate.Month());
314 clone.AddInt32("day", fDate.Day());
317 status = BInvoker::Invoke(&clone);
319 SendNotices(kind, &clone);
[all...]

Completed in 311 milliseconds

12345