本文整理汇总了C++中MojString::end方法的典型用法代码示例。如果您正苦于以下问题:C++ MojString::end方法的具体用法?C++ MojString::end怎么用?C++ MojString::end使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MojString
的用法示例。
在下文中一共展示了MojString::end方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: appConfDir
std::string BusClient::appConfDir(const MojString& appId, PackageType type, PackageLocation location)
{
MojLogTrace(m_log);
std::string confPath;
switch (location) {
case System:
confPath = "/";
break;
case ThirdParty:
confPath = BASE_CRYPTOFS;
break;
}
confPath += BASE_PALM_OFFSET;
switch (type) {
case Application:
confPath += APPS_DIR;
break;
case Service:
confPath += SERVICES_DIR;
break;
}
confPath.append(appId.begin(), appId.end());
if (access(confPath.c_str(), R_OK) != 0) {
m_wrongAplication = true;
}
return confPath + CONF_SUBDIR;
}
示例2: validateName
MojErr MojDbIndex::validateName(const MojString& name)
{
if (name.length() > MaxIndexNameLen) {
MojErrThrowMsg(MojErrDbInvalidIndexName, _T("db: index name '%s' invalid: length is %zd chars, max is %zd"), name.data(), name.length(), MaxIndexNameLen);
}
for (MojString::ConstIterator i = name.begin(); i < name.end(); ++i) {
if (!MojIsAlNum(*i) && *i != _T('_')) {
MojErrThrowMsg(MojErrDbInvalidIndexName, _T("db: index name '%s' invalid: char at position %zd not allowed"), name.data(), (MojSize) (i - name.begin()));
}
}
return MojErrNone;
}