Searched refs:archive (Results 101 - 125 of 324) sorted by relevance

1234567891011>>

/haiku/src/add-ons/screen_savers/butterfly/
H A DButterfly.h17 Butterfly(BMessage* archive, image_id imageID);
/haiku/src/add-ons/translators/wonderbrush/
H A DLayer.h57 status_t Unarchive(const BMessage* archive);
/haiku/src/apps/sudoku/
H A DSudokuField.cpp57 SudokuField::SudokuField(const BMessage* archive) argument
59 if (archive->FindInt32("block size", (int32*)&fBlockSize) != B_OK)
73 if (archive->FindInt32("value", i, (int32*)&field.value) != B_OK
74 || archive->FindInt32("valid mask", i,
76 || archive->FindInt32("hint mask", i,
78 || archive->FindInt32("flags", i, (int32*)&field.flags) != B_OK)
113 SudokuField::Archive(BMessage* archive, bool deep) const argument
115 status_t status = BArchivable::Archive(archive, deep);
117 archive->AddInt32("block size", fBlockSize);
124 status = archive
138 Instantiate(BMessage* archive) argument
[all...]
/haiku/src/add-ons/screen_savers/leaves/
H A DLeaves.h19 Leaves(BMessage* archive, image_id id);
/haiku/src/add-ons/screen_savers/icons/
H A DIconsSaver.h27 IconsSaver(BMessage* archive, image_id);
/haiku/src/kits/mail/
H A DFileConfigView.cpp142 MailFileConfigView::SetTo(const BMessage* archive, BMessage* meta) argument
144 SetText((fUseMeta ? meta : archive)->FindString(fName));
152 BMessage* archive = fUseMeta ? fMeta : &settings; local
153 return archive->SetString(fName, Text());
/haiku/src/tests/kits/locale/
H A DcollatorTest.cpp172 BMessage archive; local
173 if (gCollator->Archive(&archive, true) != B_OK)
176 BArchivable *unarchived = instantiate_object(&archive);
187 archive.PrintToStream();
/haiku/src/kits/interface/
H A DGradient.cpp112 BGradient::BGradient(BMessage* archive) argument
113 : BArchivable(archive),
117 if (!archive)
122 for (int32 i = 0; archive->FindFloat("offset", i, &stop.offset) >= B_OK; i++) {
123 if (archive->FindInt32("color", i, (int32*)&stop.color) >= B_OK)
128 if (archive->FindInt32("type", (int32*)&fType) < B_OK)
132 if (archive->FindFloat("linear_x1", (float*)&fData.linear.x1) < B_OK)
134 if (archive->FindFloat("linear_y1", (float*)&fData.linear.y1) < B_OK)
136 if (archive->FindFloat("linear_x2", (float*)&fData.linear.x2) < B_OK)
138 if (archive
[all...]
H A DStatusBar.cpp55 BStatusBar::BStatusBar(BMessage *archive) argument
57 BView(archive)
61 archive->FindString("_label", &fLabel);
62 archive->FindString("_tlabel", &fTrailingLabel);
64 archive->FindString("_text", &fText);
65 archive->FindString("_ttext", &fTrailingText);
68 if (archive->FindFloat("_high", &floatValue) == B_OK) {
74 if (archive->FindInt32("_bcolor", (int32 *)&color) == B_OK) {
79 if (archive->FindFloat("_val", &floatValue) == B_OK)
81 if (archive
92 Instantiate(BMessage *archive) argument
102 Archive(BMessage *archive, bool deep) const argument
[all...]
H A DShape.cpp146 BShape::BShape(BMessage* archive) argument
148 BArchivable(archive)
157 archive->GetInfo("ops", &type, &count);
163 while (archive->FindData("ops", B_INT32_TYPE, i++,
168 archive->GetInfo("pts", &type, &count);
176 while (archive->FindData("pts", B_POINT_TYPE, i++,
196 BShape::Archive(BMessage* archive, bool deep) const argument
198 status_t result = BArchivable::Archive(archive, deep);
210 result = archive->AddData("pts", B_POINT_TYPE, data->ptList,
216 result = archive
232 Instantiate(BMessage* archive) argument
[all...]
H A DBox.cpp80 BBox::BBox(BMessage* archive) argument
82 BView(archive),
85 _InitObject(archive);
98 BBox::Instantiate(BMessage* archive) argument
100 if (validate_instantiation(archive, "BBox"))
101 return new BBox(archive);
108 BBox::Archive(BMessage* archive, bool deep) const argument
110 status_t ret = BView::Archive(archive, deep);
113 ret = archive->AddString("_label", fLabel);
116 ret = archive
635 _InitObject(BMessage* archive) argument
[all...]
/haiku/src/kits/locale/
H A DDefaultCatalog.cpp57 // version of the catalog archive structure, bump this if you change it!
370 BMessage archive; local
372 res = archive.AddString("class", "DefaultCatalog");
374 res = archive.AddInt32("c:sz", count);
376 res = archive.AddInt16("c:ver", kCatArchiveVersion);
378 res = archive.AddString("c:lang", fLanguageName.String());
380 res = archive.AddString("c:sig", fSignature.String());
382 res = archive.AddInt32("c:fpr", fFingerprint);
384 res = archive.Flatten(dataIO);
390 archive
[all...]
/haiku/headers/os/support/
H A DArchivable.h35 static BArchivable* Instantiate(BMessage* archive);
39 virtual status_t AllUnarchived(const BMessage* archive);
40 virtual status_t AllArchived(BMessage* archive) const;
54 BArchiver(BMessage* archive);
92 BUnarchiver(const BMessage* archive);
132 static bool IsArchiveManaged(const BMessage* archive);
133 static BMessage* PrepareArchive(BMessage*& archive);
136 static status_t InstantiateObject(BMessage* archive,
167 instantiation_func find_instantiation_func(BMessage* archive);
290 BUnarchiver::InstantiateObject(BMessage* archive, argument
[all...]
/haiku/headers/os/interface/
H A DListItem.h24 BListItem(BMessage* archive);
27 virtual status_t Archive(BMessage* archive,
/haiku/headers/os/net/
H A DNetAddress.h19 BNetAddress(BMessage* archive);
23 static BArchivable* Instantiate(BMessage* archive);
/haiku/src/apps/cortex/ValControl/
H A DValControlSegment.h156 ValControlSegment(BMessage* archive);
157 virtual status_t Archive(BMessage* archive, bool deep = true) const;
/haiku/src/apps/cortex/support/
H A DObservableLooper.h76 BMessage* archive);
113 BMessage* archive,
/haiku/src/apps/webpositive/
H A DBrowsingHistory.h22 BrowsingHistoryItem(const BMessage* archive);
25 status_t Archive(BMessage* archive) const;
H A DCredentialsStorage.h27 Credentials(const BMessage* archive);
30 status_t Archive(BMessage* archive) const;
/haiku/headers/private/debugger/settings/
H A DTeamSettings.h32 status_t SetTo(const BMessage& archive,
34 status_t WriteTo(BMessage& archive) const;
/haiku/headers/private/interface/
H A DColorMenuItem.h26 static BArchivable* Instantiate(BMessage* archive);
27 virtual status_t Archive(BMessage* archive,
/haiku/src/apps/mediaplayer/playlist/
H A DUrlPlaylistItem.h17 UrlPlaylistItem(const BMessage* archive);
22 static BArchivable* Instantiate(BMessage* archive);
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/
H A DSettings.cpp12 Settings::Settings(const char* accountName, const BMessage& archive) argument
14 fMessage(archive),
/haiku/headers/os/app/
H A DCursor.h59 virtual status_t Archive(BMessage* archive,
61 static BArchivable* Instantiate(BMessage* archive);
/haiku/src/apps/deskcalc/
H A DExpressionTextView.h55 void LoadSettings(const BMessage* archive);
56 status_t SaveSettings(BMessage* archive) const;

Completed in 204 milliseconds

1234567891011>>