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

12345

/haiku/src/libs/alm/
H A DALMGroup.cpp137 ALMGroup clone = *this; local
140 fGroups.push_back(clone);
/haiku/src/tools/cppunit/
H A DTestApp.cpp18 // clone and push it
19 BMessage *clone = new BMessage(*message); local
21 fQueue.AddMessage(clone);
/haiku/docs/develop/media/
H A DMediaFileProducerAddOn.h74 const MediaFileProducerAddOn & clone);
76 const MediaFileProducerAddOn & 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 DOptionPopUp.cpp351 BOptionPopUp::BOptionPopUp(const BOptionPopUp& clone) argument
353 BOptionControl(clone.Frame(), "", "", clone.Message())
359 BOptionPopUp::operator=(const BOptionPopUp& clone) argument
H A DMenuItem.cpp597 BMessage clone(kind);
607 clone = *message;
609 clone.AddInt32("index", fSuper->IndexOf(this));
610 clone.AddInt64("when", (int64)system_time());
611 clone.AddPointer("source", this);
612 clone.AddMessenger("be:sender", BMessenger(fSuper));
615 err = BInvoker::Invoke(&clone);
618 // SendNotices(kind, &clone);
/haiku/headers/tools/cppunit/cppunit/
H A DException.h62 virtual Exception *clone() const;
/haiku/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/src/kits/locale/
H A DTimeZone.cpp58 : other.fICUTimeZone->clone()),
61 : other.fICULocale->clone()),
87 : source.fICUTimeZone->clone();
90 : source.fICULocale->clone();
/haiku/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.cpp54 media_destination::media_destination(const media_destination& clone) argument
56 port(clone.port),
57 id(clone.id)
63 media_destination::operator=(const media_destination& clone) argument
65 port = clone.port;
66 id = clone.id;
99 media_source::media_source(const media_source& clone) argument
101 port(clone.port),
102 id(clone.id)
108 media_source::operator=(const media_source& clone) argument
886 operator =(const media_format& clone) argument
[all...]
/haiku/3rdparty/docker/cross-compiler/
H A Dbuild-toolchain.sh29 git clone --depth=1 --branch $HAIKU_REV https://review.haiku-os.org/haiku
30 git clone --depth=1 --branch $BUILDTOOLS_REV https://review.haiku-os.org/buildtools
/haiku/src/kits/tracker/
H A DIconMenuItem.cpp208 BMessage clone(*message);
209 clone.AddInt32("index", Menu()->IndexOf(this));
210 clone.AddInt64("when", system_time());
211 clone.AddPointer("source", this);
216 clone.RemoveData("nodeRefsToClose");
219 return BInvoker::Invoke(&clone);
H A DFSUtils.h311 WellKnownEntry(const WellKnownEntry &clone) argument
313 node(clone.node),
314 which(clone.which),
315 name(clone.name)
/haiku/src/system/libroot/add-ons/icu/
H A DICUCtypeData.cpp546 // ... and clone it into the mbstate
549 UConverter* clone local
552 if (clone == NULL || !U_SUCCESS(icuStatus))
555 if ((char*)clone < mbState->data || (char*)clone >= mbState->data + 8) {
561 mbState->converter = clone;
563 converterOut = clone;
/haiku/src/servers/media/
H A Dmedia_server.cpp422 request.team, &reply.clone);
487 area_id clone; local
488 clone = clone_area("media_inputs clone", (void**)&inputs,
490 if (clone < B_OK) {
491 ERROR("SERVER_PUBLISH_INPUTS: failed to clone area, "
492 "error %#" B_PRIx32 "\n", clone);
493 status = clone;
497 delete_area(clone);
516 area_id clone; local
[all...]
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);
/haiku/src/add-ons/media/media-add-ons/reader/
H A DMediaReader.h219 const MediaReader & clone);
221 const MediaReader & clone);
/haiku/src/add-ons/media/media-add-ons/writer/
H A DMediaWriter.h181 const MediaWriter & clone);
183 const MediaWriter & 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/bin/
H A Dxres.cpp159 MemoryResourceDataSource(const void *data, size_t size, bool clone) argument
161 _Init(data, size, clone);
164 MemoryResourceDataSource(const char *data, bool clone) argument
166 _Init(data, strlen(data) + 1, clone);
182 void _Init(const void *data, size_t size, bool clone) argument
184 if (clone) {
/haiku/src/add-ons/kernel/file_systems/userlandfs/shared/
H A DDriverSettings.cpp76 Delegate* clone = fDelegate->Clone(); local
77 if (!clone)
79 _SetTo(clone, false);

Completed in 117 milliseconds

12345