Author: revane
Date: Thu Mar 28 08:50:22 2013
New Revision: 178234

URL: http://llvm.org/viewvc/llvm-project?rev=178234&view=rev
Log:
Updating LibASTMatchersReference

The generator for LibASTMatchersReference.html didn't get run last time
ASTMatchers changes were made. Here are up-to-date docs.


Modified:
    cfe/trunk/docs/LibASTMatchersReference.html

Modified: cfe/trunk/docs/LibASTMatchersReference.html
URL: 
http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/LibASTMatchersReference.html?rev=178234&r1=178233&r2=178234&view=diff
==============================================================================
--- cfe/trunk/docs/LibASTMatchersReference.html (original)
+++ cfe/trunk/docs/LibASTMatchersReference.html Thu Mar 28 08:50:22 2013
@@ -973,8 +973,8 @@ incompleteArrayType()
 </pre></td></tr>
 
 
-<tr><td>Matcher&lt<a 
href="http://clang.llvm.org/doxygen/classclang_1_1TypeLoc.html";>TypeLoc</a>&gt;</td><td
 class="name" onclick="toggle('lvalueReferenceTypeLoc0')"><a 
name="lvalueReferenceTypeLoc0Anchor">lvalueReferenceTypeLoc</a></td><td>Matcher&lt<a
 
href="http://clang.llvm.org/doxygen/classclang_1_1LValueReferenceTypeLoc.html";>LValueReferenceTypeLoc</a>&gt;...</td></tr>
-<tr><td colspan="4" class="doc" id="lvalueReferenceTypeLoc0"><pre>Matches 
lvalue reference types.
+<tr><td>Matcher&lt<a 
href="http://clang.llvm.org/doxygen/classclang_1_1TypeLoc.html";>TypeLoc</a>&gt;</td><td
 class="name" onclick="toggle('lValueReferenceTypeLoc0')"><a 
name="lValueReferenceTypeLoc0Anchor">lValueReferenceTypeLoc</a></td><td>Matcher&lt<a
 
href="http://clang.llvm.org/doxygen/classclang_1_1LValueReferenceTypeLoc.html";>LValueReferenceTypeLoc</a>&gt;...</td></tr>
+<tr><td colspan="4" class="doc" id="lValueReferenceTypeLoc0"><pre>Matches 
lvalue reference types.
 
 Given:
   int *a;
@@ -985,7 +985,7 @@ Given:
   auto &amp;&amp;f = 2;
   int g = 5;
 
-lvalueReferenceType() matches the types of b, d, and e. e is
+lValueReferenceType() matches the types of b, d, and e. e is
 matched since the type is deduced as int&amp; by reference collapsing rules.
 </pre></td></tr>
 
@@ -1012,6 +1012,23 @@ pointerType()
 </pre></td></tr>
 
 
+<tr><td>Matcher&lt<a 
href="http://clang.llvm.org/doxygen/classclang_1_1TypeLoc.html";>TypeLoc</a>&gt;</td><td
 class="name" onclick="toggle('rValueReferenceTypeLoc0')"><a 
name="rValueReferenceTypeLoc0Anchor">rValueReferenceTypeLoc</a></td><td>Matcher&lt<a
 
href="http://clang.llvm.org/doxygen/classclang_1_1RValueReferenceTypeLoc.html";>RValueReferenceTypeLoc</a>&gt;...</td></tr>
+<tr><td colspan="4" class="doc" id="rValueReferenceTypeLoc0"><pre>Matches 
rvalue reference types.
+
+Given:
+  int *a;
+  int &amp;b = *a;
+  int &amp;&amp;c = 1;
+  auto &amp;d = b;
+  auto &amp;&amp;e = c;
+  auto &amp;&amp;f = 2;
+  int g = 5;
+
+rValueReferenceType() matches the types of c and f. e is not
+matched as it is deduced to int&amp; by reference collapsing rules.
+</pre></td></tr>
+
+
 <tr><td>Matcher&lt<a 
href="http://clang.llvm.org/doxygen/classclang_1_1TypeLoc.html";>TypeLoc</a>&gt;</td><td
 class="name" onclick="toggle('recordTypeLoc0')"><a 
name="recordTypeLoc0Anchor">recordTypeLoc</a></td><td>Matcher&lt<a 
href="http://clang.llvm.org/doxygen/classclang_1_1RecordTypeLoc.html";>RecordTypeLoc</a>&gt;...</td></tr>
 <tr><td colspan="4" class="doc" id="recordTypeLoc0"><pre>Matches record types 
(e.g. structs, classes).
 
@@ -1043,23 +1060,6 @@ referenceType() matches the types of b,
 </pre></td></tr>
 
 
-<tr><td>Matcher&lt<a 
href="http://clang.llvm.org/doxygen/classclang_1_1TypeLoc.html";>TypeLoc</a>&gt;</td><td
 class="name" onclick="toggle('rvalueReferenceTypeLoc0')"><a 
name="rvalueReferenceTypeLoc0Anchor">rvalueReferenceTypeLoc</a></td><td>Matcher&lt<a
 
href="http://clang.llvm.org/doxygen/classclang_1_1RValueReferenceTypeLoc.html";>RValueReferenceTypeLoc</a>&gt;...</td></tr>
-<tr><td colspan="4" class="doc" id="rvalueReferenceTypeLoc0"><pre>Matches 
rvalue reference types.
-
-Given:
-  int *a;
-  int &amp;b = *a;
-  int &amp;&amp;c = 1;
-  auto &amp;d = b;
-  auto &amp;&amp;e = c;
-  auto &amp;&amp;f = 2;
-  int g = 5;
-
-lvalueReferenceType() matches the types of c and f. e is not
-matched as it is deduced to int&amp; by reference collapsing rules.
-</pre></td></tr>
-
-
 <tr><td>Matcher&lt<a 
href="http://clang.llvm.org/doxygen/classclang_1_1TypeLoc.html";>TypeLoc</a>&gt;</td><td
 class="name" onclick="toggle('templateSpecializationTypeLoc0')"><a 
name="templateSpecializationTypeLoc0Anchor">templateSpecializationTypeLoc</a></td><td>Matcher&lt<a
 
href="http://clang.llvm.org/doxygen/classclang_1_1TemplateSpecializationTypeLoc.html";>TemplateSpecializationTypeLoc</a>&gt;...</td></tr>
 <tr><td colspan="4" class="doc" 
id="templateSpecializationTypeLoc0"><pre>Matches template specialization types.
 
@@ -1240,8 +1240,8 @@ incompleteArrayType()
 </pre></td></tr>
 
 
-<tr><td>Matcher&lt<a 
href="http://clang.llvm.org/doxygen/classclang_1_1Type.html";>Type</a>&gt;</td><td
 class="name" onclick="toggle('lvalueReferenceType0')"><a 
name="lvalueReferenceType0Anchor">lvalueReferenceType</a></td><td>Matcher&lt<a 
href="http://clang.llvm.org/doxygen/classclang_1_1LValueReferenceType.html";>LValueReferenceType</a>&gt;...</td></tr>
-<tr><td colspan="4" class="doc" id="lvalueReferenceType0"><pre>Matches lvalue 
reference types.
+<tr><td>Matcher&lt<a 
href="http://clang.llvm.org/doxygen/classclang_1_1Type.html";>Type</a>&gt;</td><td
 class="name" onclick="toggle('lValueReferenceType0')"><a 
name="lValueReferenceType0Anchor">lValueReferenceType</a></td><td>Matcher&lt<a 
href="http://clang.llvm.org/doxygen/classclang_1_1LValueReferenceType.html";>LValueReferenceType</a>&gt;...</td></tr>
+<tr><td colspan="4" class="doc" id="lValueReferenceType0"><pre>Matches lvalue 
reference types.
 
 Given:
   int *a;
@@ -1252,7 +1252,7 @@ Given:
   auto &amp;&amp;f = 2;
   int g = 5;
 
-lvalueReferenceType() matches the types of b, d, and e. e is
+lValueReferenceType() matches the types of b, d, and e. e is
 matched since the type is deduced as int&amp; by reference collapsing rules.
 </pre></td></tr>
 
@@ -1279,6 +1279,23 @@ pointerType()
 </pre></td></tr>
 
 
+<tr><td>Matcher&lt<a 
href="http://clang.llvm.org/doxygen/classclang_1_1Type.html";>Type</a>&gt;</td><td
 class="name" onclick="toggle('rValueReferenceType0')"><a 
name="rValueReferenceType0Anchor">rValueReferenceType</a></td><td>Matcher&lt<a 
href="http://clang.llvm.org/doxygen/classclang_1_1RValueReferenceType.html";>RValueReferenceType</a>&gt;...</td></tr>
+<tr><td colspan="4" class="doc" id="rValueReferenceType0"><pre>Matches rvalue 
reference types.
+
+Given:
+  int *a;
+  int &amp;b = *a;
+  int &amp;&amp;c = 1;
+  auto &amp;d = b;
+  auto &amp;&amp;e = c;
+  auto &amp;&amp;f = 2;
+  int g = 5;
+
+rValueReferenceType() matches the types of c and f. e is not
+matched as it is deduced to int&amp; by reference collapsing rules.
+</pre></td></tr>
+
+
 <tr><td>Matcher&lt<a 
href="http://clang.llvm.org/doxygen/classclang_1_1Type.html";>Type</a>&gt;</td><td
 class="name" onclick="toggle('recordType0')"><a 
name="recordType0Anchor">recordType</a></td><td>Matcher&lt<a 
href="http://clang.llvm.org/doxygen/classclang_1_1RecordType.html";>RecordType</a>&gt;...</td></tr>
 <tr><td colspan="4" class="doc" id="recordType0"><pre>Matches record types 
(e.g. structs, classes).
 
@@ -1310,23 +1327,6 @@ referenceType() matches the types of b,
 </pre></td></tr>
 
 
-<tr><td>Matcher&lt<a 
href="http://clang.llvm.org/doxygen/classclang_1_1Type.html";>Type</a>&gt;</td><td
 class="name" onclick="toggle('rvalueReferenceType0')"><a 
name="rvalueReferenceType0Anchor">rvalueReferenceType</a></td><td>Matcher&lt<a 
href="http://clang.llvm.org/doxygen/classclang_1_1RValueReferenceType.html";>RValueReferenceType</a>&gt;...</td></tr>
-<tr><td colspan="4" class="doc" id="rvalueReferenceType0"><pre>Matches rvalue 
reference types.
-
-Given:
-  int *a;
-  int &amp;b = *a;
-  int &amp;&amp;c = 1;
-  auto &amp;d = b;
-  auto &amp;&amp;e = c;
-  auto &amp;&amp;f = 2;
-  int g = 5;
-
-lvalueReferenceType() matches the types of c and f. e is not
-matched as it is deduced to int&amp; by reference collapsing rules.
-</pre></td></tr>
-
-
 <tr><td>Matcher&lt<a 
href="http://clang.llvm.org/doxygen/classclang_1_1Type.html";>Type</a>&gt;</td><td
 class="name" onclick="toggle('templateSpecializationType0')"><a 
name="templateSpecializationType0Anchor">templateSpecializationType</a></td><td>Matcher&lt<a
 
href="http://clang.llvm.org/doxygen/classclang_1_1TemplateSpecializationType.html";>TemplateSpecializationType</a>&gt;...</td></tr>
 <tr><td colspan="4" class="doc" id="templateSpecializationType0"><pre>Matches 
template specialization types.
 


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to