diff options
author | Chris Lattner <sabre@nondot.org> | 2005-03-15 04:48:32 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-03-15 04:48:32 +0000 |
commit | 89cc2656ba070434dceeabe95cba0a95b988325b (patch) | |
tree | c9c3592ed3dc3972ab9bc5b520230280db183f7d /docs | |
parent | 841957ebaf0fffba1574a4ea5df7188753ea51ac (diff) | |
download | external_llvm-89cc2656ba070434dceeabe95cba0a95b988325b.zip external_llvm-89cc2656ba070434dceeabe95cba0a95b988325b.tar.gz external_llvm-89cc2656ba070434dceeabe95cba0a95b988325b.tar.bz2 |
switch from a* to arg_* and g* to global_* for argument/global var iterators
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20596 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/ProgrammersManual.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html index f335ddf..d4d402f 100644 --- a/docs/ProgrammersManual.html +++ b/docs/ProgrammersManual.html @@ -1423,12 +1423,12 @@ is its address (after linking) which is guaranteed to be constant.</p> is necessary to use when you need to update the list or perform a complex action that doesn't have a forwarding method.</p></li> - <li><tt>Function::aiterator</tt> - Typedef for the argument list + <li><tt>Function::arg_iterator</tt> - Typedef for the argument list iterator<br> - <tt>Function::const_aiterator</tt> - Typedef for const_iterator.<br> + <tt>Function::const_arg_iterator</tt> - Typedef for const_iterator.<br> - <tt>abegin()</tt>, <tt>aend()</tt>, <tt>afront()</tt>, <tt>aback()</tt>, - <tt>asize()</tt>, <tt>aempty()</tt>, <tt>arbegin()</tt>, <tt>arend()</tt> + <tt>arg_begin()</tt>, <tt>arg_end()</tt>, <tt>arg_front()</tt>, <tt>arg_back()</tt>, + <tt>arg_size()</tt>, <tt>arg_empty()</tt> <p>These are forwarding methods that make it easy to access the contents of a <tt>Function</tt> object's <a href="#Argument"><tt>Argument</tt></a> @@ -1591,12 +1591,12 @@ provide a name for it (probably based on the name of the translation unit).</p> <hr> <ul> - <li><tt>Module::giterator</tt> - Typedef for global variable list iterator<br> + <li><tt>Module::global_iterator</tt> - Typedef for global variable list iterator<br> - <tt>Module::const_giterator</tt> - Typedef for const_iterator.<br> + <tt>Module::const_global_iterator</tt> - Typedef for const_iterator.<br> - <tt>gbegin()</tt>, <tt>gend()</tt>, <tt>gfront()</tt>, <tt>gback()</tt>, - <tt>gsize()</tt>, <tt>gempty()</tt>, <tt>grbegin()</tt>, <tt>grend()</tt> + <tt>global_begin()</tt>, <tt>global_end()</tt>, <tt>global_front()</tt>, <tt>global_back()</tt>, + <tt>global_size()</tt>, <tt>global_empty()</tt> <p> These are forwarding methods that make it easy to access the contents of a <tt>Module</tt> object's <a |