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

123456789

/haiku/src/apps/haikudepot/model/
H A DDeskbarLink.cpp82 DeskbarLink::Archive(BMessage* into, bool deep) const argument
85 if (result == B_OK && into == NULL)
88 result = into->AddString(kPathKey, fPath);
90 result = into->AddString(kLinkKey, fLink);
H A DDeskbarLink.h38 status_t Archive(BMessage* into, bool deep = true) const;
H A DPasswordRequirements.cpp9 // These are keys that are used to store this object's data into a BMessage
77 PasswordRequirements::Archive(BMessage* into, bool deep) const argument
81 result = into->AddUInt32(
85 result = into->AddUInt32(
89 result = into->AddUInt32(
H A DPasswordRequirements.h36 status_t Archive(BMessage* into, bool deep = true) const;
H A DScreenshotCoordinate.cpp96 ScreenshotCoordinate::Archive(BMessage* into, bool deep) const argument
100 result = into->AddString(kCodeKey, fCode);
102 result = into->AddUInt16(kWidthKey, fWidth);
104 result = into->AddUInt16(kHeightKey, fHeight);
H A DScreenshotCoordinate.h35 status_t Archive(BMessage* into, bool deep = true) const;
H A DUserCredentials.cpp9 // These are keys that are used to store this object's data into a BMessage
133 UserCredentials::Archive(BMessage* into, bool deep) const argument
137 result = into->AddString(KEY_NICKNAME, fNickname);
139 result = into->AddString(KEY_PASSWORD_CLEAR, fPasswordClear);
141 result = into->AddBool(KEY_IS_SUCCESSFUL, fIsSuccessful);
H A DUserCredentials.h41 status_t Archive(BMessage* into, bool deep = true) const;
H A DUserDetail.cpp9 // These are keys that are used to store this object's data into a BMessage
95 UserUsageConditionsAgreement::Archive(BMessage* into, bool deep) const argument
99 result = into->AddUInt64(KEY_TIMESTAMP_AGREED, fTimestampAgreed);
101 result = into->AddString(KEY_CODE, fCode);
103 result = into->AddBool(KEY_IS_LATEST, fIsLatest);
171 UserDetail::Archive(BMessage* into, bool deep) const argument
178 result = into->AddMessage(KEY_AGREEMENT, &agreementMessage);
181 result = into->AddString(KEY_NICKNAME, fNickname);
H A DUserDetail.h35 status_t Archive(BMessage* into, bool deep = true) const;
63 status_t Archive(BMessage* into, bool deep = true) const;
H A DUserUsageConditions.cpp10 // These are keys that are used to store this object's data into a BMessage
94 UserUsageConditions::Archive(BMessage* into, bool deep) const argument
96 into->AddInt16(KEY_MINIMUM_AGE, (int16) fMinimumAge);
97 into->AddString(KEY_CODE, fCode);
98 into->AddString(KEY_COPY_MARKDOWN, fCopyMarkdown);
H A DUserUsageConditions.h35 status_t Archive(BMessage* into, bool deep = true) const;
H A DValidationFailure.cpp8 // These are keys that are used to store this object's data into a BMessage
87 ValidationFailure::Archive(BMessage* into, bool deep) const argument
92 result = into->AddString(KEY_PROPERTY, fProperty);
95 result = into->AddString(key, fMessages.StringAt(i));
170 ValidationFailures::Archive(BMessage* into, bool deep) const argument
181 result = into->AddMessage(key, &itemMessage);
H A DValidationFailure.h16 /*! This objects marries together a 'key' into some data together with an
18 is a key into a message.
34 status_t Archive(BMessage* into, bool deep = true) const;
56 status_t Archive(BMessage* into, bool deep = true) const;
/haiku/src/apps/haikudepot/process/
H A DProcessCoordinator.cpp22 // These are keys that are used to store the ProcessCoordinatorState data into
117 ProcessCoordinatorState::Archive(BMessage* into, bool deep) const argument
121 result = into->AddString(KEY_PROCESS_COORDINATOR_IDENTIFIER,
125 result = into->AddFloat(KEY_PROGRESS, fProgress);
127 result = into->AddString(KEY_MESSAGE, fMessage);
129 result = into->AddBool(KEY_IS_RUNNING, fIsRunning);
131 result = into->AddInt64(KEY_ERROR_STATUS, static_cast<int64>(fErrorStatus));
H A DProcessCoordinator.h40 status_t Archive(BMessage* into, bool deep = true) const;
/haiku/src/apps/icon-o-matic/document/
H A DIconObject.cpp82 IconObject::Archive(BMessage* into, bool deep) const argument
84 if (!into)
87 return into->AddString("name", fName.String());
H A DIconObject.h35 virtual status_t Archive(BMessage* into,
/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);
H A DStateView.h51 void Draw(BView* into, BRect updateRect);
/haiku/src/apps/icon-o-matic/gui/
H A DPathListView.cpp502 PathListView::ArchiveSelection(BMessage* into, bool deep) const argument
504 into->what = PathListView::kSelectionArchiveCode;
513 into->AddMessage("path", &archive);
H A DPathListView.h54 virtual status_t ArchiveSelection(BMessage* into, bool deep = true) const;
H A DShapeListView.cpp246 ShapeListView::ArchiveSelection(BMessage* into, bool deep) const argument
248 into->what = ShapeListView::kSelectionArchiveCode;
283 into->AddMessage("shape archive", &archive);
296 into->AddMessage("shape archive", &archive);
H A DShapeListView.h55 virtual status_t ArchiveSelection(BMessage* into, bool deep = true) const;
H A DStyleListView.cpp425 StyleListView::ArchiveSelection(BMessage* into, bool deep) const argument
427 into->what = StyleListView::kSelectionArchiveCode;
436 into->AddMessage("style", &archive);

Completed in 134 milliseconds

123456789