Symbol: UserInfo
headers/os/support/Url.h
43
const BString& UserInfo() const;
src/apps/haikudepot/packagemodel/UserInfo.cpp
12
UserInfo::UserInfo()
src/apps/haikudepot/packagemodel/UserInfo.cpp
19
UserInfo::UserInfo(const BString& nickName)
src/apps/haikudepot/packagemodel/UserInfo.cpp
26
UserInfo::UserInfo(const UserInfo& other)
src/apps/haikudepot/packagemodel/UserInfo.cpp
34
UserInfo::operator==(const UserInfo& other) const
src/apps/haikudepot/packagemodel/UserInfo.cpp
41
UserInfo::operator!=(const UserInfo& other) const
src/apps/haikudepot/packagemodel/UserInfo.h
13
class UserInfo {
src/apps/haikudepot/packagemodel/UserInfo.h
15
UserInfo();
src/apps/haikudepot/packagemodel/UserInfo.h
16
UserInfo(const BString& nickName);
src/apps/haikudepot/packagemodel/UserInfo.h
17
UserInfo(const UserInfo& other);
src/apps/haikudepot/packagemodel/UserInfo.h
19
bool operator==(const UserInfo& other) const;
src/apps/haikudepot/packagemodel/UserInfo.h
20
bool operator!=(const UserInfo& other) const;
src/apps/haikudepot/packagemodel/UserRating.cpp
24
UserRating::UserRating(const UserInfo& userInfo, float rating,
src/apps/haikudepot/packagemodel/UserRating.h
18
UserRating(const UserInfo& userInfo,
src/apps/haikudepot/packagemodel/UserRating.h
29
const UserInfo& User() const
src/apps/haikudepot/packagemodel/UserRating.h
42
UserInfo fUserInfo;
src/apps/haikudepot/server/PopulatePkgUserRatingsFromServerProcess.cpp
168
new UserRating(UserInfo(user), rating, comment, languageCode,
src/bin/checkitout.cpp
129
BString user = url.UserInfo();
src/bin/checkitout.cpp
166
BString user = url.UserInfo();
src/bin/urlwrapper.cpp
244
BString user = url.UserInfo();
src/kits/support/Url.cpp
483
fAuthority << UserInfo() << '@';
src/tests/kits/net/service/UrlTest.cpp
112
CPPUNIT_ASSERT_EQUAL(BString("user:password"), url.UserInfo());