Searched refs:into (Results 126 - 150 of 206) sorted by relevance

123456789

/haiku/src/preferences/input/
H A DMouseSettings.h93 status_t Archive(BMessage* into, bool deep = false) const;
/haiku/src/libs/icon/transformer/
H A DPerspectiveTransformer.h97 virtual status_t Archive(BMessage* into,
/haiku/src/apps/icon-o-matic/gui/
H A DTransformerListView.h49 virtual status_t ArchiveSelection(BMessage* into, bool deep = true) const;
/haiku/src/apps/icon-o-matic/generic/property/
H A DPropertyObject.cpp47 PropertyObject::Archive(BMessage* into) const
49 if (!into)
65 ret = into->AddString(idString, value.String());
/haiku/headers/os/support/
H A DDateTime.h41 status_t Archive(BMessage* into) const;
99 status_t Archive(BMessage* into) const;
182 status_t Archive(BMessage* into) const;
/haiku/src/kits/interface/
H A DTextControl.cpp91 virtual status_t Archive(BMessage* into, bool deep = true) const;
121 virtual status_t Archive(BMessage* into, bool deep = true) const;
267 BTextControl::AllArchived(BMessage* into) const
269 BArchiver archiver(into);
1382 BTextControl::LabelLayoutItem::Archive(BMessage* into, bool deep) const argument
1384 BArchiver archiver(into);
1385 status_t err = BAbstractLayoutItem::Archive(into, deep);
1387 err = into->AddRect(kFrameField, fFrame);
1518 BTextControl::TextViewLayoutItem::Archive(BMessage* into, bool deep) const argument
1520 BArchiver archiver(into);
[all...]
H A DLayout.cpp437 BLayout::Archive(BMessage* into, bool deep) const argument
439 BArchiver archiver(into);
440 status_t err = BLayoutItem::Archive(into, deep);
449 err = ItemArchived(into, item, i);
506 BLayout::ItemArchived(BMessage* into, BLayoutItem* item, int32 index) const argument
H A DTwoDimensionalLayout.cpp37 // fed into the vertical layout process.
409 BTwoDimensionalLayout::Archive(BMessage* into, bool deep) const argument
411 BArchiver archiver(into);
412 status_t err = BAbstractLayout::Archive(into, deep);
416 err = into->AddRect(kInsetsField, insets);
420 err = into->AddFloat(kSpacingField, fHSpacing);
423 err = into->AddFloat(kSpacingField, fVSpacing);
430 BTwoDimensionalLayout::AllArchived(BMessage* into) const
432 BArchiver archiver(into);
434 status_t err = BLayout::AllArchived(into);
458 ItemArchived(BMessage* into, BLayoutItem* item, int32 index) const argument
[all...]
H A DMenuField.cpp96 virtual status_t Archive(BMessage* into, bool deep = true) const;
129 virtual status_t Archive(BMessage* into, bool deep = true) const;
354 BMenuField::AllArchived(BMessage* into) const
357 if ((err = BView::AllArchived(into)) != B_OK)
360 BArchiver archiver(into);
1504 BMenuField::LabelLayoutItem::Archive(BMessage* into, bool deep) const argument
1506 BArchiver archiver(into);
1507 status_t err = BAbstractLayoutItem::Archive(into, deep);
1510 err = into->AddRect(kFrameField, fFrame);
1638 BMenuField::MenuBarLayoutItem::Archive(BMessage* into, boo argument
[all...]
H A DAbstractSpinner.cpp223 virtual status_t Archive(BMessage* into, bool deep = true) const;
253 virtual status_t Archive(BMessage* into, bool deep = true) const;
739 BAbstractSpinner::LabelLayoutItem::Archive(BMessage* into, bool deep) const argument
741 BArchiver archiver(into);
742 status_t result = BAbstractLayoutItem::Archive(into, deep);
745 result = into->AddRect(kFrameField, fFrame);
867 BAbstractSpinner::TextViewLayoutItem::Archive(BMessage* into, bool deep) const argument
869 BArchiver archiver(into);
870 status_t result = BAbstractLayoutItem::Archive(into, deep);
873 result = into
[all...]
/haiku/src/add-ons/translators/wonderbrush/
H A DLayer.cpp48 Layer::Compose(const BBitmap* into, BRect area) argument
56 if (!into || !area.IsValid() || (status = into->InitCheck()) < B_OK)
71 uint8* dst = (uint8*)into->Bits();
72 uint32 bpr = into->BytesPerRow();
/haiku/src/kits/support/
H A DDateTime.cpp96 Archives the BTime object into the provided BMessage object.
103 BTime::Archive(BMessage* into) const
105 if (into == NULL)
107 return into->AddInt64("microseconds", fMicroseconds);
535 Archives the BDate object into the provided BMessage object.
542 BDate::Archive(BMessage* into) const
544 if (into == NULL)
546 status_t ret = into->AddInt32("day", fDay);
548 ret = into->AddInt32("year", fYear);
550 ret = into
[all...]
H A DArchivingManagers.cpp167 // first, we must sort the objects into the order they were archived in
263 BMessage* into = &fObjects[i + 1].archive; local
264 status_t err = archive->FindMessage(kArchivableField, i, into);
265 MarkArchive(into);
/haiku/src/libs/alm/
H A DALMLayout.cpp1043 BALMLayout::Archive(BMessage* into, bool deep) const argument
1045 BArchiver archiver(into);
1046 status_t err = BAbstractLayout::Archive(into, deep);
1051 err = into->AddRect(kInsetsField, insets);
1056 err = into->AddSize(kSpacingField, spacing);
1096 BALMLayout::ItemArchived(BMessage* into, BLayoutItem* item, int32 index) const argument
1098 BArchiver archiver(into);
1099 status_t err = BAbstractLayout::ItemArchived(into, item, index);
1104 err = into->AddSize(kItemPenalties, area->fShrinkPenalties);
1106 err = into
[all...]
/haiku/src/servers/input/
H A DMouseSettings.cpp340 MultipleMouseSettings::Archive(BMessage* into, bool deep) const argument
345 into->AddString("mouseDevice", itr->first);
346 into->AddData("mouseSettings", B_ANY_TYPE, itr->second->GetSettings(),
/haiku/src/apps/icon-o-matic/generic/gui/stateview/
H A DStateView.cpp379 StateView::Draw(BView* into, BRect updateRect) argument
386 fCurrentState->Draw(into, updateRect);
389 fDropAnticipatingState->Draw(into, updateRect);
/haiku/src/libs/icon/shape/
H A DVectorPath.cpp237 VectorPath::Archive(BMessage* into, bool deep) const argument
239 status_t ret = IconObject::Archive(into, deep);
246 ret = into->AddData("point", B_POINT_TYPE, &fPath[0].point,
249 ret = into->AddData("point in", B_POINT_TYPE, &fPath[0].point_in,
253 ret = into->AddData("point out", B_POINT_TYPE, &fPath[0].point_out,
257 ret = into->AddData("connected", B_BOOL_TYPE, &fPath[0].connected,
263 ret = into->AddData("point", B_POINT_TYPE, &fPath[i].point,
266 ret = into->AddData("point in", B_POINT_TYPE, &fPath[i].point_in,
270 ret = into->AddData("point out", B_POINT_TYPE,
274 ret = into
[all...]
/haiku/headers/os/net/
H A DNetBuffer.h31 virtual status_t Archive(BMessage* into, bool deep = true) const;
H A DNetEndpoint.h30 virtual status_t Archive(BMessage* into, bool deep = true) const;
/haiku/headers/os/interface/
H A DSeparatorView.h50 virtual status_t Archive(BMessage* into,
H A DGradient.h56 status_t Archive(BMessage* into,
/haiku/src/apps/mediaplayer/playlist/
H A DFilePlaylistItem.h28 virtual status_t Archive(BMessage* into,
H A DPlaylistItem.h38 virtual status_t Archive(BMessage* into,
H A DPlaylist.h59 status_t Archive(BMessage* into) const;
/haiku/headers/private/netservices/
H A DNetworkCookie.h77 virtual status_t Archive(BMessage* into,

Completed in 219 milliseconds

123456789