Home
last modified time | relevance | path

Searched refs:otherTy (Results 1 – 7 of 7) sorted by relevance

/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/libs/3rdparty/cplusplus/
H A DCoreTypes.cpp71 return matcher->match(this, otherTy); in match0()
88 if (const PointerType *otherTy = otherType->asPointerType()) in match0() local
89 return matcher->match(this, otherTy); in match0()
110 return matcher->match(this, otherTy); in match0()
134 return matcher->match(this, otherTy); in match0()
154 if (const FloatType *otherTy = otherType->asFloatType()) in match0() local
155 return matcher->match(this, otherTy); in match0()
175 if (const ArrayType *otherTy = otherType->asArrayType()) in match0() local
176 return matcher->match(this, otherTy); in match0()
202 if (const NamedType *otherTy = otherType->asNamedType()) in match0() local
[all …]
H A DControl.cpp42 { return ty.kind() < otherTy.kind(); } in operator ()()
48 { return ty.kind() < otherTy.kind(); } in operator ()()
55 if (ty.memberName() < otherTy.memberName()) in operator ()()
58 else if (ty.memberName() == otherTy.memberName()) in operator ()()
59 return ty.elementType() < otherTy.elementType(); in operator ()()
69 return ty.elementType() < otherTy.elementType(); in operator ()()
77 if (ty.elementType() < otherTy.elementType()) in operator ()()
79 if (ty.elementType() == otherTy.elementType()) in operator ()()
89 return ty.name() < otherTy.name(); in operator ()()
97 if (ty.size() < otherTy.size()) in operator ()()
[all …]
H A DSymbols.cpp398 return matcher->match(this, otherTy); in match0()
633 return matcher->match(this, otherTy); in match0()
701 return matcher->match(this, otherTy); in match0()
724 return matcher->match(this, otherTy); in match0()
800 return matcher->match(this, otherTy); in match0()
842 return matcher->match(this, otherTy); in match0()
1029 return matcher->match(this, otherTy); in match0()
1075 return matcher->match(this, otherTy); in match0()
1105 return matcher->match(this, otherTy); in match0()
1135 return matcher->match(this, otherTy); in match0()
[all …]
H A DFullySpecifiedType.cpp224 bool FullySpecifiedType::match(const FullySpecifiedType &otherTy, Matcher *matcher) const in match() argument
235 if ((_flags & flagsMask) != (otherTy._flags & flagsMask)) in match()
237 return type()->match(otherTy.type(), matcher); in match()
H A DNames.cpp97 bool TemplateArgument::match(const TemplateArgument &otherTy, Matcher *matcher) const in match() argument
99 if (_numericLiteral != otherTy._numericLiteral) in match()
101 return type().match(otherTy.type(), matcher); in match()
H A DFullySpecifiedType.h108 bool match(const FullySpecifiedType &otherTy, Matcher *matcher = nullptr) const;
H A DNames.h115 bool match(const TemplateArgument &otherTy, Matcher *matcher = nullptr) const;