forked from OSchip/llvm-project
Updating LibASTMatchersReference
The generator for LibASTMatchersReference.html didn't get run last time ASTMatchers changes were made. Here are up-to-date docs. llvm-svn: 178234
This commit is contained in:
parent
a4d074863a
commit
584da4043e
|
@ -973,8 +973,8 @@ incompleteArrayType()
|
|||
</pre></td></tr>
|
||||
|
||||
|
||||
<tr><td>Matcher<<a href="http://clang.llvm.org/doxygen/classclang_1_1TypeLoc.html">TypeLoc</a>></td><td class="name" onclick="toggle('lvalueReferenceTypeLoc0')"><a name="lvalueReferenceTypeLoc0Anchor">lvalueReferenceTypeLoc</a></td><td>Matcher<<a href="http://clang.llvm.org/doxygen/classclang_1_1LValueReferenceTypeLoc.html">LValueReferenceTypeLoc</a>>...</td></tr>
|
||||
<tr><td colspan="4" class="doc" id="lvalueReferenceTypeLoc0"><pre>Matches lvalue reference types.
|
||||
<tr><td>Matcher<<a href="http://clang.llvm.org/doxygen/classclang_1_1TypeLoc.html">TypeLoc</a>></td><td class="name" onclick="toggle('lValueReferenceTypeLoc0')"><a name="lValueReferenceTypeLoc0Anchor">lValueReferenceTypeLoc</a></td><td>Matcher<<a href="http://clang.llvm.org/doxygen/classclang_1_1LValueReferenceTypeLoc.html">LValueReferenceTypeLoc</a>>...</td></tr>
|
||||
<tr><td colspan="4" class="doc" id="lValueReferenceTypeLoc0"><pre>Matches lvalue reference types.
|
||||
|
||||
Given:
|
||||
int *a;
|
||||
|
@ -985,7 +985,7 @@ Given:
|
|||
auto &&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& by reference collapsing rules.
|
||||
</pre></td></tr>
|
||||
|
||||
|
@ -1012,6 +1012,23 @@ pointerType()
|
|||
</pre></td></tr>
|
||||
|
||||
|
||||
<tr><td>Matcher<<a href="http://clang.llvm.org/doxygen/classclang_1_1TypeLoc.html">TypeLoc</a>></td><td class="name" onclick="toggle('rValueReferenceTypeLoc0')"><a name="rValueReferenceTypeLoc0Anchor">rValueReferenceTypeLoc</a></td><td>Matcher<<a href="http://clang.llvm.org/doxygen/classclang_1_1RValueReferenceTypeLoc.html">RValueReferenceTypeLoc</a>>...</td></tr>
|
||||
<tr><td colspan="4" class="doc" id="rValueReferenceTypeLoc0"><pre>Matches rvalue reference types.
|
||||
|
||||
Given:
|
||||
int *a;
|
||||
int &b = *a;
|
||||
int &&c = 1;
|
||||
auto &d = b;
|
||||
auto &&e = c;
|
||||
auto &&f = 2;
|
||||
int g = 5;
|
||||
|
||||
rValueReferenceType() matches the types of c and f. e is not
|
||||
matched as it is deduced to int& by reference collapsing rules.
|
||||
</pre></td></tr>
|
||||
|
||||
|
||||
<tr><td>Matcher<<a href="http://clang.llvm.org/doxygen/classclang_1_1TypeLoc.html">TypeLoc</a>></td><td class="name" onclick="toggle('recordTypeLoc0')"><a name="recordTypeLoc0Anchor">recordTypeLoc</a></td><td>Matcher<<a href="http://clang.llvm.org/doxygen/classclang_1_1RecordTypeLoc.html">RecordTypeLoc</a>>...</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, c, d, e, and f.
|
|||
</pre></td></tr>
|
||||
|
||||
|
||||
<tr><td>Matcher<<a href="http://clang.llvm.org/doxygen/classclang_1_1TypeLoc.html">TypeLoc</a>></td><td class="name" onclick="toggle('rvalueReferenceTypeLoc0')"><a name="rvalueReferenceTypeLoc0Anchor">rvalueReferenceTypeLoc</a></td><td>Matcher<<a href="http://clang.llvm.org/doxygen/classclang_1_1RValueReferenceTypeLoc.html">RValueReferenceTypeLoc</a>>...</td></tr>
|
||||
<tr><td colspan="4" class="doc" id="rvalueReferenceTypeLoc0"><pre>Matches rvalue reference types.
|
||||
|
||||
Given:
|
||||
int *a;
|
||||
int &b = *a;
|
||||
int &&c = 1;
|
||||
auto &d = b;
|
||||
auto &&e = c;
|
||||
auto &&f = 2;
|
||||
int g = 5;
|
||||
|
||||
lvalueReferenceType() matches the types of c and f. e is not
|
||||
matched as it is deduced to int& by reference collapsing rules.
|
||||
</pre></td></tr>
|
||||
|
||||
|
||||
<tr><td>Matcher<<a href="http://clang.llvm.org/doxygen/classclang_1_1TypeLoc.html">TypeLoc</a>></td><td class="name" onclick="toggle('templateSpecializationTypeLoc0')"><a name="templateSpecializationTypeLoc0Anchor">templateSpecializationTypeLoc</a></td><td>Matcher<<a href="http://clang.llvm.org/doxygen/classclang_1_1TemplateSpecializationTypeLoc.html">TemplateSpecializationTypeLoc</a>>...</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<<a href="http://clang.llvm.org/doxygen/classclang_1_1Type.html">Type</a>></td><td class="name" onclick="toggle('lvalueReferenceType0')"><a name="lvalueReferenceType0Anchor">lvalueReferenceType</a></td><td>Matcher<<a href="http://clang.llvm.org/doxygen/classclang_1_1LValueReferenceType.html">LValueReferenceType</a>>...</td></tr>
|
||||
<tr><td colspan="4" class="doc" id="lvalueReferenceType0"><pre>Matches lvalue reference types.
|
||||
<tr><td>Matcher<<a href="http://clang.llvm.org/doxygen/classclang_1_1Type.html">Type</a>></td><td class="name" onclick="toggle('lValueReferenceType0')"><a name="lValueReferenceType0Anchor">lValueReferenceType</a></td><td>Matcher<<a href="http://clang.llvm.org/doxygen/classclang_1_1LValueReferenceType.html">LValueReferenceType</a>>...</td></tr>
|
||||
<tr><td colspan="4" class="doc" id="lValueReferenceType0"><pre>Matches lvalue reference types.
|
||||
|
||||
Given:
|
||||
int *a;
|
||||
|
@ -1252,7 +1252,7 @@ Given:
|
|||
auto &&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& by reference collapsing rules.
|
||||
</pre></td></tr>
|
||||
|
||||
|
@ -1279,6 +1279,23 @@ pointerType()
|
|||
</pre></td></tr>
|
||||
|
||||
|
||||
<tr><td>Matcher<<a href="http://clang.llvm.org/doxygen/classclang_1_1Type.html">Type</a>></td><td class="name" onclick="toggle('rValueReferenceType0')"><a name="rValueReferenceType0Anchor">rValueReferenceType</a></td><td>Matcher<<a href="http://clang.llvm.org/doxygen/classclang_1_1RValueReferenceType.html">RValueReferenceType</a>>...</td></tr>
|
||||
<tr><td colspan="4" class="doc" id="rValueReferenceType0"><pre>Matches rvalue reference types.
|
||||
|
||||
Given:
|
||||
int *a;
|
||||
int &b = *a;
|
||||
int &&c = 1;
|
||||
auto &d = b;
|
||||
auto &&e = c;
|
||||
auto &&f = 2;
|
||||
int g = 5;
|
||||
|
||||
rValueReferenceType() matches the types of c and f. e is not
|
||||
matched as it is deduced to int& by reference collapsing rules.
|
||||
</pre></td></tr>
|
||||
|
||||
|
||||
<tr><td>Matcher<<a href="http://clang.llvm.org/doxygen/classclang_1_1Type.html">Type</a>></td><td class="name" onclick="toggle('recordType0')"><a name="recordType0Anchor">recordType</a></td><td>Matcher<<a href="http://clang.llvm.org/doxygen/classclang_1_1RecordType.html">RecordType</a>>...</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, c, d, e, and f.
|
|||
</pre></td></tr>
|
||||
|
||||
|
||||
<tr><td>Matcher<<a href="http://clang.llvm.org/doxygen/classclang_1_1Type.html">Type</a>></td><td class="name" onclick="toggle('rvalueReferenceType0')"><a name="rvalueReferenceType0Anchor">rvalueReferenceType</a></td><td>Matcher<<a href="http://clang.llvm.org/doxygen/classclang_1_1RValueReferenceType.html">RValueReferenceType</a>>...</td></tr>
|
||||
<tr><td colspan="4" class="doc" id="rvalueReferenceType0"><pre>Matches rvalue reference types.
|
||||
|
||||
Given:
|
||||
int *a;
|
||||
int &b = *a;
|
||||
int &&c = 1;
|
||||
auto &d = b;
|
||||
auto &&e = c;
|
||||
auto &&f = 2;
|
||||
int g = 5;
|
||||
|
||||
lvalueReferenceType() matches the types of c and f. e is not
|
||||
matched as it is deduced to int& by reference collapsing rules.
|
||||
</pre></td></tr>
|
||||
|
||||
|
||||
<tr><td>Matcher<<a href="http://clang.llvm.org/doxygen/classclang_1_1Type.html">Type</a>></td><td class="name" onclick="toggle('templateSpecializationType0')"><a name="templateSpecializationType0Anchor">templateSpecializationType</a></td><td>Matcher<<a href="http://clang.llvm.org/doxygen/classclang_1_1TemplateSpecializationType.html">TemplateSpecializationType</a>>...</td></tr>
|
||||
<tr><td colspan="4" class="doc" id="templateSpecializationType0"><pre>Matches template specialization types.
|
||||
|
||||
|
|
Loading…
Reference in New Issue