HomeSort by relevance Sort by last modified time
    Searched refs:NodeKind (Results 1 - 10 of 10) sorted by null

  /external/clang/include/clang/AST/
ASTTypeTraits.h 223 return BaseConverter<T>::get(NodeKind, Storage.buffer);
231 return BaseConverter<T>::getUnchecked(NodeKind, Storage.buffer);
234 ASTNodeKind getNodeKind() const { return NodeKind; }
264 // DynTypedNode::create() stores the exact kind of the node in NodeKind.
265 // If they contain the same node, their NodeKind must be the same.
266 if (!NodeKind.isSame(Other.NodeKind))
270 if (ASTNodeKind::getFromNodeKind<QualType>().isSame(NodeKind))
287 static const T *get(ASTNodeKind NodeKind, const char Storage[]) {
288 if (ASTNodeKind::getFromNodeKind<T>().isBaseOf(NodeKind))
    [all...]
  /external/llvm/include/llvm/ADT/
Twine.h 80 /// NodeKind - Represent the type of an argument.
81 enum NodeKind : unsigned char {
158 /// LHSKind - The NodeKind of the left hand side, \see getLHSKind().
159 NodeKind LHSKind;
160 /// RHSKind - The NodeKind of the right hand side, \see getRHSKind().
161 NodeKind RHSKind;
165 explicit Twine(NodeKind Kind)
179 explicit Twine(Child LHS, NodeKind LHSKind, Child RHS, NodeKind RHSKind)
239 /// Get the NodeKind of the left-hand side
    [all...]
  /external/clang/include/clang/ASTMatchers/Dynamic/
VariantValue.h 96 MatcherOps(ast_type_traits::ASTNodeKind NodeKind) : NodeKind(NodeKind) {}
117 ast_type_traits::ASTNodeKind NodeKind;
  /external/clang/lib/AST/
ASTTypeTraits.cpp 131 OS << "Unable to print values of type " << NodeKind.asStringRef() << "\n";
140 OS << "Unable to dump values of type " << NodeKind.asStringRef() << "\n";
  /external/llvm/lib/Support/
Twine.cpp 52 NodeKind Kind) const {
99 NodeKind Kind) const {
  /external/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp 163 ast_type_traits::ASTNodeKind NodeKind) {
164 return DynTypedMatcher(NodeKind, NodeKind, &*TrueMatcherInstance);
  /external/clang/lib/ASTMatchers/Dynamic/
VariantValue.cpp 55 IsExactMatch = Matcher.getSupportedKind().isSame(NodeKind);
56 return Matcher.canConvertTo(NodeKind);
Marshallers.h 145 for (const ast_type_traits::ASTNodeKind &NodeKind : RetKinds) {
146 if (ArgKind(NodeKind).isConvertibleTo(Kind, Specificity)) {
148 *LeastDerivedKind = NodeKind;
  /external/llvm/include/llvm/Support/
YAMLParser.h 107 enum NodeKind {
  /external/clang/include/clang/ASTMatchers/
ASTMatchersInternal.h 286 /// \brief Get a "true" matcher for \p NodeKind.
289 static DynTypedMatcher trueMatcher(ast_type_traits::ASTNodeKind NodeKind);
    [all...]

Completed in 290 milliseconds