Home
last modified time | relevance | path

Searched refs:DB_OBJ_ID_SEP (Results 1 – 2 of 2) sorted by relevance

/dports/biology/ugene/ugene-40.1/src/corelibs/U2Lang/src/model/url_attribute/
H A DSharedDbUrlUtils.cpp38 const QString SharedDbUrlUtils::DB_OBJ_ID_SEP = ":"; member in U2::SharedDbUrlUtils
52 const int firstSepPos = fullObjId.indexOf(SharedDbUrlUtils::DB_OBJ_ID_SEP); in disassembleObjectId()
56 const int secondSepPos = fullObjId.indexOf(SharedDbUrlUtils::DB_OBJ_ID_SEP, firstSepPos + 1); in disassembleObjectId()
82 …::number(idNumber) + SharedDbUrlUtils::DB_OBJ_ID_SEP + QString::number(objType) + SharedDbUrlUtils… in objId2Str()
115 return dbUrl + DB_URL_SEP + QString::number(compatibleType) + DB_OBJ_ID_SEP + path; in createDbFolderUrl()
129 const int dbObjTypeSepPos = url.indexOf(DB_OBJ_ID_SEP, dbUrlSepPos); in isDbFolderUrl()
157 …dbUrl + DB_URL_SEP + QString::number(objId) + DB_OBJ_ID_SEP + QString::number(objDataType) + DB_OB… in createDbObjectUrl()
179 const int dbObjIdSepPos = url.indexOf(DB_OBJ_ID_SEP, dbUrlSepPos); in isDbObjectUrl()
182 const int dbObjTypeSepPos = url.indexOf(DB_OBJ_ID_SEP, dbObjIdSepPos + 1); in isDbObjectUrl()
292 const QString path = url.mid(url.indexOf(DB_OBJ_ID_SEP, url.indexOf(DB_URL_SEP) + 1) + 1); in getDbFolderPathByUrl()
[all …]
H A DSharedDbUrlUtils.h79 static const QString DB_OBJ_ID_SEP; variable