Difference between revisions of "Local data storage methods used in the viewer"

From Second Life Wiki
Jump to navigation Jump to search
m (→‎Unlisted in Viewer Source Files page: remove my unhelpful note)
m (fix references to LLLFS, add columns for LLVFS, LLVFile, apr_file -- No data lookup done yet for these 3 new columns)
Line 23: Line 23:
* '''gVFS''' - the "general VFS" which is used for temporary storage for assets, in a private RAM-disk held in memory at all times. It is the primary limitation for allowing unlimited local asset caching in the viewer as currently designed. This needs to be removed and replaced with direct filesystem calls to folder-based storage.
* '''gVFS''' - the "general VFS" which is used for temporary storage for assets, in a private RAM-disk held in memory at all times. It is the primary limitation for allowing unlimited local asset caching in the viewer as currently designed. This needs to be removed and replaced with direct filesystem calls to folder-based storage.
* '''gStaticVFS''' - a read-only VFS in ''"static_data.db2"'' and ''"static_index.db2"''. This contains the graphical elements and sounds of the Second Life user interface. It's only about 8 megabytes, but why does it have to be fully loaded in a virtual RAM-disk all the time using limited system memory? May be worthwhile to replace this with direct on-disk storage, perhaps in a ZIP file.
* '''gStaticVFS''' - a read-only VFS in ''"static_data.db2"'' and ''"static_index.db2"''. This contains the graphical elements and sounds of the Second Life user interface. It's only about 8 megabytes, but why does it have to be fully loaded in a virtual RAM-disk all the time using limited system memory? May be worthwhile to replace this with direct on-disk storage, perhaps in a ZIP file.
* '''LFS''' - the "Local File System", used to directly read and write to the local OS storage. The audio manager for example uses LFS calls to write decoded OGG sounds as WAV files in the cache directory. LFS calls might be usable to replace the VFS as mentioned above.
* '''LLLFS''' - the "Local File System" procedures, used to directly read and write to the local OS storage. The audio manager for example uses LLLFS calls to write decoded OGG sounds as WAV files in the cache directory. LLLFS calls might be usable to replace the VFS as mentioned above.


=== VFS removal/replacement ===
=== VFS removal/replacement ===
Line 34: Line 34:


== General - Main and Startup ==
== General - Main and Startup ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|llstartup.cpp
|llstartup.cpp
Line 45: Line 48:
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llappviewer.cpp
|llappviewer.cpp
Line 51: Line 57:
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gStaticVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gStaticVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::YES --> <center><font size="+2">'''X'''</font></center>
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llappviewer.h
|llappviewer.h
Line 57: Line 66:
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gStaticVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gStaticVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}


== General - Window Management and Render Pipeline  ==
== General - Window Management and Render Pipeline  ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|pipeline.cpp
|pipeline.cpp
Line 72: Line 87:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewerdisplay.cpp
|llviewerdisplay.cpp
Line 78: Line 96:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewerprecompiledheaders.cpp
|llviewerprecompiledheaders.cpp
Line 84: Line 105:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewerprecompiledheaders.h
|llviewerprecompiledheaders.h
Line 90: Line 114:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewerwindow.cpp
|llviewerwindow.cpp
Line 96: Line 123:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llwindebug.cpp
|llwindebug.cpp
Line 102: Line 132:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}


== General - Utility and Misc ==
== General - Utility and Misc ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|llbbox.cpp
|llbbox.cpp
Line 117: Line 153:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llbox.cpp
|llbox.cpp
Line 123: Line 162:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llcallbacklist.cpp
|llcallbacklist.cpp
Line 129: Line 171:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llcontroldef.cpp
|llcontroldef.cpp
Line 135: Line 180:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lleventnotifier.cpp
|lleventnotifier.cpp
Line 141: Line 189:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lleventpoll.cpp
|lleventpoll.cpp
Line 147: Line 198:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llhippo.cpp
|llhippo.cpp
Line 153: Line 207:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llregionposition.cpp
|llregionposition.cpp
Line 159: Line 216:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|moviemaker.cpp
|moviemaker.cpp
Line 165: Line 225:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|noise.cpp
|noise.cpp
Line 171: Line 234:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}


== Rendering - Asset Management ==
== Rendering - Asset Management ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|llassetuploadresponders.cpp
|llassetuploadresponders.cpp
Line 186: Line 255:
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lltexturecache.cpp
|lltexturecache.cpp
Line 192: Line 264:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- LLLFS::YES --> <center><font size="+2">'''X'''</font></center>
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lltexturefetch.cpp
|lltexturefetch.cpp
Line 198: Line 273:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewerassetstorage.cpp
|llviewerassetstorage.cpp
Line 204: Line 282:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewerassetstorage.h
|llviewerassetstorage.h
Line 210: Line 291:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llwearable.cpp
|llwearable.cpp
Line 216: Line 300:
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llwearablelist.cpp
|llwearablelist.cpp
Line 222: Line 309:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}


== Rendering - Character and Animation ==
== Rendering - Character and Animation ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|lldriverparam.cpp
|lldriverparam.cpp
Line 237: Line 330:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llemote.cpp
|llemote.cpp
Line 243: Line 339:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewergesture.cpp
|llviewergesture.cpp
Line 249: Line 348:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llvoavatar.cpp
|llvoavatar.cpp
Line 255: Line 357:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gStaticVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llcharacter(???)
|llcharacter(???)
Line 261: Line 366:


== Rendering - Camera ==
== Rendering - Camera ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|llcameraview.cpp
|llcameraview.cpp
Line 272: Line 380:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfollowcam.cpp
|llfollowcam.cpp
Line 278: Line 389:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llmorphview.cpp
|llmorphview.cpp
Line 284: Line 398:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewercamera.cpp
|llviewercamera.cpp
Line 290: Line 407:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}


== Rendering - Effects ==
== Rendering - Effects ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|llhudconnector.cpp
|llhudconnector.cpp
Line 305: Line 428:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llhudeffect.cpp
|llhudeffect.cpp
Line 311: Line 437:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llhudeffectbeam.cpp
|llhudeffectbeam.cpp
Line 317: Line 446:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llhudeffectlookat.cpp
|llhudeffectlookat.cpp
Line 323: Line 455:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llhudeffectpointat.cpp
|llhudeffectpointat.cpp
Line 329: Line 464:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llhudeffecttrail.cpp
|llhudeffecttrail.cpp
Line 335: Line 473:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llhudicon.cpp
|llhudicon.cpp
Line 341: Line 482:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llhudmanager.cpp
|llhudmanager.cpp
Line 347: Line 491:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llhudobject.cpp
|llhudobject.cpp
Line 353: Line 500:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llhudrender.cpp
|llhudrender.cpp
Line 359: Line 509:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llhudtext.cpp
|llhudtext.cpp
Line 365: Line 518:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llhudview.cpp
|llhudview.cpp
Line 371: Line 527:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lltracker.cpp
|lltracker.cpp
Line 377: Line 536:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llvelocitybar.cpp
|llvelocitybar.cpp
Line 383: Line 545:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llvotextbubble.cpp
|llvotextbubble.cpp
Line 389: Line 554:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}


== Rendering - Environment ==
== Rendering - Environment ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|llvlmanager.cpp
|llvlmanager.cpp
Line 404: Line 575:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llvlcomposition.cpp
|llvlcomposition.cpp
Line 410: Line 584:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llvoclouds.cpp
|llvoclouds.cpp
Line 416: Line 593:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llvosurfacepatch.cpp
|llvosurfacepatch.cpp
Line 422: Line 602:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llvoground.cpp
|llvoground.cpp
Line 428: Line 611:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llvosky.cpp
|llvosky.cpp
Line 434: Line 620:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llvostars.cpp
|llvostars.cpp
Line 440: Line 629:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llvowater.cpp
|llvowater.cpp
Line 446: Line 638:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llwind.cpp
|llwind.cpp
Line 452: Line 647:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}


== Rendering - Viewer Objects: Volumes, Particles, and Trees ==
== Rendering - Viewer Objects: Volumes, Particles, and Trees ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|llvocache.cpp
|llvocache.cpp
Line 467: Line 668:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llvograss.cpp
|llvograss.cpp
Line 473: Line 677:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llvoinventorylistener.cpp
|llvoinventorylistener.cpp
Line 479: Line 686:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llvopartgroup.cpp
|llvopartgroup.cpp
Line 485: Line 695:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llvotree.cpp
|llvotree.cpp
Line 491: Line 704:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llvovolume.cpp
|llvovolume.cpp
Line 497: Line 713:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}


== Rendering - Render Pipeline ==
== Rendering - Render Pipeline ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|llcloud.cpp
|llcloud.cpp
Line 512: Line 734:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llcubemap.cpp
|llcubemap.cpp
Line 518: Line 743:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llcylinder.cpp
|llcylinder.cpp
Line 524: Line 752:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lldrawable.cpp
|lldrawable.cpp
Line 530: Line 761:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lldrawpool.cpp
|lldrawpool.cpp
Line 536: Line 770:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lldrawpoolalpha.cpp
|lldrawpoolalpha.cpp
Line 542: Line 779:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lldrawpoolavatar.cpp
|lldrawpoolavatar.cpp
Line 548: Line 788:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lldrawpoolbump.cpp
|lldrawpoolbump.cpp
Line 554: Line 797:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lldrawpoolclouds.cpp
|lldrawpoolclouds.cpp
Line 560: Line 806:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lldrawpoolground.cpp
|lldrawpoolground.cpp
Line 566: Line 815:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lldrawpoolsimple.cpp
|lldrawpoolsimple.cpp
Line 572: Line 824:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lldrawpoolsky.cpp
|lldrawpoolsky.cpp
Line 578: Line 833:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lldrawpoolstars.cpp
|lldrawpoolstars.cpp
Line 584: Line 842:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lldrawpoolterrain.cpp
|lldrawpoolterrain.cpp
Line 590: Line 851:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lldrawpooltree.cpp
|lldrawpooltree.cpp
Line 596: Line 860:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lldrawpoolwater.cpp
|lldrawpoolwater.cpp
Line 602: Line 869:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lldynamictexture.cpp
|lldynamictexture.cpp
Line 608: Line 878:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llface.cpp
|llface.cpp
Line 614: Line 887:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfeaturemanager.cpp
|llfeaturemanager.cpp
Line 620: Line 896:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llflexibleobject.cpp
|llflexibleobject.cpp
Line 626: Line 905:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llglsandbox.cpp
|llglsandbox.cpp
Line 632: Line 914:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llglslshader.cpp
|llglslshader.cpp
Line 638: Line 923:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpatchvertexarray.cpp
|llpatchvertexarray.cpp
Line 644: Line 932:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpolymesh.cpp
|llpolymesh.cpp
Line 650: Line 941:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpolymorph.cpp
|llpolymorph.cpp
Line 656: Line 950:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llsky.cpp
|llsky.cpp
Line 662: Line 959:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llspatialpartition.cpp
|llspatialpartition.cpp
Line 668: Line 968:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llsphere.cpp
|llsphere.cpp
Line 674: Line 977:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llsprite.cpp
|llsprite.cpp
Line 680: Line 986:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llsurface.cpp
|llsurface.cpp
Line 686: Line 995:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llsurfacepatch.cpp
|llsurfacepatch.cpp
Line 692: Line 1,004:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lltexlayer.cpp
|lltexlayer.cpp
Line 698: Line 1,013:
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewerimage.cpp
|llviewerimage.cpp
Line 704: Line 1,022:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewerimagelist.cpp
|llviewerimagelist.cpp
Line 710: Line 1,031:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewerjoint.cpp
|llviewerjoint.cpp
Line 716: Line 1,040:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewerjointattachment.cpp
|llviewerjointattachment.cpp
Line 722: Line 1,049:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewerjointmesh.cpp
|llviewerjointmesh.cpp
Line 728: Line 1,058:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewerjointshape.cpp
|llviewerjointshape.cpp
Line 734: Line 1,067:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewerlayer.cpp
|llviewerlayer.cpp
Line 740: Line 1,076:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewerobject.cpp
|llviewerobject.cpp
Line 746: Line 1,085:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewerobjectlist.cpp
|llviewerobjectlist.cpp
Line 752: Line 1,094:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewerpartsim.cpp
|llviewerpartsim.cpp
Line 758: Line 1,103:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewerpartsource.cpp
|llviewerpartsource.cpp
Line 764: Line 1,112:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewertextureanim.cpp
|llviewertextureanim.cpp
Line 770: Line 1,121:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewervisualparam.cpp
|llviewervisualparam.cpp
Line 776: Line 1,130:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}


== Input and Output - Audio ==
== Input and Output - Audio ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|fmodwrapper.cpp
|fmodwrapper.cpp
Line 791: Line 1,151:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llaudiosourcevo.cpp
|llaudiosourcevo.cpp
Line 797: Line 1,160:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llaudiostatus.cpp
|llaudiostatus.cpp
Line 803: Line 1,169:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}


== Input and Output - Input ==
== Input and Output - Input ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|llviewerjoystick.cpp
|llviewerjoystick.cpp
Line 818: Line 1,190:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewerkeyboard.cpp
|llviewerkeyboard.cpp
Line 824: Line 1,199:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}


== Data and Communication - Agents ==
== Data and Communication - Agents ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|llagent.cpp
|llagent.cpp
Line 839: Line 1,220:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llagentdata.cpp
|llagentdata.cpp
Line 845: Line 1,229:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llagentpilot.cpp
|llagentpilot.cpp
Line 851: Line 1,238:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}


== Data and Communication - Region and World ==
== Data and Communication - Region and World ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|llviewerregion.cpp
|llviewerregion.cpp
Line 866: Line 1,259:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llworld.cpp
|llworld.cpp
Line 872: Line 1,268:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}


== Data and Communication - Network ==
== Data and Communication - Network ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|llasynchostbyname.cpp
|llasynchostbyname.cpp
Line 887: Line 1,289:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llcaphttpsender.cpp
|llcaphttpsender.cpp
Line 893: Line 1,298:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llurl.cpp
|llurl.cpp
Line 899: Line 1,307:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llurlwhitelist.cpp
|llurlwhitelist.cpp
Line 905: Line 1,316:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lluserauth.cpp
|lluserauth.cpp
Line 911: Line 1,325:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewergenericmessage.cpp
|llviewergenericmessage.cpp
Line 917: Line 1,334:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewermessage.cpp
|llviewermessage.cpp
Line 923: Line 1,343:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewermessage.h
|llviewermessage.h
Line 929: Line 1,352:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewernetwork.cpp
|llviewernetwork.cpp
Line 935: Line 1,361:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewerthrottle.cpp
|llviewerthrottle.cpp
Line 941: Line 1,370:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llweb.cpp
|llweb.cpp
Line 947: Line 1,379:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llxmlrpctransaction.cpp
|llxmlrpctransaction.cpp
Line 953: Line 1,388:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}


== User Interface - Alerts ==
== User Interface - Alerts ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|llconfirmationmanager.cpp
|llconfirmationmanager.cpp
Line 968: Line 1,409:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfirstuse.cpp
|llfirstuse.cpp
Line 974: Line 1,418:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llnotify.cpp
|llnotify.cpp
Line 980: Line 1,427:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}


== User Interface - Assets ==
== User Interface - Assets ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|llcompilequeue.cpp
|llcompilequeue.cpp
Line 995: Line 1,448:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llcompilequeue.h
|llcompilequeue.h
Line 1,001: Line 1,457:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloateranimpreview.cpp
|llfloateranimpreview.cpp
Line 1,007: Line 1,466:
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloatergesture.cpp
|llfloatergesture.cpp
Line 1,013: Line 1,475:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloaterimagepreview.cpp
|llfloaterimagepreview.cpp
Line 1,019: Line 1,484:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloaterinspect.cpp
|llfloaterinspect.cpp
Line 1,025: Line 1,493:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloateropenobject.cpp
|llfloateropenobject.cpp
Line 1,031: Line 1,502:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloaterproperties.cpp
|llfloaterproperties.cpp
Line 1,037: Line 1,511:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloaterscriptdebug.cpp
|llfloaterscriptdebug.cpp
Line 1,043: Line 1,520:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpreview.cpp
|llpreview.cpp
Line 1,049: Line 1,529:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpreviewanim.cpp
|llpreviewanim.cpp
Line 1,055: Line 1,538:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpreviewgesture.cpp
|llpreviewgesture.cpp
Line 1,061: Line 1,547:
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpreviewgesture.h
|llpreviewgesture.h
Line 1,067: Line 1,556:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpreviewlandmark.cpp
|llpreviewlandmark.cpp
Line 1,073: Line 1,565:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpreviewnotecard.cpp
|llpreviewnotecard.cpp
Line 1,079: Line 1,574:
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpreviewnotecard.h
|llpreviewnotecard.h
Line 1,085: Line 1,583:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpreviewscript.cpp
|llpreviewscript.cpp
Line 1,091: Line 1,592:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpreviewscript.h
|llpreviewscript.h
Line 1,097: Line 1,601:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpreviewsound.cpp
|llpreviewsound.cpp
Line 1,103: Line 1,610:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpreviewtexture.cpp
|llpreviewtexture.cpp
Line 1,109: Line 1,619:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}


== User Interface - Avatar Appearance ==
== User Interface - Avatar Appearance ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|llfloaterclothing.cpp
|llfloaterclothing.cpp
Line 1,124: Line 1,640:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloatercustomize.cpp
|llfloatercustomize.cpp
Line 1,130: Line 1,649:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llgenepool.cpp
|llgenepool.cpp
Line 1,136: Line 1,658:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llgesturemgr.cpp
|llgesturemgr.cpp
Line 1,142: Line 1,667:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llgesturemgr.h
|llgesturemgr.h
Line 1,148: Line 1,676:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpanelmorph.cpp
|llpanelmorph.cpp
Line 1,154: Line 1,685:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}


== User Interface - Chat, Instant Messaging, Notices, Reports ==
== User Interface - Chat, Instant Messaging, Notices, Reports ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|llchatbar.cpp
|llchatbar.cpp
Line 1,169: Line 1,706:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloaterchat.cpp
|llfloaterchat.cpp
Line 1,175: Line 1,715:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloatermute.cpp
|llfloatermute.cpp
Line 1,181: Line 1,724:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloaternewim.cpp
|llfloaternewim.cpp
Line 1,187: Line 1,733:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloaterpostcard.cpp
|llfloaterpostcard.cpp
Line 1,193: Line 1,742:
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloaterreporter.cpp
|llfloaterreporter.cpp
Line 1,199: Line 1,751:
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llgroupmgr.cpp
|llgroupmgr.cpp
Line 1,205: Line 1,760:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llgroupnotify.cpp
|llgroupnotify.cpp
Line 1,211: Line 1,769:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llimpanel.cpp
|llimpanel.cpp
Line 1,217: Line 1,778:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llimview.cpp
|llimview.cpp
Line 1,223: Line 1,787:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lllogchat.cpp
|lllogchat.cpp
Line 1,229: Line 1,796:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llmutelist.cpp
|llmutelist.cpp
Line 1,235: Line 1,805:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}


== User Interface - Data ==
== User Interface - Data ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|llclassifiedinfo.cpp
|llclassifiedinfo.cpp
Line 1,250: Line 1,826:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lleventinfo.cpp
|lleventinfo.cpp
Line 1,256: Line 1,835:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloaterabout.cpp
|llfloaterabout.cpp
Line 1,262: Line 1,844:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloaterauction.cpp
|llfloaterauction.cpp
Line 1,268: Line 1,853:
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloateravatarinfo.cpp
|llfloateravatarinfo.cpp
Line 1,274: Line 1,862:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloatergroupinfo.cpp
|llfloatergroupinfo.cpp
Line 1,280: Line 1,871:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloatergroupinvite.cpp
|llfloatergroupinvite.cpp
Line 1,286: Line 1,880:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloatergroups.cpp
|llfloatergroups.cpp
Line 1,292: Line 1,889:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloaterland.cpp
|llfloaterland.cpp
Line 1,298: Line 1,898:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloaterlandholdings.cpp
|llfloaterlandholdings.cpp
Line 1,304: Line 1,907:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloaterregioninfo.cpp
|llfloaterregioninfo.cpp
Line 1,310: Line 1,916:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloaterregioninfo.h
|llfloaterregioninfo.h
Line 1,316: Line 1,925:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloatertelehub.cpp
|llfloatertelehub.cpp
Line 1,322: Line 1,934:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloatertos.cpp
|llfloatertos.cpp
Line 1,328: Line 1,943:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloatertos.h
|llfloatertos.h
Line 1,334: Line 1,952:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpanelavatar.cpp
|llpanelavatar.cpp
Line 1,340: Line 1,961:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpanelclassified.cpp
|llpanelclassified.cpp
Line 1,346: Line 1,970:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpanelevent.cpp
|llpanelevent.cpp
Line 1,352: Line 1,979:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpanelgroup.cpp
|llpanelgroup.cpp
Line 1,358: Line 1,988:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpanelgroupgeneral.cpp
|llpanelgroupgeneral.cpp
Line 1,364: Line 1,997:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpanelgroupinvite.cpp
|llpanelgroupinvite.cpp
Line 1,370: Line 2,006:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpanelgrouplandmoney.cpp
|llpanelgrouplandmoney.cpp
Line 1,376: Line 2,015:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpanelgroupnotices.cpp
|llpanelgroupnotices.cpp
Line 1,382: Line 2,024:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpanelgrouproles.cpp
|llpanelgrouproles.cpp
Line 1,388: Line 2,033:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpanelgroupvoting.cpp
|llpanelgroupvoting.cpp
Line 1,394: Line 2,042:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpanelland.cpp
|llpanelland.cpp
Line 1,400: Line 2,051:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpanellandobjects.cpp
|llpanellandobjects.cpp
Line 1,406: Line 2,060:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpanellandoptions.cpp
|llpanellandoptions.cpp
Line 1,412: Line 2,069:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}


== User Interface - Data:Inventory ==
== User Interface - Data:Inventory ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|llcallingcard.cpp
|llcallingcard.cpp
Line 1,427: Line 2,090:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloaterfriends.cpp
|llfloaterfriends.cpp
Line 1,433: Line 2,099:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llinventoryactions.cpp
|llinventoryactions.cpp
Line 1,439: Line 2,108:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llinventorybridge.cpp
|llinventorybridge.cpp
Line 1,445: Line 2,117:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llinventoryclipboard.cpp
|llinventoryclipboard.cpp
Line 1,451: Line 2,126:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llinventorymodel.cpp
|llinventorymodel.cpp
Line 1,457: Line 2,135:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llinventoryview.cpp
|llinventoryview.cpp
Line 1,463: Line 2,144:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lllandmarklist.cpp
|lllandmarklist.cpp
Line 1,469: Line 2,153:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lllandmarklist.h
|lllandmarklist.h
Line 1,475: Line 2,162:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewerinventory.cpp
|llviewerinventory.cpp
Line 1,481: Line 2,171:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}


== User Interface - Data:Money and Land ==
== User Interface - Data:Money and Land ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|llcurrencyuimanager.cpp
|llcurrencyuimanager.cpp
Line 1,496: Line 2,192:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llgivemoney.cpp
|llgivemoney.cpp
Line 1,502: Line 2,201:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloaterbuy.cpp
|llfloaterbuy.cpp
Line 1,508: Line 2,210:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloaterbuycontents.cpp
|llfloaterbuycontents.cpp
Line 1,514: Line 2,219:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloaterbuycurrency.cpp
|llfloaterbuycurrency.cpp
Line 1,520: Line 2,228:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloaterbuyland.cpp
|llfloaterbuyland.cpp
Line 1,526: Line 2,237:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloatersellland.cpp
|llfloatersellland.cpp
Line 1,532: Line 2,246:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}


== User Interface - Data:Search ==
== User Interface - Data:Search ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|llfloaterdirectory.cpp
|llfloaterdirectory.cpp
Line 1,547: Line 2,267:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpaneldirbrowser.cpp
|llpaneldirbrowser.cpp
Line 1,553: Line 2,276:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpaneldirclassified.cpp
|llpaneldirclassified.cpp
Line 1,559: Line 2,285:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpaneldirevents.cpp
|llpaneldirevents.cpp
Line 1,565: Line 2,294:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpaneldirfind.cpp
|llpaneldirfind.cpp
Line 1,571: Line 2,303:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpaneldirgroups.cpp
|llpaneldirgroups.cpp
Line 1,577: Line 2,312:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpaneldirland.cpp
|llpaneldirland.cpp
Line 1,583: Line 2,321:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpaneldirpeople.cpp
|llpaneldirpeople.cpp
Line 1,589: Line 2,330:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpaneldirplaces.cpp
|llpaneldirplaces.cpp
Line 1,595: Line 2,339:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpaneldirpopular.cpp
|llpaneldirpopular.cpp
Line 1,601: Line 2,348:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpanelpick.cpp
|llpanelpick.cpp
Line 1,607: Line 2,357:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpanelplace.cpp
|llpanelplace.cpp
Line 1,613: Line 2,366:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}


== User Interface - Data:Map ==
== User Interface - Data:Map ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
llcompass.cpp
llcompass.cpp
Line 1,628: Line 2,387:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloatermap.cpp
|llfloatermap.cpp
Line 1,634: Line 2,396:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloaterworldmap.cpp
|llfloaterworldmap.cpp
Line 1,640: Line 2,405:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llmapresponders.cpp
|llmapresponders.cpp
Line 1,646: Line 2,414:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llnetmap.cpp
|llnetmap.cpp
Line 1,652: Line 2,423:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llworldmap.cpp
|llworldmap.cpp
Line 1,658: Line 2,432:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llworldmapview.cpp
|llworldmapview.cpp
Line 1,664: Line 2,441:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}


== User Interface - Objects and Edit Tools ==
== User Interface - Objects and Edit Tools ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|llhoverview.cpp
|llhoverview.cpp
Line 1,679: Line 2,462:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|llmanip.cpp
|llmanip.cpp
Line 1,685: Line 2,471:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|llmaniprotate.cpp
|llmaniprotate.cpp
Line 1,691: Line 2,480:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|llmanipscale.cpp
|llmanipscale.cpp
Line 1,697: Line 2,489:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|llmaniptranslate.cpp
|llmaniptranslate.cpp
Line 1,703: Line 2,498:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|llfloaterbuildoptions.cpp
|llfloaterbuildoptions.cpp
Line 1,709: Line 2,507:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|llfloaterbump.cpp
|llfloaterbump.cpp
Line 1,715: Line 2,516:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|llfloatercolorpicker.cpp
|llfloatercolorpicker.cpp
Line 1,721: Line 2,525:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|llfloaterpermissionsmgr.cpp
|llfloaterpermissionsmgr.cpp
Line 1,727: Line 2,534:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|llfloatertools.cpp
|llfloatertools.cpp
Line 1,733: Line 2,543:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|llpanelcontents.cpp
|llpanelcontents.cpp
Line 1,739: Line 2,552:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|llpanelface.cpp
|llpanelface.cpp
Line 1,745: Line 2,561:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|llpanelgeneral.cpp
|llpanelgeneral.cpp
Line 1,751: Line 2,570:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|llpanelinventory.cpp
|llpanelinventory.cpp
Line 1,757: Line 2,579:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|llpanelobject.cpp
|llpanelobject.cpp
Line 1,763: Line 2,588:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|llpanelpermissions.cpp
|llpanelpermissions.cpp
Line 1,769: Line 2,597:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|llselectmgr.cpp
|llselectmgr.cpp
Line 1,775: Line 2,606:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|lltool.cpp
|lltool.cpp
Line 1,781: Line 2,615:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|lltoolbar.cpp
|lltoolbar.cpp
Line 1,787: Line 2,624:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|lltoolbrush.cpp
|lltoolbrush.cpp
Line 1,793: Line 2,633:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|lltoolcomp.cpp
|lltoolcomp.cpp
Line 1,799: Line 2,642:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|lltooldraganddrop.cpp
|lltooldraganddrop.cpp
Line 1,805: Line 2,651:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|lltoolface.cpp
|lltoolface.cpp
Line 1,811: Line 2,660:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|lltoolfocus.cpp
|lltoolfocus.cpp
Line 1,817: Line 2,669:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|lltoolgrab.cpp
|lltoolgrab.cpp
Line 1,823: Line 2,678:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|lltoolgun.cpp
|lltoolgun.cpp
Line 1,829: Line 2,687:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|lltoolindividual.cpp
|lltoolindividual.cpp
Line 1,835: Line 2,696:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|lltoolmgr.cpp
|lltoolmgr.cpp
Line 1,841: Line 2,705:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|lltoolmorph.cpp
|lltoolmorph.cpp
Line 1,847: Line 2,714:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|lltoolobjpicker.cpp
|lltoolobjpicker.cpp
Line 1,853: Line 2,723:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|lltoolpie.cpp
|lltoolpie.cpp
Line 1,859: Line 2,732:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|lltoolpipette.cpp
|lltoolpipette.cpp
Line 1,865: Line 2,741:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|lltoolplacer.cpp
|lltoolplacer.cpp
Line 1,871: Line 2,750:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --><center>Note 1</center><!-- Has invalid match as substring of "UIImgHalfSphereUUID" -->
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|lltoolselect.cpp
|lltoolselect.cpp
Line 1,877: Line 2,759:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|lltoolselectland.cpp
|lltoolselectland.cpp
Line 1,883: Line 2,768:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|lltoolselectrect.cpp
|lltoolselectrect.cpp
Line 1,889: Line 2,777:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|lltoolview.cpp
|lltoolview.cpp
Line 1,895: Line 2,786:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|llviewerparcelmgr.cpp
|llviewerparcelmgr.cpp
Line 1,901: Line 2,795:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-  
|-  
|llviewerparceloverlay.cpp
|llviewerparceloverlay.cpp
Line 1,907: Line 2,804:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}
Note 1 - invalid match of text inside something else.


== User Interface - HTML ==
== User Interface - HTML ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|llfloaterhtml.cpp
|llfloaterhtml.cpp
Line 1,923: Line 2,825:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloaterhtmlfind.cpp
|llfloaterhtmlfind.cpp
Line 1,929: Line 2,834:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloaterhtmlhelp.cpp
|llfloaterhtmlhelp.cpp
Line 1,935: Line 2,843:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}


== User Interface - Import, Export, Upload ==
== User Interface - Import, Export, Upload ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|llfloaterimport.cpp
|llfloaterimport.cpp
Line 1,950: Line 2,864:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloatersaveavatar.cpp
|llfloatersaveavatar.cpp
Line 1,956: Line 2,873:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloatersnapshot.cpp
|llfloatersnapshot.cpp
Line 1,962: Line 2,882:
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lluploaddialog.cpp
|lluploaddialog.cpp
Line 1,968: Line 2,891:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}


== User Interface - Menus, Overlays, Login ==
== User Interface - Menus, Overlays, Login ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|llmediaremotectrl.cpp
|llmediaremotectrl.cpp
Line 1,983: Line 2,912:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llmenucommands.cpp
|llmenucommands.cpp
Line 1,989: Line 2,921:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llmoveview.cpp
|llmoveview.cpp
Line 1,995: Line 2,930:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lloverlaybar.cpp
|lloverlaybar.cpp
Line 2,001: Line 2,939:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpanellogin.cpp
|llpanellogin.cpp
Line 2,007: Line 2,948:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llprogressview.cpp
|llprogressview.cpp
Line 2,013: Line 2,957:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewermenu.cpp
|llviewermenu.cpp
Line 2,019: Line 2,966:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --><center>Note 1</center><!-- Invalid match as substring of "LLSelfStandUp()" -->
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewermenu.h
|llviewermenu.h
Line 2,025: Line 2,975:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --><center>Note 1</center><!-- Invalid match as substring of "*gPieSelfSimple;" -->
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewermenufile.cpp
|llviewermenufile.cpp
Line 2,031: Line 2,984:
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}
Note 1 - invalid match of text inside something else.


== User Interface - Preferences ==
== User Interface - Preferences ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|llfloaterpreference.cpp
|llfloaterpreference.cpp
Line 2,047: Line 3,005:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpanelaudioprefs.cpp
|llpanelaudioprefs.cpp
Line 2,053: Line 3,014:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llprefschat.cpp
|llprefschat.cpp
Line 2,059: Line 3,023:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llprefsim.cpp
|llprefsim.cpp
Line 2,065: Line 3,032:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpaneldisplay.cpp
|llpaneldisplay.cpp
Line 2,071: Line 3,041:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpanelmsgs.cpp
|llpanelmsgs.cpp
Line 2,077: Line 3,050:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpanelnetwork.cpp
|llpanelnetwork.cpp
Line 2,083: Line 3,059:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpanelvolume.cpp
|llpanelvolume.cpp
Line 2,089: Line 3,068:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpanelweb.cpp
|llpanelweb.cpp
Line 2,095: Line 3,077:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}


== User Interface - Utility ==
== User Interface - Utility ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|llcolorscheme.cpp
|llcolorscheme.cpp
Line 2,110: Line 3,098:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lldirpicker.cpp
|lldirpicker.cpp
Line 2,116: Line 3,107:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfilepicker.cpp
|llfilepicker.cpp
Line 2,122: Line 3,116:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloateravatarpicker.cpp
|llfloateravatarpicker.cpp
Line 2,128: Line 3,125:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloaternamedesc.cpp
|llfloaternamedesc.cpp
Line 2,134: Line 3,134:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llsavedsettingsglue.cpp
|llsavedsettingsglue.cpp
Line 2,140: Line 3,143:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewchildren.cpp
|llviewchildren.cpp
Line 2,146: Line 3,152:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}


== User Interface - Widgets ==
== User Interface - Widgets ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|llcolorswatch.cpp
|llcolorswatch.cpp
Line 2,161: Line 3,173:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llcontainerview.cpp
|llcontainerview.cpp
Line 2,167: Line 3,182:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfolderview.cpp
|llfolderview.cpp
Line 2,173: Line 3,191:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llnamebox.cpp
|llnamebox.cpp
Line 2,179: Line 3,200:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llnameeditor.cpp
|llnameeditor.cpp
Line 2,185: Line 3,209:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llnamelistctrl.cpp
|llnamelistctrl.cpp
Line 2,191: Line 3,218:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lltexturectrl.cpp
|lltexturectrl.cpp
Line 2,197: Line 3,227:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lljoystickbutton.cpp
|lljoystickbutton.cpp
Line 2,203: Line 3,236:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewertexteditor.cpp
|llviewertexteditor.cpp
Line 2,209: Line 3,245:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llvieweruictrlfactory.cpp
|llvieweruictrlfactory.cpp
Line 2,215: Line 3,254:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llwebbrowserctrl.cpp
|llwebbrowserctrl.cpp
Line 2,221: Line 3,263:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|}
|}


== User Interface - Debug ==
== User Interface - Debug ==
{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|llconsole.cpp
|llconsole.cpp
Line 2,237: Line 3,285:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lldebugmessagebox.cpp
|lldebugmessagebox.cpp
Line 2,243: Line 3,294:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lldebugview.cpp
|lldebugview.cpp
Line 2,249: Line 3,303:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfasttimerview.cpp
|llfasttimerview.cpp
Line 2,255: Line 3,312:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llframestats.cpp
|llframestats.cpp
Line 2,261: Line 3,321:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llframestatview.cpp
|llframestatview.cpp
Line 2,267: Line 3,330:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llmemoryview.cpp
|llmemoryview.cpp
Line 2,273: Line 3,339:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloateravatartextures.cpp
|llfloateravatartextures.cpp
Line 2,279: Line 3,348:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloatereditui.cpp
|llfloatereditui.cpp
Line 2,285: Line 3,357:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloatergodtools.cpp
|llfloatergodtools.cpp
Line 2,291: Line 3,366:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloatertest.cpp
|llfloatertest.cpp
Line 2,297: Line 3,375:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llfloatertopobjects.cpp
|llfloatertopobjects.cpp
Line 2,303: Line 3,384:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llpaneldebug.cpp
|llpaneldebug.cpp
Line 2,309: Line 3,393:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llstatbar.cpp
|llstatbar.cpp
Line 2,315: Line 3,402:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llstatgraph.cpp
|llstatgraph.cpp
Line 2,321: Line 3,411:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llstatusbar.cpp
|llstatusbar.cpp
Line 2,327: Line 3,420:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llstatview.cpp
|llstatview.cpp
Line 2,333: Line 3,429:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lltextureview.cpp
|lltextureview.cpp
Line 2,339: Line 3,438:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- LLLFS::YES --> <center><font size="+2">'''X'''</font></center>
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llvelocitybar.cpp
|llvelocitybar.cpp
Line 2,345: Line 3,447:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewercontrol.cpp
|llviewercontrol.cpp
Line 2,351: Line 3,456:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewerstats.cpp
|llviewerstats.cpp
Line 2,357: Line 3,465:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llviewerstats.h
|llviewerstats.h
Line 2,363: Line 3,474:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}


== Unlisted in Viewer Source Files page ==
== Unlisted in Viewer Source Files page ==


{| cellborder="3" border="2" width="50%"
{| cellborder="3" border="2" width="80%"
! width="60%" | file
! width="30%" | file
!width="10%" |VFS
!width="10%" |VFS
!width="10%" |gVFS
!width="10%" |gVFS
!width="10%" |gStaticVFS
!width="10%" |gStaticVFS
!width="10%" |LFS
!width="10%" |LLLFS
!width="10%" |LLVFS
!width="10%" |LLVFile
!width="10%" |apr_file
|-
|-
|llassetstorage.cpp
|llassetstorage.cpp
Line 2,379: Line 3,496:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llassetstorage.h
|llassetstorage.h
Line 2,385: Line 3,505:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|audioengine.cpp
|audioengine.cpp
Line 2,391: Line 3,514:
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|audioengine.h
|audioengine.h
Line 2,397: Line 3,523:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llaudiodecodemgr.cpp
|llaudiodecodemgr.cpp
Line 2,403: Line 3,532:
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gStaticVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gStaticVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::YES --> <center><font size="+2">'''X'''</font></center>
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llaudiodecodemgr.h
|llaudiodecodemgr.h
Line 2,409: Line 3,541:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llextendedstatus.h
|llextendedstatus.h
Line 2,415: Line 3,550:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llhttpassetstorage.cpp
|llhttpassetstorage.cpp
Line 2,421: Line 3,559:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llhttpassetstorage.h
|llhttpassetstorage.h
Line 2,427: Line 3,568:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llhttpclient.cpp
|llhttpclient.cpp
Line 2,433: Line 3,577:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lllfsthread.cpp
|lllfsthread.cpp
Line 2,439: Line 3,586:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- LLLFS::YES --> <center><font size="+2">'''X'''</font></center>
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lllfsthread.h
|lllfsthread.h
Line 2,445: Line 3,595:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- LLLFS::YES --> <center><font size="+2">'''X'''</font></center>
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llhttpclient.cpp
|llhttpclient.cpp
Line 2,451: Line 3,604:
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gVFS::YES --> <center><font size="+2">'''X'''</font></center>
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llimage.cpp
|llimage.cpp
Line 2,457: Line 3,613:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llimage.h
|llimage.h
Line 2,463: Line 3,622:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llkeyframemotion.cpp
|llkeyframemotion.cpp
Line 2,469: Line 3,631:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llkeyframemotion.h
|llkeyframemotion.h
Line 2,475: Line 3,640:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llprocessor.cpp
|llprocessor.cpp
Line 2,481: Line 3,649:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --><center>Note 1</center><!-- invalid match "CLFSH_CFLUSH_Instruction" and "SS_SelfSnoop" -->
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llprocessor.h
|llprocessor.h
Line 2,487: Line 3,658:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --><center>Note 1</center><!-- invalid match "CLFSH_CFLUSH_Instruction" and "SS_SelfSnoop" -->
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llstatemachine.cpp
|llstatemachine.cpp
Line 2,493: Line 3,667:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --><center>Note 1</center><!-- invalid match "LLFSMState" -->
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llstatemachine.h
|llstatemachine.h
Line 2,499: Line 3,676:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --><center>Note 1</center><!-- invalid match "LLFSMState" -->
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lltransfersourceasset.cpp
|lltransfersourceasset.cpp
Line 2,505: Line 3,685:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lltransfersourceasset.h
|lltransfersourceasset.h
Line 2,511: Line 3,694:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lltransfertargetvfile.cpp
|lltransfertargetvfile.cpp
Line 2,517: Line 3,703:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|lltransfertargetvfile.h
|lltransfertargetvfile.h
Line 2,523: Line 3,712:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llvfile.cpp
|llvfile.cpp
Line 2,529: Line 3,721:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llvfile.h
|llvfile.h
Line 2,535: Line 3,730:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llvfs.cpp
|llvfs.cpp
Line 2,541: Line 3,739:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llvfs.h
|llvfs.h
Line 2,547: Line 3,748:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llvfsthread.cpp
|llvfsthread.cpp
Line 2,553: Line 3,757:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llvfsthread.h
|llvfsthread.h
Line 2,559: Line 3,766:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llxfer_vfile.cpp
|llxfer_vfile.cpp
Line 2,565: Line 3,775:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llxfer_vfile.h
|llxfer_vfile.h
Line 2,571: Line 3,784:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llxfermanager.cpp
|llxfermanager.cpp
Line 2,577: Line 3,793:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|llxfermanager.h
|llxfermanager.h
Line 2,583: Line 3,802:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|vorbisdecode.cpp
|vorbisdecode.cpp
Line 2,589: Line 3,811:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|-
|-
|vorbisdecode.h
|vorbisdecode.h
Line 2,595: Line 3,820:
|<!-- gVFS::no --> &nbsp;
|<!-- gVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- gStaticVFS::no --> &nbsp;
|<!-- LFS::no --> &nbsp;
|<!-- LLLFS::no --> &nbsp;
|LLVFS::no
|LLVFile::no
|apr_file::no
|}
|}
Note 1 - invalid match of text inside something else.

Revision as of 03:20, 16 June 2008

This article is a work in progress.

Please do not edit.



This article is a work in progress.

Please do not edit.

Article purpose and notes

This page is intended to have two different purposes.

  • Document where the VFS is used in the viewer source
  • Provide a direction forward for removing/replacing the VFS


The following list of source references is based on viewer source released 1.19.1.4 in the SVN repository, and will need future updating as the viewer source continues to evolve:

This listing duplicates the layout and format of the Viewer Source Files page, providing a direct 1-to-1 correspondence with each section and source file. Although the source list only includes .cpp files, if a matching .h file is found it is listed here below the .cpp for that name. === Table column headings === Each column of the table refers to:

  • VFS - any reference to this keyward. "VFS" is not used in the code alone, and so is usually referring to comments in the source, or debugging/logging notes.
  • gVFS - the "general VFS" which is used for temporary storage for assets, in a private RAM-disk held in memory at all times. It is the primary limitation for allowing unlimited local asset caching in the viewer as currently designed. This needs to be removed and replaced with direct filesystem calls to folder-based storage.
  • gStaticVFS - a read-only VFS in "static_data.db2" and "static_index.db2". This contains the graphical elements and sounds of the Second Life user interface. It's only about 8 megabytes, but why does it have to be fully loaded in a virtual RAM-disk all the time using limited system memory? May be worthwhile to replace this with direct on-disk storage, perhaps in a ZIP file.
  • LLLFS - the "Local File System" procedures, used to directly read and write to the local OS storage. The audio manager for example uses LLLFS calls to write decoded OGG sounds as WAV files in the cache directory. LLLFS calls might be usable to replace the VFS as mentioned above.

VFS removal/replacement

As has been discussed in the sl-dev mailing list and in the JIRA, the VFS does not scale up very well at all since it functions as a private RAM-disk for non-texture assets downloaded by the viewer. The on-disk VFS files are used only for storage when the viewer is not running. At startup, the files are parsed for errors and loaded into memory, and continue to occupy memory until the viewer exits and the contents are written back to the disk files. As a RAM disk, increasing the cache size to larger than the available free memory causes the computer to run out of physical RAM and require the use of virtual memory and disk swapping. This is counterproductive when the intent of increasing the VFS size is to cache more of the frequently-used data to speed up the client and reduce network traffic. In order to permit the cache of assets currently stored in the VFS to grow to gigabytes of storage without requiring gigabytes of physical memory to store it, the existing VFS will have to be removed from the viewer and replaced with a traditional file/directory-based disk cache.

Need for lightweight asset obfuscation

In the interests of copyright protection, a directory-based non-texture asset cache should include some form of low-impact data obfuscation, to make it slightly difficult for the copyrighted works of other SL users held in the cache to be casually copied and examined. As has been discussed in SL-Dev, heavy and slow cache encryption would serve no purpose since a decryption tool can be easily built using the client source that would do the cache decrypting. So it's better to just use a simple and fast obfuscation technique which discourages casual asset theft.

General - Main and Startup

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
llstartup.cpp
X
X
    LLVFS::no LLVFile::no apr_file::no
llappviewer.cpp
X
X
X
X
LLVFS::no LLVFile::no apr_file::no
llappviewer.h
X
X
X
  LLVFS::no LLVFile::no apr_file::no

General - Window Management and Render Pipeline

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
pipeline.cpp         LLVFS::no LLVFile::no apr_file::no
llviewerdisplay.cpp         LLVFS::no LLVFile::no apr_file::no
llviewerprecompiledheaders.cpp         LLVFS::no LLVFile::no apr_file::no
llviewerprecompiledheaders.h
X
      LLVFS::no LLVFile::no apr_file::no
llviewerwindow.cpp         LLVFS::no LLVFile::no apr_file::no
llwindebug.cpp         LLVFS::no LLVFile::no apr_file::no

General - Utility and Misc

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
llbbox.cpp         LLVFS::no LLVFile::no apr_file::no
llbox.cpp         LLVFS::no LLVFile::no apr_file::no
llcallbacklist.cpp         LLVFS::no LLVFile::no apr_file::no
llcontroldef.cpp
X
      LLVFS::no LLVFile::no apr_file::no
lleventnotifier.cpp         LLVFS::no LLVFile::no apr_file::no
lleventpoll.cpp         LLVFS::no LLVFile::no apr_file::no
llhippo.cpp         LLVFS::no LLVFile::no apr_file::no
llregionposition.cpp         LLVFS::no LLVFile::no apr_file::no
moviemaker.cpp         LLVFS::no LLVFile::no apr_file::no
noise.cpp         LLVFS::no LLVFile::no apr_file::no

Rendering - Asset Management

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
llassetuploadresponders.cpp
X
X
    LLVFS::no LLVFile::no apr_file::no
lltexturecache.cpp      
X
LLVFS::no LLVFile::no apr_file::no
lltexturefetch.cpp         LLVFS::no LLVFile::no apr_file::no
llviewerassetstorage.cpp
X
      LLVFS::no LLVFile::no apr_file::no
llviewerassetstorage.h
X
      LLVFS::no LLVFile::no apr_file::no
llwearable.cpp
X
X
    LLVFS::no LLVFile::no apr_file::no
llwearablelist.cpp         LLVFS::no LLVFile::no apr_file::no

Rendering - Character and Animation

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
lldriverparam.cpp         LLVFS::no LLVFile::no apr_file::no
llemote.cpp         LLVFS::no LLVFile::no apr_file::no
llviewergesture.cpp         LLVFS::no LLVFile::no apr_file::no
llvoavatar.cpp
X
 
X
  LLVFS::no LLVFile::no apr_file::no
llcharacter(???)

Rendering - Camera

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
llcameraview.cpp         LLVFS::no LLVFile::no apr_file::no
llfollowcam.cpp         LLVFS::no LLVFile::no apr_file::no
llmorphview.cpp         LLVFS::no LLVFile::no apr_file::no
llviewercamera.cpp         LLVFS::no LLVFile::no apr_file::no

Rendering - Effects

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
llhudconnector.cpp         LLVFS::no LLVFile::no apr_file::no
llhudeffect.cpp         LLVFS::no LLVFile::no apr_file::no
llhudeffectbeam.cpp         LLVFS::no LLVFile::no apr_file::no
llhudeffectlookat.cpp         LLVFS::no LLVFile::no apr_file::no
llhudeffectpointat.cpp         LLVFS::no LLVFile::no apr_file::no
llhudeffecttrail.cpp         LLVFS::no LLVFile::no apr_file::no
llhudicon.cpp         LLVFS::no LLVFile::no apr_file::no
llhudmanager.cpp         LLVFS::no LLVFile::no apr_file::no
llhudobject.cpp         LLVFS::no LLVFile::no apr_file::no
llhudrender.cpp         LLVFS::no LLVFile::no apr_file::no
llhudtext.cpp         LLVFS::no LLVFile::no apr_file::no
llhudview.cpp         LLVFS::no LLVFile::no apr_file::no
lltracker.cpp         LLVFS::no LLVFile::no apr_file::no
llvelocitybar.cpp         LLVFS::no LLVFile::no apr_file::no
llvotextbubble.cpp         LLVFS::no LLVFile::no apr_file::no

Rendering - Environment

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
llvlmanager.cpp         LLVFS::no LLVFile::no apr_file::no
llvlcomposition.cpp         LLVFS::no LLVFile::no apr_file::no
llvoclouds.cpp         LLVFS::no LLVFile::no apr_file::no
llvosurfacepatch.cpp         LLVFS::no LLVFile::no apr_file::no
llvoground.cpp         LLVFS::no LLVFile::no apr_file::no
llvosky.cpp         LLVFS::no LLVFile::no apr_file::no
llvostars.cpp         LLVFS::no LLVFile::no apr_file::no
llvowater.cpp         LLVFS::no LLVFile::no apr_file::no
llwind.cpp         LLVFS::no LLVFile::no apr_file::no

Rendering - Viewer Objects: Volumes, Particles, and Trees

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
llvocache.cpp         LLVFS::no LLVFile::no apr_file::no
llvograss.cpp         LLVFS::no LLVFile::no apr_file::no
llvoinventorylistener.cpp         LLVFS::no LLVFile::no apr_file::no
llvopartgroup.cpp         LLVFS::no LLVFile::no apr_file::no
llvotree.cpp         LLVFS::no LLVFile::no apr_file::no
llvovolume.cpp         LLVFS::no LLVFile::no apr_file::no

Rendering - Render Pipeline

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
llcloud.cpp         LLVFS::no LLVFile::no apr_file::no
llcubemap.cpp         LLVFS::no LLVFile::no apr_file::no
llcylinder.cpp         LLVFS::no LLVFile::no apr_file::no
lldrawable.cpp         LLVFS::no LLVFile::no apr_file::no
lldrawpool.cpp         LLVFS::no LLVFile::no apr_file::no
lldrawpoolalpha.cpp         LLVFS::no LLVFile::no apr_file::no
lldrawpoolavatar.cpp         LLVFS::no LLVFile::no apr_file::no
lldrawpoolbump.cpp         LLVFS::no LLVFile::no apr_file::no
lldrawpoolclouds.cpp         LLVFS::no LLVFile::no apr_file::no
lldrawpoolground.cpp         LLVFS::no LLVFile::no apr_file::no
lldrawpoolsimple.cpp         LLVFS::no LLVFile::no apr_file::no
lldrawpoolsky.cpp         LLVFS::no LLVFile::no apr_file::no
lldrawpoolstars.cpp         LLVFS::no LLVFile::no apr_file::no
lldrawpoolterrain.cpp         LLVFS::no LLVFile::no apr_file::no
lldrawpooltree.cpp         LLVFS::no LLVFile::no apr_file::no
lldrawpoolwater.cpp         LLVFS::no LLVFile::no apr_file::no
lldynamictexture.cpp         LLVFS::no LLVFile::no apr_file::no
llface.cpp         LLVFS::no LLVFile::no apr_file::no
llfeaturemanager.cpp         LLVFS::no LLVFile::no apr_file::no
llflexibleobject.cpp         LLVFS::no LLVFile::no apr_file::no
llglsandbox.cpp         LLVFS::no LLVFile::no apr_file::no
llglslshader.cpp         LLVFS::no LLVFile::no apr_file::no
llpatchvertexarray.cpp         LLVFS::no LLVFile::no apr_file::no
llpolymesh.cpp         LLVFS::no LLVFile::no apr_file::no
llpolymorph.cpp         LLVFS::no LLVFile::no apr_file::no
llsky.cpp         LLVFS::no LLVFile::no apr_file::no
llspatialpartition.cpp         LLVFS::no LLVFile::no apr_file::no
llsphere.cpp         LLVFS::no LLVFile::no apr_file::no
llsprite.cpp         LLVFS::no LLVFile::no apr_file::no
llsurface.cpp         LLVFS::no LLVFile::no apr_file::no
llsurfacepatch.cpp         LLVFS::no LLVFile::no apr_file::no
lltexlayer.cpp
X
X
    LLVFS::no LLVFile::no apr_file::no
llviewerimage.cpp
X
      LLVFS::no LLVFile::no apr_file::no
llviewerimagelist.cpp
X
      LLVFS::no LLVFile::no apr_file::no
llviewerjoint.cpp         LLVFS::no LLVFile::no apr_file::no
llviewerjointattachment.cpp         LLVFS::no LLVFile::no apr_file::no
llviewerjointmesh.cpp         LLVFS::no LLVFile::no apr_file::no
llviewerjointshape.cpp         LLVFS::no LLVFile::no apr_file::no
llviewerlayer.cpp         LLVFS::no LLVFile::no apr_file::no
llviewerobject.cpp         LLVFS::no LLVFile::no apr_file::no
llviewerobjectlist.cpp         LLVFS::no LLVFile::no apr_file::no
llviewerpartsim.cpp         LLVFS::no LLVFile::no apr_file::no
llviewerpartsource.cpp         LLVFS::no LLVFile::no apr_file::no
llviewertextureanim.cpp         LLVFS::no LLVFile::no apr_file::no
llviewervisualparam.cpp         LLVFS::no LLVFile::no apr_file::no

Input and Output - Audio

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
fmodwrapper.cpp         LLVFS::no LLVFile::no apr_file::no
llaudiosourcevo.cpp         LLVFS::no LLVFile::no apr_file::no
llaudiostatus.cpp         LLVFS::no LLVFile::no apr_file::no

Input and Output - Input

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
llviewerjoystick.cpp         LLVFS::no LLVFile::no apr_file::no
llviewerkeyboard.cpp         LLVFS::no LLVFile::no apr_file::no

Data and Communication - Agents

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
llagent.cpp         LLVFS::no LLVFile::no apr_file::no
llagentdata.cpp         LLVFS::no LLVFile::no apr_file::no
llagentpilot.cpp         LLVFS::no LLVFile::no apr_file::no

Data and Communication - Region and World

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
llviewerregion.cpp         LLVFS::no LLVFile::no apr_file::no
llworld.cpp         LLVFS::no LLVFile::no apr_file::no

Data and Communication - Network

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
llasynchostbyname.cpp         LLVFS::no LLVFile::no apr_file::no
llcaphttpsender.cpp         LLVFS::no LLVFile::no apr_file::no
llurl.cpp         LLVFS::no LLVFile::no apr_file::no
llurlwhitelist.cpp         LLVFS::no LLVFile::no apr_file::no
lluserauth.cpp         LLVFS::no LLVFile::no apr_file::no
llviewergenericmessage.cpp         LLVFS::no LLVFile::no apr_file::no
llviewermessage.cpp
X
      LLVFS::no LLVFile::no apr_file::no
llviewermessage.h
X
      LLVFS::no LLVFile::no apr_file::no
llviewernetwork.cpp         LLVFS::no LLVFile::no apr_file::no
llviewerthrottle.cpp         LLVFS::no LLVFile::no apr_file::no
llweb.cpp         LLVFS::no LLVFile::no apr_file::no
llxmlrpctransaction.cpp         LLVFS::no LLVFile::no apr_file::no

User Interface - Alerts

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
llconfirmationmanager.cpp         LLVFS::no LLVFile::no apr_file::no
llfirstuse.cpp         LLVFS::no LLVFile::no apr_file::no
llnotify.cpp         LLVFS::no LLVFile::no apr_file::no

User Interface - Assets

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
llcompilequeue.cpp
X
      LLVFS::no LLVFile::no apr_file::no
llcompilequeue.h
X
      LLVFS::no LLVFile::no apr_file::no
llfloateranimpreview.cpp
X
X
    LLVFS::no LLVFile::no apr_file::no
llfloatergesture.cpp         LLVFS::no LLVFile::no apr_file::no
llfloaterimagepreview.cpp         LLVFS::no LLVFile::no apr_file::no
llfloaterinspect.cpp         LLVFS::no LLVFile::no apr_file::no
llfloateropenobject.cpp         LLVFS::no LLVFile::no apr_file::no
llfloaterproperties.cpp         LLVFS::no LLVFile::no apr_file::no
llfloaterscriptdebug.cpp         LLVFS::no LLVFile::no apr_file::no
llpreview.cpp         LLVFS::no LLVFile::no apr_file::no
llpreviewanim.cpp         LLVFS::no LLVFile::no apr_file::no
llpreviewgesture.cpp
X
X
    LLVFS::no LLVFile::no apr_file::no
llpreviewgesture.h
X
      LLVFS::no LLVFile::no apr_file::no
llpreviewlandmark.cpp         LLVFS::no LLVFile::no apr_file::no
llpreviewnotecard.cpp
X
X
    LLVFS::no LLVFile::no apr_file::no
llpreviewnotecard.h
X
      LLVFS::no LLVFile::no apr_file::no
llpreviewscript.cpp
X
      LLVFS::no LLVFile::no apr_file::no
llpreviewscript.h
X
      LLVFS::no LLVFile::no apr_file::no
llpreviewsound.cpp         LLVFS::no LLVFile::no apr_file::no
llpreviewtexture.cpp         LLVFS::no LLVFile::no apr_file::no

User Interface - Avatar Appearance

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
llfloaterclothing.cpp         LLVFS::no LLVFile::no apr_file::no
llfloatercustomize.cpp         LLVFS::no LLVFile::no apr_file::no
llgenepool.cpp         LLVFS::no LLVFile::no apr_file::no
llgesturemgr.cpp
X
      LLVFS::no LLVFile::no apr_file::no
llgesturemgr.h
X
      LLVFS::no LLVFile::no apr_file::no
llpanelmorph.cpp         LLVFS::no LLVFile::no apr_file::no

User Interface - Chat, Instant Messaging, Notices, Reports

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
llchatbar.cpp         LLVFS::no LLVFile::no apr_file::no
llfloaterchat.cpp         LLVFS::no LLVFile::no apr_file::no
llfloatermute.cpp         LLVFS::no LLVFile::no apr_file::no
llfloaternewim.cpp         LLVFS::no LLVFile::no apr_file::no
llfloaterpostcard.cpp
X
X
    LLVFS::no LLVFile::no apr_file::no
llfloaterreporter.cpp
X
X
    LLVFS::no LLVFile::no apr_file::no
llgroupmgr.cpp         LLVFS::no LLVFile::no apr_file::no
llgroupnotify.cpp         LLVFS::no LLVFile::no apr_file::no
llimpanel.cpp         LLVFS::no LLVFile::no apr_file::no
llimview.cpp         LLVFS::no LLVFile::no apr_file::no
lllogchat.cpp         LLVFS::no LLVFile::no apr_file::no
llmutelist.cpp         LLVFS::no LLVFile::no apr_file::no

User Interface - Data

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
llclassifiedinfo.cpp         LLVFS::no LLVFile::no apr_file::no
lleventinfo.cpp         LLVFS::no LLVFile::no apr_file::no
llfloaterabout.cpp         LLVFS::no LLVFile::no apr_file::no
llfloaterauction.cpp
X
X
    LLVFS::no LLVFile::no apr_file::no
llfloateravatarinfo.cpp         LLVFS::no LLVFile::no apr_file::no
llfloatergroupinfo.cpp         LLVFS::no LLVFile::no apr_file::no
llfloatergroupinvite.cpp         LLVFS::no LLVFile::no apr_file::no
llfloatergroups.cpp         LLVFS::no LLVFile::no apr_file::no
llfloaterland.cpp         LLVFS::no LLVFile::no apr_file::no
llfloaterlandholdings.cpp         LLVFS::no LLVFile::no apr_file::no
llfloaterregioninfo.cpp
X
      LLVFS::no LLVFile::no apr_file::no
llfloaterregioninfo.h
X
      LLVFS::no LLVFile::no apr_file::no
llfloatertelehub.cpp         LLVFS::no LLVFile::no apr_file::no
llfloatertos.cpp         LLVFS::no LLVFile::no apr_file::no
llfloatertos.h
X
      LLVFS::no LLVFile::no apr_file::no
llpanelavatar.cpp         LLVFS::no LLVFile::no apr_file::no
llpanelclassified.cpp         LLVFS::no LLVFile::no apr_file::no
llpanelevent.cpp         LLVFS::no LLVFile::no apr_file::no
llpanelgroup.cpp         LLVFS::no LLVFile::no apr_file::no
llpanelgroupgeneral.cpp         LLVFS::no LLVFile::no apr_file::no
llpanelgroupinvite.cpp         LLVFS::no LLVFile::no apr_file::no
llpanelgrouplandmoney.cpp         LLVFS::no LLVFile::no apr_file::no
llpanelgroupnotices.cpp         LLVFS::no LLVFile::no apr_file::no
llpanelgrouproles.cpp         LLVFS::no LLVFile::no apr_file::no
llpanelgroupvoting.cpp         LLVFS::no LLVFile::no apr_file::no
llpanelland.cpp         LLVFS::no LLVFile::no apr_file::no
llpanellandobjects.cpp         LLVFS::no LLVFile::no apr_file::no
llpanellandoptions.cpp         LLVFS::no LLVFile::no apr_file::no

User Interface - Data:Inventory

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
llcallingcard.cpp         LLVFS::no LLVFile::no apr_file::no
llfloaterfriends.cpp         LLVFS::no LLVFile::no apr_file::no
llinventoryactions.cpp         LLVFS::no LLVFile::no apr_file::no
llinventorybridge.cpp         LLVFS::no LLVFile::no apr_file::no
llinventoryclipboard.cpp         LLVFS::no LLVFile::no apr_file::no
llinventorymodel.cpp         LLVFS::no LLVFile::no apr_file::no
llinventoryview.cpp         LLVFS::no LLVFile::no apr_file::no
lllandmarklist.cpp
X
      LLVFS::no LLVFile::no apr_file::no
lllandmarklist.h
X
      LLVFS::no LLVFile::no apr_file::no
llviewerinventory.cpp         LLVFS::no LLVFile::no apr_file::no

User Interface - Data:Money and Land

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
llcurrencyuimanager.cpp         LLVFS::no LLVFile::no apr_file::no
llgivemoney.cpp         LLVFS::no LLVFile::no apr_file::no
llfloaterbuy.cpp         LLVFS::no LLVFile::no apr_file::no
llfloaterbuycontents.cpp         LLVFS::no LLVFile::no apr_file::no
llfloaterbuycurrency.cpp         LLVFS::no LLVFile::no apr_file::no
llfloaterbuyland.cpp         LLVFS::no LLVFile::no apr_file::no
llfloatersellland.cpp         LLVFS::no LLVFile::no apr_file::no

User Interface - Data:Search

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
llfloaterdirectory.cpp         LLVFS::no LLVFile::no apr_file::no
llpaneldirbrowser.cpp         LLVFS::no LLVFile::no apr_file::no
llpaneldirclassified.cpp         LLVFS::no LLVFile::no apr_file::no
llpaneldirevents.cpp         LLVFS::no LLVFile::no apr_file::no
llpaneldirfind.cpp         LLVFS::no LLVFile::no apr_file::no
llpaneldirgroups.cpp         LLVFS::no LLVFile::no apr_file::no
llpaneldirland.cpp         LLVFS::no LLVFile::no apr_file::no
llpaneldirpeople.cpp         LLVFS::no LLVFile::no apr_file::no
llpaneldirplaces.cpp         LLVFS::no LLVFile::no apr_file::no
llpaneldirpopular.cpp         LLVFS::no LLVFile::no apr_file::no
llpanelpick.cpp         LLVFS::no LLVFile::no apr_file::no
llpanelplace.cpp         LLVFS::no LLVFile::no apr_file::no

User Interface - Data:Map

llcompass.cpp
file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
        LLVFS::no LLVFile::no apr_file::no
llfloatermap.cpp         LLVFS::no LLVFile::no apr_file::no
llfloaterworldmap.cpp         LLVFS::no LLVFile::no apr_file::no
llmapresponders.cpp         LLVFS::no LLVFile::no apr_file::no
llnetmap.cpp         LLVFS::no LLVFile::no apr_file::no
llworldmap.cpp         LLVFS::no LLVFile::no apr_file::no
llworldmapview.cpp         LLVFS::no LLVFile::no apr_file::no

User Interface - Objects and Edit Tools

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
llhoverview.cpp         LLVFS::no LLVFile::no apr_file::no
llmanip.cpp         LLVFS::no LLVFile::no apr_file::no
llmaniprotate.cpp         LLVFS::no LLVFile::no apr_file::no
llmanipscale.cpp         LLVFS::no LLVFile::no apr_file::no
llmaniptranslate.cpp         LLVFS::no LLVFile::no apr_file::no
llfloaterbuildoptions.cpp         LLVFS::no LLVFile::no apr_file::no
llfloaterbump.cpp         LLVFS::no LLVFile::no apr_file::no
llfloatercolorpicker.cpp         LLVFS::no LLVFile::no apr_file::no
llfloaterpermissionsmgr.cpp         LLVFS::no LLVFile::no apr_file::no
llfloatertools.cpp         LLVFS::no LLVFile::no apr_file::no
llpanelcontents.cpp         LLVFS::no LLVFile::no apr_file::no
llpanelface.cpp         LLVFS::no LLVFile::no apr_file::no
llpanelgeneral.cpp         LLVFS::no LLVFile::no apr_file::no
llpanelinventory.cpp         LLVFS::no LLVFile::no apr_file::no
llpanelobject.cpp         LLVFS::no LLVFile::no apr_file::no
llpanelpermissions.cpp         LLVFS::no LLVFile::no apr_file::no
llselectmgr.cpp         LLVFS::no LLVFile::no apr_file::no
lltool.cpp         LLVFS::no LLVFile::no apr_file::no
lltoolbar.cpp         LLVFS::no LLVFile::no apr_file::no
lltoolbrush.cpp         LLVFS::no LLVFile::no apr_file::no
lltoolcomp.cpp         LLVFS::no LLVFile::no apr_file::no
lltooldraganddrop.cpp         LLVFS::no LLVFile::no apr_file::no
lltoolface.cpp         LLVFS::no LLVFile::no apr_file::no
lltoolfocus.cpp         LLVFS::no LLVFile::no apr_file::no
lltoolgrab.cpp         LLVFS::no LLVFile::no apr_file::no
lltoolgun.cpp         LLVFS::no LLVFile::no apr_file::no
lltoolindividual.cpp         LLVFS::no LLVFile::no apr_file::no
lltoolmgr.cpp         LLVFS::no LLVFile::no apr_file::no
lltoolmorph.cpp         LLVFS::no LLVFile::no apr_file::no
lltoolobjpicker.cpp         LLVFS::no LLVFile::no apr_file::no
lltoolpie.cpp         LLVFS::no LLVFile::no apr_file::no
lltoolpipette.cpp         LLVFS::no LLVFile::no apr_file::no
lltoolplacer.cpp         LLVFS::no LLVFile::no apr_file::no
lltoolselect.cpp         LLVFS::no LLVFile::no apr_file::no
lltoolselectland.cpp         LLVFS::no LLVFile::no apr_file::no
lltoolselectrect.cpp         LLVFS::no LLVFile::no apr_file::no
lltoolview.cpp         LLVFS::no LLVFile::no apr_file::no
llviewerparcelmgr.cpp         LLVFS::no LLVFile::no apr_file::no
llviewerparceloverlay.cpp         LLVFS::no LLVFile::no apr_file::no

User Interface - HTML

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
llfloaterhtml.cpp         LLVFS::no LLVFile::no apr_file::no
llfloaterhtmlfind.cpp         LLVFS::no LLVFile::no apr_file::no
llfloaterhtmlhelp.cpp         LLVFS::no LLVFile::no apr_file::no

User Interface - Import, Export, Upload

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
llfloaterimport.cpp         LLVFS::no LLVFile::no apr_file::no
llfloatersaveavatar.cpp         LLVFS::no LLVFile::no apr_file::no
llfloatersnapshot.cpp
X
X
    LLVFS::no LLVFile::no apr_file::no
lluploaddialog.cpp         LLVFS::no LLVFile::no apr_file::no

User Interface - Menus, Overlays, Login

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
llmediaremotectrl.cpp         LLVFS::no LLVFile::no apr_file::no
llmenucommands.cpp         LLVFS::no LLVFile::no apr_file::no
llmoveview.cpp         LLVFS::no LLVFile::no apr_file::no
lloverlaybar.cpp         LLVFS::no LLVFile::no apr_file::no
llpanellogin.cpp         LLVFS::no LLVFile::no apr_file::no
llprogressview.cpp         LLVFS::no LLVFile::no apr_file::no
llviewermenu.cpp
X
      LLVFS::no LLVFile::no apr_file::no
llviewermenu.h         LLVFS::no LLVFile::no apr_file::no
llviewermenufile.cpp
X
X
    LLVFS::no LLVFile::no apr_file::no

User Interface - Preferences

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
llfloaterpreference.cpp         LLVFS::no LLVFile::no apr_file::no
llpanelaudioprefs.cpp         LLVFS::no LLVFile::no apr_file::no
llprefschat.cpp         LLVFS::no LLVFile::no apr_file::no
llprefsim.cpp         LLVFS::no LLVFile::no apr_file::no
llpaneldisplay.cpp         LLVFS::no LLVFile::no apr_file::no
llpanelmsgs.cpp         LLVFS::no LLVFile::no apr_file::no
llpanelnetwork.cpp         LLVFS::no LLVFile::no apr_file::no
llpanelvolume.cpp         LLVFS::no LLVFile::no apr_file::no
llpanelweb.cpp         LLVFS::no LLVFile::no apr_file::no

User Interface - Utility

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
llcolorscheme.cpp         LLVFS::no LLVFile::no apr_file::no
lldirpicker.cpp         LLVFS::no LLVFile::no apr_file::no
llfilepicker.cpp         LLVFS::no LLVFile::no apr_file::no
llfloateravatarpicker.cpp         LLVFS::no LLVFile::no apr_file::no
llfloaternamedesc.cpp         LLVFS::no LLVFile::no apr_file::no
llsavedsettingsglue.cpp         LLVFS::no LLVFile::no apr_file::no
llviewchildren.cpp         LLVFS::no LLVFile::no apr_file::no

User Interface - Widgets

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
llcolorswatch.cpp         LLVFS::no LLVFile::no apr_file::no
llcontainerview.cpp         LLVFS::no LLVFile::no apr_file::no
llfolderview.cpp         LLVFS::no LLVFile::no apr_file::no
llnamebox.cpp         LLVFS::no LLVFile::no apr_file::no
llnameeditor.cpp         LLVFS::no LLVFile::no apr_file::no
llnamelistctrl.cpp         LLVFS::no LLVFile::no apr_file::no
lltexturectrl.cpp         LLVFS::no LLVFile::no apr_file::no
lljoystickbutton.cpp         LLVFS::no LLVFile::no apr_file::no
llviewertexteditor.cpp         LLVFS::no LLVFile::no apr_file::no
llvieweruictrlfactory.cpp         LLVFS::no LLVFile::no apr_file::no
llwebbrowserctrl.cpp         LLVFS::no LLVFile::no apr_file::no

User Interface - Debug

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
llconsole.cpp         LLVFS::no LLVFile::no apr_file::no
lldebugmessagebox.cpp         LLVFS::no LLVFile::no apr_file::no
lldebugview.cpp         LLVFS::no LLVFile::no apr_file::no
llfasttimerview.cpp         LLVFS::no LLVFile::no apr_file::no
llframestats.cpp         LLVFS::no LLVFile::no apr_file::no
llframestatview.cpp         LLVFS::no LLVFile::no apr_file::no
llmemoryview.cpp         LLVFS::no LLVFile::no apr_file::no
llfloateravatartextures.cpp         LLVFS::no LLVFile::no apr_file::no
llfloatereditui.cpp         LLVFS::no LLVFile::no apr_file::no
llfloatergodtools.cpp         LLVFS::no LLVFile::no apr_file::no
llfloatertest.cpp         LLVFS::no LLVFile::no apr_file::no
llfloatertopobjects.cpp         LLVFS::no LLVFile::no apr_file::no
llpaneldebug.cpp         LLVFS::no LLVFile::no apr_file::no
llstatbar.cpp         LLVFS::no LLVFile::no apr_file::no
llstatgraph.cpp         LLVFS::no LLVFile::no apr_file::no
llstatusbar.cpp         LLVFS::no LLVFile::no apr_file::no
llstatview.cpp         LLVFS::no LLVFile::no apr_file::no
lltextureview.cpp      
X
LLVFS::no LLVFile::no apr_file::no
llvelocitybar.cpp         LLVFS::no LLVFile::no apr_file::no
llviewercontrol.cpp         LLVFS::no LLVFile::no apr_file::no
llviewerstats.cpp
X
      LLVFS::no LLVFile::no apr_file::no
llviewerstats.h
X
      LLVFS::no LLVFile::no apr_file::no

Unlisted in Viewer Source Files page

file VFS gVFS gStaticVFS LLLFS LLVFS LLVFile apr_file
llassetstorage.cpp
X
      LLVFS::no LLVFile::no apr_file::no
llassetstorage.h
X
      LLVFS::no LLVFile::no apr_file::no
audioengine.cpp
X
X
    LLVFS::no LLVFile::no apr_file::no
audioengine.h
X
      LLVFS::no LLVFile::no apr_file::no
llaudiodecodemgr.cpp
X
X
X
X
LLVFS::no LLVFile::no apr_file::no
llaudiodecodemgr.h
X
      LLVFS::no LLVFile::no apr_file::no
llextendedstatus.h
X
      LLVFS::no LLVFile::no apr_file::no
llhttpassetstorage.cpp
X
      LLVFS::no LLVFile::no apr_file::no
llhttpassetstorage.h
X
      LLVFS::no LLVFile::no apr_file::no
llhttpclient.cpp
X
      LLVFS::no LLVFile::no apr_file::no
lllfsthread.cpp      
X
LLVFS::no LLVFile::no apr_file::no
lllfsthread.h      
X
LLVFS::no LLVFile::no apr_file::no
llhttpclient.cpp
X
X
    LLVFS::no LLVFile::no apr_file::no
llimage.cpp
X
      LLVFS::no LLVFile::no apr_file::no
llimage.h
X
      LLVFS::no LLVFile::no apr_file::no
llkeyframemotion.cpp
X
      LLVFS::no LLVFile::no apr_file::no
llkeyframemotion.h
X
      LLVFS::no LLVFile::no apr_file::no
llprocessor.cpp         LLVFS::no LLVFile::no apr_file::no
llprocessor.h         LLVFS::no LLVFile::no apr_file::no
llstatemachine.cpp         LLVFS::no LLVFile::no apr_file::no
llstatemachine.h         LLVFS::no LLVFile::no apr_file::no
lltransfersourceasset.cpp
X
      LLVFS::no LLVFile::no apr_file::no
lltransfersourceasset.h
X
      LLVFS::no LLVFile::no apr_file::no
lltransfertargetvfile.cpp
X
      LLVFS::no LLVFile::no apr_file::no
lltransfertargetvfile.h
X
      LLVFS::no LLVFile::no apr_file::no
llvfile.cpp
X
      LLVFS::no LLVFile::no apr_file::no
llvfile.h
X
      LLVFS::no LLVFile::no apr_file::no
llvfs.cpp
X
      LLVFS::no LLVFile::no apr_file::no
llvfs.h
X
      LLVFS::no LLVFile::no apr_file::no
llvfsthread.cpp
X
      LLVFS::no LLVFile::no apr_file::no
llvfsthread.h
X
      LLVFS::no LLVFile::no apr_file::no
llxfer_vfile.cpp
X
      LLVFS::no LLVFile::no apr_file::no
llxfer_vfile.h
X
      LLVFS::no LLVFile::no apr_file::no
llxfermanager.cpp
X
      LLVFS::no LLVFile::no apr_file::no
llxfermanager.h
X
      LLVFS::no LLVFile::no apr_file::no
vorbisdecode.cpp
X
      LLVFS::no LLVFile::no apr_file::no
vorbisdecode.h
X
      LLVFS::no LLVFile::no apr_file::no