Searched refs:into (Results 1 - 25 of 206) sorted by last modified time

123456789

/haiku/src/kits/interface/
H A DColumnTypes.cpp57 BTitledColumn::GetColumnName(BString* into) const
59 *into = fTitle;
H A DColumnListView.cpp769 BColumn::GetColumnName(BString* into) const
771 *into = "(Unnamed)";
1786 // scroll. Note we have done so, so we don't go into infinite
2079 // TODO: Take border size into account
3070 // Drag back into view
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/headers/private/interface/
H A DColumnTypes.h36 virtual void GetColumnName(BString* into) const;
/haiku/src/apps/haikudepot/model/
H A DCreateUserDetail.h45 status_t Archive(BMessage* into, bool deep = true) const;
H A DCreateUserDetail.cpp7 // These are keys that are used to store this object's data into a BMessage
159 CreateUserDetail::Archive(BMessage* into, bool deep) const argument
163 result = into->AddString(KEY_NICKNAME, fNickname);
165 result = into->AddString(KEY_PASSWORD_CLEAR, fPasswordClear);
167 result = into->AddBool(KEY_IS_PASSWORD_REPEATED, fIsPasswordRepeated);
169 result = into->AddString(KEY_EMAIL, fEmail);
171 result = into->AddString(KEY_CAPTCHA_TOKEN, fCaptchaToken);
173 result = into->AddString(KEY_CAPTCHA_RESPONSE, fCaptchaResponse);
175 result = into->AddString(KEY_LANGUAGE_ID, fLanguageId);
177 result = into
[all...]
H A DScreenshotCoordinate.h35 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 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 DAccessToken.h43 status_t Archive(BMessage* into, bool deep = true) const;
H A DAccessToken.cpp10 // These are keys that are used to store this object's data into a BMessage instance.
124 AccessToken::Archive(BMessage* into, bool deep) const argument
127 if (result == B_OK && into == NULL)
130 result = into->AddString(KEY_TOKEN, fToken);
132 result = into->AddUInt64(KEY_EXPIRY_TIMESTAMP, fExpiryTimestamp);
/haiku/src/apps/deskcalc/
H A DCalcView.cpp1313 // insert into expression text
1468 CalcView::_FetchAppIcon(BBitmap* into) argument
1475 status = appInfo.GetIcon(into, B_MINI_ICON);
1478 memset(into->Bits(), 0, into->BitsLength());
H A DCalcView.h114 void _FetchAppIcon(BBitmap* into);
/haiku/src/apps/icon-o-matic/gui/
H A DStyleListView.cpp425 StyleListView::ArchiveSelection(BMessage* into, bool deep) const argument
427 into->what = StyleListView::kSelectionArchiveCode;
436 into->AddMessage("style", &archive);
H A DPathListView.cpp502 PathListView::ArchiveSelection(BMessage* into, bool deep) const argument
504 into->what = PathListView::kSelectionArchiveCode;
513 into->AddMessage("path", &archive);
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);
/haiku/src/apps/haikudepot/process/
H A DProcessCoordinator.h40 status_t Archive(BMessage* into, bool deep = true) const;
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));
/haiku/src/libs/icon/transformer/
H A DStrokeTransformer.cpp138 StrokeTransformer::Archive(BMessage* into, bool deep) const argument
140 status_t ret = Transformer::Archive(into, deep);
143 into->what = archive_code;
146 ret = into->AddInt32("line cap", line_cap());
149 ret = into->AddInt32("line join", line_join());
152 ret = into->AddInt32("inner join", inner_join());
155 ret = into->AddDouble("width", width());
158 ret = into->AddDouble("miter limit", miter_limit());
161 ret = into->AddDouble("inner miter limit", inner_miter_limit());
164 ret = into
[all...]
H A DPerspectiveTransformer.cpp193 PerspectiveTransformer::Archive(BMessage* into, bool deep) const argument
195 status_t ret = Transformer::Archive(into, deep);
197 into->what = archive_code;
204 ret = into->AddDouble("matrix", matrix[i]);
H A DContourTransformer.cpp127 ContourTransformer::Archive(BMessage* into, bool deep) const argument
129 status_t ret = Transformer::Archive(into, deep);
132 into->what = archive_code;
135 ret = into->AddInt32("line join", line_join());
138 ret = into->AddInt32("inner join", inner_join());
141 ret = into->AddDouble("width", width());
144 ret = into->AddDouble("miter limit", miter_limit());
147 ret = into->AddDouble("inner miter limit", inner_miter_limit());
H A DAffineTransformer.cpp105 AffineTransformer::Archive(BMessage* into, bool deep) const argument
107 status_t ret = Transformer::Archive(into, deep);
110 into->what = archive_code;
115 ret = into->AddData("matrix", B_DOUBLE_TYPE,
/haiku/src/libs/icon/style/
H A DGradientTransformable.cpp124 Gradient::Archive(BMessage* into, bool deep) const argument
126 status_t ret = BArchivable::Archive(into, deep);
133 ret = into->AddData("transformation", B_DOUBLE_TYPE,
140 ret = into->AddInt32("color", (const uint32&)step->color);
143 ret = into->AddFloat("offset", step->offset);
150 ret = into->AddInt32("type", (int32)fType);
152 ret = into->AddInt32("interpolation", (int32)fInterpolation);
154 ret = into->AddBool("inherit transformation", fInheritTransformation);
158 ret = into->AddString("class", "Gradient");
419 // current index into "color
[all...]
/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...]

Completed in 395 milliseconds

123456789