Searched refs:into (Results 176 - 200 of 206) sorted by path

123456789

/haiku/src/kits/interface/
H A DView.cpp760 BView::AllArchived(BMessage* into) const
762 return BHandler::AllArchived(into);
1072 * _RESIZE_MASK_ is used for that. Look into View.h to see how
1504 // we move the rectangle dragging into the app_server
2874 // TODO: move this into a BFont method
4157 // calls with a NULL fCommArray would drop into the debugger anyway,
4281 // client write into it
/haiku/src/kits/network/libnetapi/
H A DNetBuffer.cpp81 BNetBuffer::Archive(BMessage* into, bool deep) const argument
86 status_t result = into->AddData("buffer", B_RAW_TYPE, fImpl->Data(),
H A DNetEndpoint.cpp163 BNetEndpoint::Archive(BMessage* into, bool deep) const argument
165 if (!into)
168 status_t status = BArchivable::Archive(into, deep);
177 status = into->AddInt32("_BNetEndpoint_addr_addr", addr.s_addr);
179 status = into->AddInt16("_BNetEndpoint_addr_port", addrPort);
185 status = into->AddInt32("_BNetEndpoint_peer_addr", peer.s_addr);
187 status = into->AddInt16("_BNetEndpoint_peer_port", peerPort);
192 status = into->AddInt64("_BNetEndpoint_timeout", fTimeout);
194 status = into->AddInt32("_BNetEndpoint_proto", fType);
/haiku/src/kits/network/libnetservices/
H A DNetworkCookie.cpp638 BNetworkCookie::Archive(BMessage* into, bool deep) const argument
640 status_t error = BArchivable::Archive(into, deep);
645 error = into->AddString(kArchivedCookieName, fName);
649 error = into->AddString(kArchivedCookieValue, fValue);
656 error = into->AddString(kArchivedCookieDomain, fDomain);
662 error = into->AddString(kArchivedCookieExpirationDate,
669 error = into->AddString(kArchivedCookiePath, fPath);
675 error = into->AddBool(kArchivedCookieSecure, fSecure);
681 error = into->AddBool(kArchivedCookieHttpOnly, fHttpOnly);
687 error = into
[all...]
H A DNetworkCookieJar.cpp274 BNetworkCookieJar::Archive(BMessage* into, bool deep) const argument
276 status_t error = BArchivable::Archive(into, deep);
288 error = into->AddMessage(kArchivedCookieMessageName, &subArchive);
/haiku/src/kits/support/
H A DArchivable.cpp122 // up into little bite-sized pieces
137 // Now mangle it into this:
325 BArchivable::Archive(BMessage* into, bool deep) const argument
327 if (!into) {
332 if (BManagerBase::ArchiveManager(into))
333 BArchiver(into).RegisterArchivable(this);
340 return into->AddString(B_CLASS_FIELD, name);
H A DString.cpp73 //! helper function, massages given pointer into a legal c-string:
463 BString::CopyInto(BString& into, int32 fromOffset, int32 length) const argument
465 if (this != &into)
466 into.SetTo(fPrivateData + fromOffset, length);
467 return into;
472 BString::CopyInto(char* into, int32 fromOffset, int32 length) const argument
474 if (into) {
476 memcpy(into, fPrivateData + fromOffset, length);
482 BString::CopyCharsInto(BString& into, int32 fromCharOffset, argument
487 return CopyInto(into, fromOffse
492 CopyCharsInto(char* into, int32* intoLength, int32 fromCharOffset, int32 charCount) const argument
962 MoveInto(BString& into, int32 from, int32 length) argument
973 MoveInto(char* into, int32 from, int32 length) argument
983 MoveCharsInto(BString& into, int32 fromCharOffset, int32 charCount) argument
995 MoveCharsInto(char* into, int32* intoLength, int32 fromCharOffset, int32 charCount) argument
[all...]
/haiku/src/kits/translation/
H A DTranslatorRoster.cpp80 The purpose of this class is to put a translator entry_ref into - and remove
171 // we're sneaking ourselves into the BApplication, if it's running
251 // has the entry been moved into a monitored directory or
910 when they become available. Instead, they are put into a set.
1233 BTranslatorRoster::Archive(BMessage* into, bool deep) const argument
1235 status_t status = BArchivable::Archive(into, deep);
1239 return fPrivate->StoreTranslators(*into);
1390 and puts them into the outInfo array (which you must delete
1718 specified by \a id and puts them into \a ioExtension.
/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/libs/icon/shape/
H A DPathSourceShape.cpp83 PathSourceShape::Archive(BMessage* into, bool deep) const argument
85 status_t ret = Shape::Archive(into, deep);
89 ret = into->AddFloat("min visibility scale", fMinVisibilityScale);
93 ret = into->AddFloat("max visibility scale", fMaxVisibilityScale);
H A DPathSourceShape.h41 virtual status_t Archive(BMessage* into,
H A DReferenceImage.cpp124 ReferenceImage::Archive(BMessage* into, bool deep) const argument
126 status_t ret = IconObject::Archive(into, deep);
134 ret = into->AddData("transformation", B_DOUBLE_TYPE,
140 ret = Style()->Bitmap()->Archive(into, deep);
145 ret = into->AddUInt8("alpha", Style()->Alpha());
H A DReferenceImage.h45 virtual status_t Archive(BMessage* into,
H A DShape.cpp206 Shape::Archive(BMessage* into, bool deep) const argument
208 status_t ret = IconObject::Archive(into, deep);
212 ret = into->AddBool("hinting", fHinting);
222 ret = into->AddMessage("transformer", &transformerArchive);
233 ret = into->AddData("transformation", B_DOUBLE_TYPE,
H A DShape.h68 virtual status_t Archive(BMessage* into,
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/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...]
H A DStyle.cpp171 Style::Archive(BMessage* into, bool deep) const argument
173 status_t ret = IconObject::Archive(into, deep);
176 ret = into->AddInt32("color", (uint32&)fColor);
182 ret = into->AddMessage("gradient", &gradientArchive);
292 // required, since Icon-O-Matic never turns Gradients into Bitmaps. Probably,
H A DStyle.h20 // TODO: put GammaTable into its own file
37 // should probably be split into subclasses.
61 status_t Archive(BMessage* into,
/haiku/src/libs/icon/transformer/
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,
H A DAffineTransformer.h56 virtual status_t Archive(BMessage* into,
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 DContourTransformer.h53 virtual status_t Archive(BMessage* into,
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 DPerspectiveTransformer.h97 virtual status_t Archive(BMessage* into,

Completed in 145 milliseconds

123456789