Searched refs:other (Results 51 - 75 of 632) sorted by relevance

1234567891011>>

/haiku/src/kits/package/solver/
H A DSolverPackage.cpp25 BSolverPackage::BSolverPackage(const BSolverPackage& other) argument
27 fRepository(other.fRepository),
28 fInfo(other.fInfo)
77 BSolverPackage::operator=(const BSolverPackage& other) argument
79 fRepository = other.fRepository;
80 fInfo = other.fInfo;
/haiku/src/kits/debugger/model/
H A DSemaphoreInfo.cpp21 SemaphoreInfo::SemaphoreInfo(const SemaphoreInfo &other) argument
23 fTeam(other.fTeam),
24 fSemaphore(other.fSemaphore),
25 fName(other.fName),
26 fCount(other.fCount),
27 fLatestHolder(other.fLatestHolder)
H A DSyscallInfo.cpp22 SyscallInfo::SyscallInfo(const SyscallInfo& other) argument
24 fStartTime(other.fStartTime),
25 fEndTime(other.fEndTime),
26 fReturnValue(other.fReturnValue),
27 fSyscall(other.fSyscall)
29 memcpy(fArguments, other.fArguments, sizeof(fArguments));
H A DAreaInfo.cpp24 AreaInfo::AreaInfo(const AreaInfo &other) argument
26 fTeam(other.fTeam),
27 fArea(other.fArea),
28 fName(other.fName),
29 fAddress(other.fAddress),
30 fSize(other.fSize),
31 fRamSize(other.fRamSize),
32 fLock(other.fLock),
33 fProtection(other.fProtection)
H A DImageInfo.cpp21 ImageInfo::ImageInfo(const ImageInfo& other) argument
23 fTeam(other.fTeam),
24 fImage(other.fImage),
25 fName(other.fName),
26 fType(other.fType),
27 fTextBase(other.fTextBase),
28 fTextSize(other.fTextSize),
29 fDataBase(other.fDataBase),
30 fDataSize(other.fDataSize)
H A DSignalInfo.cpp20 SignalInfo::SignalInfo(const SignalInfo& other) argument
22 fSignal(other.fSignal),
23 fDeadly(other.fDeadly)
25 memcpy(&fHandler, &other.fHandler, sizeof(fHandler));
H A DSystemInfo.cpp19 SystemInfo::SystemInfo(const SystemInfo &other) argument
21 SetTo(other.fTeam, other.fSystemInfo, other.fSystemName);
H A DThreadInfo.cpp18 ThreadInfo::ThreadInfo(const ThreadInfo& other) argument
20 fTeam(other.fTeam),
21 fThread(other.fThread),
22 fName(other.fName)
/haiku/src/servers/app/
H A DClickTarget.h62 bool operator==(const ClickTarget& other) const
64 return fType == other.fType && fWindow == other.fWindow
65 && fWindowElement == other.fWindowElement;
68 bool operator!=(const ClickTarget& other) const
70 return !(*this == other);
/haiku/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DPermissions.h30 inline Permissions(const Permissions& other);
47 inline Permissions& operator=(const Permissions& other);
48 inline bool operator==(const Permissions& other) const;
49 inline bool operator!=(const Permissions& other) const;
73 Permissions::Permissions(const Permissions& other) argument
74 : fPermissions(other.fPermissions)
171 Permissions::operator=(const Permissions& other) argument
173 fPermissions = other.fPermissions;
180 Permissions::operator==(const Permissions& other) const
182 return (fPermissions == other
[all...]
H A DBlocker.h12 Blocker(const Blocker& other);
22 Blocker& operator=(const Blocker& other);
23 bool operator==(const Blocker& other) const;
24 bool operator!=(const Blocker& other) const;
/haiku/src/apps/haikudepot/textview/
H A DTextDocumentLayout.h34 ParagraphLayoutInfo(const ParagraphLayoutInfo& other) argument
36 y(other.y),
37 layout(other.layout)
42 ParagraphLayoutInfo& operator=(const ParagraphLayoutInfo& other) argument
44 y = other.y;
45 layout = other.layout;
49 bool operator==(const ParagraphLayoutInfo& other) const
51 return y == other.y
52 && layout == other.layout;
55 bool operator!=(const ParagraphLayoutInfo& other) cons
[all...]
H A DBulletData.h22 BulletData(const BulletData& other);
25 const BulletData& other) const;
27 const BulletData& other) const;
38 BulletData& operator=(const BulletData& other);
H A DParagraphStyle.h14 ParagraphStyle(const ParagraphStyle& other);
16 ParagraphStyle& operator=(const ParagraphStyle& other);
17 bool operator==(const ParagraphStyle& other) const;
18 bool operator!=(const ParagraphStyle& other) const;
H A DTextSelection.h16 TextSelection(const TextSelection& other);
18 TextSelection& operator=(const TextSelection& other);
19 bool operator==(const TextSelection& other) const;
20 bool operator!=(const TextSelection& other) const;
H A DCharacterStyleData.cpp37 CharacterStyleData::CharacterStyleData(const CharacterStyleData& other) argument
39 fFont(other.fFont),
41 fAscent(other.fAscent),
42 fDescent(other.fDescent),
43 fWidth(other.fWidth),
45 fGlyphSpacing(other.fGlyphSpacing),
47 fWhichFgColor(other.fWhichFgColor),
48 fWhichBgColor(other.fWhichBgColor),
49 fWhichStrikeOutColor(other.fWhichStrikeOutColor),
50 fWhichUnderlineColor(other
355 operator =(const CharacterStyleData& other) argument
[all...]
H A DParagraphStyleData.cpp28 ParagraphStyleData::ParagraphStyleData(const ParagraphStyleData& other) argument
30 fAlignment(other.fAlignment),
31 fJustify(other.fJustify),
33 fFirstLineInset(other.fFirstLineInset),
34 fLineInset(other.fLineInset),
35 fLineSpacing(other.fLineSpacing),
37 fSpacingTop(other.fSpacingTop),
38 fSpacingBottom(other.fSpacingBottom),
40 fBullet(other.fBullet)
46 ParagraphStyleData::operator==(const ParagraphStyleData& other) cons
193 operator =(const ParagraphStyleData& other) argument
[all...]
/haiku/headers/private/package/
H A DHashableString.h27 inline bool operator!= (const HashableString& other) const;
59 HashableString::operator!= (const HashableString& other) const
61 return Compare(other) != 0 || fHashCode != other.fHashCode;
/haiku/headers/private/debugger/ids/
H A DObjectID.h19 virtual bool operator==(const ObjectID& other) const = 0;
20 inline bool operator!=(const ObjectID& other) const;
40 ObjectID::operator!=(const ObjectID& other) const
42 return !(*this == other);
/haiku/src/apps/haikudepot/model/
H A DDeskbarLink.h26 DeskbarLink(const DeskbarLink& other);
34 bool operator==(const DeskbarLink& other);
35 bool operator!=(const DeskbarLink& other);
36 DeskbarLink& operator=(const DeskbarLink& other);
/haiku/src/apps/haikudepot/packagemodel/
H A DPublisherInfo.h19 PublisherInfo(const PublisherInfo& other);
21 PublisherInfo& operator=(const PublisherInfo& other);
22 bool operator==(const PublisherInfo& other) const;
23 bool operator!=(const PublisherInfo& other) const;
H A DLanguage.cpp22 Language::Language(const Language& other) argument
24 BLanguage(other.ID()),
25 fServerName(other.fServerName),
26 fIsPopular(other.fIsPopular)
H A DDepotInfo.cpp59 DepotInfo::DepotInfo(const DepotInfo& other) argument
61 fName(other.fName),
62 fIdentifier(other.fIdentifier),
63 fPackages(other.fPackages),
64 fWebAppRepositoryCode(other.fWebAppRepositoryCode),
65 fWebAppRepositorySourceCode(other.fWebAppRepositorySourceCode)
71 DepotInfo::operator=(const DepotInfo& other) argument
73 fName = other.fName;
74 fIdentifier = other.fIdentifier;
75 fPackages = other
167 SyncPackagesFromDepot(const DepotInfoRef& other) argument
[all...]
/haiku/src/apps/icon-o-matic/generic/property/specific_properties/
H A DIconProperty.cpp34 IconProperty::IconProperty(const IconProperty& other) argument
35 : Property(other),
36 fMessage(other.fMessage ? new BMessage(*other.fMessage) : NULL),
37 fIcon(other.fIcon),
38 fWidth(other.fWidth),
39 fHeight(other.fHeight),
40 fFormat(other.fFormat)
104 IconProperty::SetValue(const Property* other) argument
106 const IconProperty* i = dynamic_cast<const IconProperty*>(other);
123 InterpolateTo(const Property* other, float scale) argument
[all...]
/haiku/src/servers/app/drawing/
H A DAlphaMaskCache.h56 bool operator<(const ShapeMaskElement& other) const
58 if (fInverse != other.fInverse)
59 return fInverse < other.fInverse;
60 if (fPreviousMask != other.fPreviousMask)
61 return fPreviousMask < other.fPreviousMask;
64 if (fShape->ptCount != other.fShape->ptCount)
65 return fShape->ptCount < other.fShape->ptCount;
66 if (fShape->opCount != other.fShape->opCount)
67 return fShape->opCount < other.fShape->opCount;
68 int diff = memcmp(fShape->ptList, other
[all...]

Completed in 133 milliseconds

1234567891011>>