Searched refs:archive (Results 251 - 275 of 324) sorted by relevance

<<111213

/haiku/src/apps/icon-o-matic/
H A DMainWindow.cpp282 BMessage archive; local
283 archive.Unflatten(data);
285 if (archive.what == PathListView::kSelectionArchiveCode)
286 fPathListView->HandlePaste(&archive);
287 if (archive.what == ShapeListView::kSelectionArchiveCode)
288 fShapeListView->HandlePaste(&archive);
289 if (archive.what == StyleListView::kSelectionArchiveCode)
290 fStyleListView->HandlePaste(&archive);
291 if (archive.what == TransformerListView::kSelectionArchiveCode)
292 fTransformerListView->HandlePaste(&archive);
968 StoreSettings(BMessage* archive) argument
979 RestoreSettings(const BMessage* archive) argument
[all...]
/haiku/src/bin/unzip/
H A Dapi.c20 int UzpValidate(char *archive, int AllCodes);
26 int UzpGrep(char *archive, char *file, char *pattern, int cmd, int SkipBin,
428 /* Purpose: Determine if file in archive contains the string szSearch
430 Parameters: archive = archive name
431 file = file contained in the archive. This cannot be
452 int UZ_EXP UzpGrep(char *archive, char *file, char *pattern, int cmd, argument
463 if (!UzpUnzipToMemory(archive, file, &flgopts, UsrFuncts, &retstr)) {
537 int UZ_EXP UzpValidate(char *archive, int AllCodes) argument
559 if (archive
[all...]
/haiku/src/kits/interface/
H A DStringView.cpp75 BStringView::BStringView(BMessage* archive) argument
77 BView(archive),
82 fAlign = (alignment)archive->GetInt32("_align", B_ALIGN_LEFT);
83 fTruncation = (uint32)archive->GetInt32("_truncation", B_NO_TRUNCATION);
85 const char* text = archive->GetString("_text", NULL);
H A DView.cpp385 AddDataToArchive(BMessage* archive) argument
387 status_t err = archive->AddSize(kSizesField, fMinSize);
390 err = archive->AddSize(kSizesField, fMaxSize);
393 err = archive->AddSize(kSizesField, fPreferredSize);
396 err = archive->AddAlignment(kAlignmentField, fAlignment);
402 PopulateFromArchive(BMessage* archive) argument
404 archive->FindSize(kSizesField, 0, &fMinSize);
405 archive->FindSize(kSizesField, 1, &fMaxSize);
406 archive->FindSize(kSizesField, 2, &fPreferredSize);
407 archive
443 BView(BMessage* archive) argument
[all...]
H A DCardLayout.cpp223 BCardLayout::AllArchived(BMessage* archive) const
225 return BAbstractLayout::AllArchived(archive);
/haiku/src/kits/support/
H A DDateTime.cpp75 Constructs a new BTime object from the provided BMessage archive.
77 BTime::BTime(const BMessage* archive) argument
81 if (archive == NULL)
83 archive->FindInt64("microseconds", &fMicroseconds);
510 Constructs a new BDate object from the provided archive.
512 BDate::BDate(const BMessage* archive) argument
518 if (archive == NULL)
520 archive->FindInt32("day", &fDay);
521 archive->FindInt32("year", &fYear);
522 archive
1268 BDateTime(const BMessage* archive) argument
[all...]
/haiku/src/apps/sudoku/
H A DSudokuView.cpp73 SudokuView::SudokuView(BMessage* archive) argument
75 BView(archive)
77 _InitObject(archive);
112 SudokuView::Instantiate(BMessage* archive) argument
114 if (!validate_instantiation(archive, "SudokuView"))
116 return new SudokuView(archive);
391 // it should not become part of the archive
395 BMessage archive; local
396 status = bitmap->Archive(&archive);
398 status = archive
897 _InitObject(const BMessage* archive) argument
[all...]
/haiku/src/apps/mediaplayer/playlist/
H A DFilePlaylistItem.cpp42 FilePlaylistItem::FilePlaylistItem(const BMessage* archive) argument
46 if (archive != NULL) {
48 while (archive->FindString(kPathKey, i, &path) == B_OK) {
77 FilePlaylistItem::Instantiate(BMessage* archive) argument
79 if (validate_instantiation(archive, "FilePlaylistItem"))
80 return new (std::nothrow) FilePlaylistItem(archive);
H A DPlaylist.h58 status_t Unarchive(const BMessage* archive);
/haiku/src/apps/icon-o-matic/generic/property/view/
H A DPropertyListView.cpp192 BMessage archive; local
194 data->FindMessage("property", i, &archive) >= B_OK;
196 BArchivable* archivable = instantiate_object(&archive);
225 BMessage archive; local
226 if (property->Archive(&archive) >= B_OK) {
227 data->AddMessage("property", &archive);
/haiku/src/apps/icon-o-matic/gui/
H A DPathListView.cpp511 BMessage archive; local
512 if (item->path->Archive(&archive, deep) == B_OK)
513 into->AddMessage("path", &archive);
523 PathListView::InstantiateSelection(const BMessage* archive, int32 dropIndex) argument
525 if (archive->what != PathListView::kSelectionArchiveCode
530 // Reconstruct the Styles from the archive and add them at the drop
536 if (archive->FindMessage("path", index, &pathArchive) != B_OK)
H A DStyleListView.cpp434 BMessage archive; local
435 if (item->style->Archive(&archive, true) == B_OK)
436 into->AddMessage("style", &archive);
445 StyleListView::InstantiateSelection(const BMessage* archive, int32 dropIndex) argument
447 if (archive->what != StyleListView::kSelectionArchiveCode
452 // Reconstruct the Styles from the archive and add them at the drop
458 if (archive->FindMessage("style", index, &styleArchive) != B_OK)
H A DPathListView.h55 virtual bool InstantiateSelection(const BMessage* archive, int32 dropIndex);
H A DShapeListView.h56 virtual bool InstantiateSelection(const BMessage* archive, int32 dropIndex);
H A DStyleListView.h52 virtual bool InstantiateSelection(const BMessage* archive, int32 dropIndex);
/haiku/src/servers/notification/
H A DNotificationView.cpp176 BMessage archive; local
177 if (fBitmap->Archive(&archive) == B_OK)
178 reply.AddMessage("result", &archive);
218 BMessage archive; local
219 if (msg->FindMessage("data", &archive) == B_OK) {
221 fBitmap = new BBitmap(&archive);
/haiku/src/tests/kits/interface/flatten_picture/
H A DPictureTest.cpp354 BMessage archive; local
355 TEST_AND_RETURN(picture->Archive(&archive) != B_OK, "Picture could not be archived to BMessage", NULL);
357 BArchivable *archivable = BPicture::Instantiate(&archive);
/haiku/src/add-ons/screen_savers/message/
H A DMessage.cpp87 Message(BMessage *archive, image_id);
109 Message::Message(BMessage *archive, image_id id) argument
110 : BScreenSaver(archive, id)
/haiku/src/libs/icon/shape/
H A DVectorPath.cpp128 VectorPath::VectorPath(BMessage* archive) argument
132 IconObject(archive),
141 if (!archive)
146 if (archive->GetInfo("point", &typeFound, &countFound) >= B_OK
156 && archive->FindPoint("point", i, &point) >= B_OK
157 && archive->FindPoint("point in", i, &pointIn) >= B_OK
158 && archive->FindPoint("point out", i, &pointOut) >= B_OK
159 && archive->FindBool("connected", i, &connected) >= B_OK; i++) {
166 if (archive->FindBool("path closed", &fClosed) < B_OK)
206 BMessage* archive local
[all...]
H A DShape.h66 virtual status_t Unarchive(BMessage* archive);
/haiku/headers/os/interface/
H A DAbstractLayout.h45 virtual status_t AllArchived(BMessage* archive) const;
H A DGradient.h53 BGradient(BMessage* archive);
/haiku/src/kits/package/hpkg/
H A DRepositoryWriterImpl.cpp445 // archive and flatten the repository info and write it
446 BMessage archive; local
447 status_t result = fRepositoryInfo->Archive(&archive);
449 fListener->PrintError("can't archive repository header!\n");
453 ssize_t flattenedSize = archive.FlattenedSize();
455 if ((result = archive.Flatten(buffer, flattenedSize)) != B_OK) {
/haiku/src/preferences/filetypes/
H A DIconView.cpp303 BMessage archive; local
304 status = fLarge->Archive(&archive);
306 status = message.AddMessage("icon/large", &archive);
309 BMessage archive; local
310 status = fMini->Archive(&archive);
312 status = message.AddMessage("icon/mini", &archive);
611 BMessage archive; local
612 if (message->FindMessage("icon/large", &archive) == B_OK)
613 large = (BBitmap*)BBitmap::Instantiate(&archive);
614 if (message->FindMessage("icon/mini", &archive)
[all...]
/haiku/src/add-ons/screen_savers/icons/
H A DIconsSaver.cpp54 IconsSaver::IconsSaver(BMessage* archive, image_id image) argument
56 BScreenSaver(archive, image),

Completed in 113 milliseconds

<<111213