Home
last modified time | relevance | path

Searched refs:Str_Length (Results 1 – 11 of 11) sorted by relevance

/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/libdoomsday/src/filesys/
H A Dfs_util.cpp174 Str_Reserve(dstStr, Str_Length(srcStr)); in F_FixSlashes()
236 Str_Reserve(dstStr, Str_Length(srcStr)); in F_ToNativeSlashes()
289 …Str_PartAppend(&buf, Str_Text(absPath), Str_Length(&basePath), Str_Length(absPath) - Str_Length(&b… in F_RemoveBasePath()
296 …Str_PartAppend(dst, Str_Text(absPath), Str_Length(&basePath), Str_Length(absPath) - Str_Length(&ba… in F_RemoveBasePath()
334 Str_PartAppend(&buf, Str_Text(src), 1, Str_Length(src)-1); in F_ExpandBasePath()
341 Str_PartAppend(dst, Str_Text(src), 1, Str_Length(src)-1); in F_ExpandBasePath()
359 Str_PartAppend(&buf, Str_Text(src), 2, Str_Length(src)-2); in F_ExpandBasePath()
H A Dfs_main.cpp1040 if (qstrnicmp(Str_Text(path), Str_Text(dest), Str_Length(dest))) return false; in applyPathMapping()
1045 Str_PartAppend(temp, Str_Text(path), pm.first.length(), Str_Length(path) - pm.first.length()); in applyPathMapping()
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/plugins/common/src/game/
H A Dg_eventsequence.cpp75 Str_Reserve(cmd, Str_Length(&commandTemplate) + numArgs + 1); in invoke()
77 int len = Str_Length(&commandTemplate); in invoke()
181 if(Str_At(&sequence, pos ) == '%' && pos+1 < Str_Length(&sequence) && in complete()
205 if(pos < Str_Length(&sequence)) return false; in complete()
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/plugins/importidtech1/src/
H A Dhexlex.cpp65 return (readPos >= Str_Length(script)); in DENG2_PIMPL()
148 …if(ch == ';' || (ch == '/' && d->readPos + 1 < Str_Length(d->script) && Str_At(d->script, d->readP… in readToken()
195 …if(ch == ';'|| (ch == '/' && d->readPos + 1 < Str_Length(d->script) && Str_At(d->script, d->readPo… in readToken()
/dports/games/doomsday/doomsday-2.3.1/doomsday/sdk/liblegacy/src/
H A Dstr.c408 int Str_Length(const ddstring_t *str) in Str_Length() function
428 return Str_Length(str) == 0; in Str_IsEmpty()
581 size_t len = Str_Length(ds); in Str_ReplaceAll()
699 if (!(position < Str_Length(str))) in Str_Truncate()
717 len = Str_Length(str); in Str_PercentEncode2()
793 len = Str_Length(str); in Str_PercentDecode()
831 size_t len = Str_Length(str); in Str_Write()
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/plugins/common/src/
H A Dhexlex.cpp39 return (_readPos >= Str_Length(_script)); in atEnd()
/dports/games/doomsday/doomsday-2.3.1/doomsday/sdk/liblegacy/include/de/
H A Dstr.h236 DENG_PUBLIC int Str_Length(Str const *ds);
/dports/games/doomsday/doomsday-2.3.1/doomsday/sdk/libcore/src/data/
H A Dpathtree.cpp548 if (Str_Length(PathTreeNode::typeName(type)) > *col)
549 *col = Str_Length(PathTreeNode::typeName(type));
659 colWidths[col] = Str_Length(PathTreeNode::typeName(type));
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/libdoomsday/src/world/
H A Dmaterialarchive.cpp68 … uri.setUri(QString(QByteArray(Str_Text(_uri), Str_Length(_uri)).toPercentEncoding()), RC_NULL); in readArchivedUri()
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/client/src/ui/
H A Dinputsystem.cpp1502 if (!qstrnicmp(Str_Text(str), "local", 5) && Str_Length(str) > 5) in bindImpulse()
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/client/src/ui/infine/
H A Dfinaleinterpreter.cpp496 return (cp - Str_Text(script)) >= Str_Length(script); in DENG2_PIMPL()