This DOS command, when executed from a snapshot view path (where you want to start searching from), allows you to list out view-private files:
C:\view\view_tag\path_within_view\for /F "usebackq delims=" %i in (`cleartool ls -r ^| find /V "Rule:" ^| find /V "hijacked" ^| find /V "eclipsed" ^| find /V "-->" ^| find /V "not loaded"`) do @echo "%i"
The "cleartool ls -r" lists out all the files recursively which includes all types of elements which included those e.g. not loaded, eclipsed, hijacked etc.
You can then make use of "find /V" to weed out those that you do not want to see in the "cleartool ls -r" output.