diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-08-29 16:55:26 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-08-29 16:55:26 (GMT) |
commit | 26ded37d33ae68d85d5ae4b2e5555ff6ed944a44 (patch) | |
tree | 6cbbe764d1beb5389d2e9247c672b7af04684260 /src/util.cpp | |
parent | 8726fc640f878611e395b1d821661cff56a49e13 (diff) | |
download | Doxygen-26ded37d33ae68d85d5ae4b2e5555ff6ed944a44.zip Doxygen-26ded37d33ae68d85d5ae4b2e5555ff6ed944a44.tar.gz Doxygen-26ded37d33ae68d85d5ae4b2e5555ff6ed944a44.tar.bz2 |
Release-1.2.1-20000829
Diffstat (limited to 'src/util.cpp')
-rw-r--r-- | src/util.cpp | 55 |
1 files changed, 22 insertions, 33 deletions
diff --git a/src/util.cpp b/src/util.cpp index 3d9972b..61770bc 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -871,8 +871,9 @@ void endFile(OutputList &ol,bool external) void setAnchors(char id,MemberList *ml,int groupId) { int count=0; - MemberDef *md=ml->first(); - while (md) + MemberListIterator mli(*ml); + MemberDef *md; + for (;(md=mli.current());++mli) { QCString anchor; if (groupId==-1) @@ -881,7 +882,6 @@ void setAnchors(char id,MemberList *ml,int groupId) anchor.sprintf("%c%d_%d",id,groupId,count++); //printf("Member %s anchor %s\n",md->name(),anchor.data()); md->setAnchor(anchor); - md=ml->next(); } } @@ -1605,7 +1605,8 @@ bool getDefs(const QCString &scName,const QCString &memberName, ) { //printf(" Found fcd=%p\n",fcd); - MemberDef *mmd=mn->first(); + MemberListIterator mmli(*mn); + MemberDef *mmd; int mdist=maxInheritanceDepth; ArgumentList *argList=0; if (args) @@ -1613,7 +1614,7 @@ bool getDefs(const QCString &scName,const QCString &memberName, argList=new ArgumentList; stringToArgumentList(args,argList); } - while (mmd) + for (mmli.toFirst();(mmd=mmli.current());++mmli) { if (mmd->isLinkable()) { @@ -1631,7 +1632,6 @@ bool getDefs(const QCString &scName,const QCString &memberName, } } } - mmd=mn->next(); } if (argList) { @@ -1641,8 +1641,7 @@ bool getDefs(const QCString &scName,const QCString &memberName, // no exact match found, but if args="()" an arbitrary member will do { //printf(" >Searching for arbitrary member\n"); - mmd=mn->first(); - while (mmd) + for (mmli.toFirst();(mmd=mmli.current());++mmli) { if (//(mmd->protection()!=Private || Config::extractPrivateFlag) && //( @@ -1664,7 +1663,6 @@ bool getDefs(const QCString &scName,const QCString &memberName, md=mmd; } } - mmd=mn->next(); } } //printf(" >Succes=%d\n",mdist<maxInheritanceDepth); @@ -1711,15 +1709,13 @@ bool getDefs(const QCString &scName,const QCString &memberName, { //printf("Function inside existing namespace `%s'\n",namespaceName.data()); bool found=FALSE; - MemberDef *mmd=mn->first(); - while (mmd && !found) + MemberListIterator mmli(*mn); + MemberDef *mmd; + for (mmli.toFirst();((mmd=mmli.current()) && !found);++mmli) { //printf("mmd->getNamespaceDef()=%p fnd=%p\n", // mmd->getNamespaceDef(),fnd); - if (mmd->getNamespaceDef()==fnd && - //(mmd->isReference() || mmd->hasDocumentation()) - mmd->isLinkable() - ) + if (mmd->getNamespaceDef()==fnd && mmd->isLinkable()) { // namespace is found bool match=TRUE; ArgumentList *argList=0; @@ -1740,25 +1736,19 @@ bool getDefs(const QCString &scName,const QCString &memberName, delete argList; argList=0; } } - mmd=mn->next(); } if (!found && !strcmp(args,"()")) // no exact match found, but if args="()" an arbitrary // member will do { - MemberDef *mmd=mn->first(); - while (mmd && !found) + for (mmli.toFirst();((mmd=mmli.current()) && !found);++mmli) { - if (mmd->getNamespaceDef()==fnd && - //(mmd->isReference() || mmd->hasDocumentation()) - mmd->isLinkable() - ) + if (mmd->getNamespaceDef()==fnd && mmd->isLinkable()) { nd=fnd; md=mmd; found=TRUE; } - mmd=mn->next(); } } if (found) return TRUE; @@ -1766,8 +1756,8 @@ bool getDefs(const QCString &scName,const QCString &memberName, else // no scope => global function { //printf("Function with global scope `%s' args=`%s'\n",namespaceName.data(),args); - md=mn->first(); - while (md) + MemberListIterator mli(*mn); + for (mli.toFirst();(md=mli.current());++mli) { if (md->isLinkable()) { @@ -1798,7 +1788,6 @@ bool getDefs(const QCString &scName,const QCString &memberName, } } } - md=mn->next(); } if (!strcmp(args,"()")) { @@ -2256,21 +2245,21 @@ FileDef *findFileDef(const FileNameDict *fnDict,const char *n,bool &ambig) { if (fn->count()==1) { - return fn->first(); + return fn->getFirst(); } else // file name alone is ambigious { int count=0; - FileDef *fd=fn->first(); + FileNameIterator fni(*fn); + FileDef *fd; FileDef *lastMatch=0; - while (fd) + for (fni.toFirst();(fd=fni.current());++fni) { if (path.isEmpty() || fd->getPath().right(path.length())==path) { count++; lastMatch=fd; } - fd=fn->next(); } ambig=(count>1); return lastMatch; @@ -2295,14 +2284,14 @@ QCString showFileDefMatches(const FileNameDict *fnDict,const char *n) FileName *fn; if ((fn=(*fnDict)[name])) { - FileDef *fd=fn->first(); - while (fd) + FileNameIterator fni(*fn); + FileDef *fd; + for (fni.toFirst();(fd=fni.current());++fni) { if (path.isEmpty() || fd->getPath().right(path.length())==path) { result+=" "+fd->absFilePath()+"\n"; } - fd=fn->next(); } } return result; |