reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

gen/tools/clang/include/clang/AST/StmtNodes.inc
  103 DOSTMT(DoStmt, Stmt)

References

include/llvm/ADT/STLExtras.h
   75       typename std::add_pointer<typename std::add_const<T>::type>::type;
include/llvm/Support/Casting.h
   58     return To::classof(&Val);
   77     return isa_impl<To, From>::doit(Val);
  106     return isa_impl<To, From>::doit(*Val);
  122     return isa_impl_wrap<To, SimpleFrom,
  132     return isa_impl_cl<To,FromTy>::doit(Val);
  142   return isa_impl_wrap<X, const Y,
  168   using ret_type = const To &; // Normal case, return Ty&
  172   using ret_type = To *;       // Pointer arg case, return Ty*
  176   using ret_type = const To *; // Constant pointer arg case, return const Ty*
  198   using ret_type = typename cast_retty<To, SimpleFrom>::ret_type;
  204   using ret_type = typename cast_retty_impl<To,FromTy>::ret_type;
  210       To, From, typename simplify_type<From>::SimpleType>::ret_type;
  227   static typename cast_retty<To, FromTy>::ret_type doit(const FromTy &Val) {
  228     typename cast_retty<To, FromTy>::ret_type Res2
  256 inline typename cast_retty<X, Y>::ret_type cast(Y &Val) {
  258   return cast_convert_val<X, Y,
  263 inline typename cast_retty<X, Y *>::ret_type cast(Y *Val) {
  265   return cast_convert_val<X, Y*,
  337 LLVM_NODISCARD inline typename cast_retty<X, Y>::ret_type dyn_cast(Y &Val) {
  342 LLVM_NODISCARD inline typename cast_retty<X, Y *>::ret_type dyn_cast(Y *Val) {
  343   return isa<X>(Val) ? cast<X>(Val) : nullptr;
  343   return isa<X>(Val) ? cast<X>(Val) : nullptr;
tools/clang/include/clang/AST/ASTTypeTraits.h
   65     return ASTNodeKind(KindToKindId<T>::Id);
  234   static DynTypedNode create(const T &Node) {
  235     return BaseConverter<T>::create(Node);
  251   const T *get() const {
  252     return BaseConverter<T>::get(NodeKind, Storage.buffer);
  259   const T &getUnchecked() const {
  260     return BaseConverter<T>::getUnchecked(NodeKind, Storage.buffer);
  394     static const T *get(ASTNodeKind NodeKind, const char Storage[]) {
  395       if (ASTNodeKind::getFromNodeKind<T>().isBaseOf(NodeKind))
  399     static const T &getUnchecked(ASTNodeKind NodeKind, const char Storage[]) {
  401       return *cast<T>(static_cast<const BaseT *>(
  474     : public DynCastPtrConverter<T, Stmt> {};
tools/clang/include/clang/ASTMatchers/ASTMatchers.h
  110   const T *getNodeAs(StringRef ID) const {
  111     return MyBoundNodes.getNodeAs<T>(ID);
 1925 extern const internal::VariadicDynCastAllOfMatcher<Stmt, DoStmt> doStmt;
 4419   const Stmt *const Statement = internal::GetBodyMatcher<NodeType>::get(Node);
tools/clang/include/clang/ASTMatchers/ASTMatchersInternal.h
  160   const T *getNodeAs(StringRef ID) const {
  165     return It->second.get<T>();
  302   virtual bool matches(const T &Node,
  309     return matches(DynNode.getUnchecked<T>(), Finder, Builder);
  345   DynTypedMatcher(MatcherInterface<T> *Implementation)
  346       : SupportedKind(ast_type_traits::ASTNodeKind::getFromNodeKind<T>()),
  436     return canConvertTo(ast_type_traits::ASTNodeKind::getFromNodeKind<T>());
  445   template <typename T> Matcher<T> convertTo() const {
  447     return unconditionalConvertTo<T>();
  479 class WrapperMatcherInterface : public MatcherInterface<T> {
  499   explicit Matcher(MatcherInterface<T> *Implementation)
  520             std::is_same<T, QualType>::value &&
  529     static_assert(std::is_base_of<To, T>::value, "Invalid dynCast call.");
  534   bool matches(const T &Node,
  581     return Other.dynCastTo(ast_type_traits::ASTNodeKind::getFromNodeKind<T>());
 1026   bool matchesAncestorOf(const T &Node,
 1030     static_assert(std::is_base_of<Decl, T>::value ||
 1031                       std::is_base_of<NestedNameSpecifierLoc, T>::value ||
 1032                       std::is_base_of<Stmt, T>::value ||
 1033                       std::is_base_of<TypeLoc, T>::value,
 1067   using head = T1;
 1073   using tail = TypeList<Ts...>;
 1084       std::is_base_of<typename AnyTypeList::head, T>::value ||
 1085       TypeListContainsSuperOf<typename AnyTypeList::tail, T>::value;
 1146     template <typename To> operator Matcher<To>() const {
 1202   operator Matcher<T>() const {
 1203     static_assert(TypeListContainsSuperOf<ReturnTypes, T>::value,
 1243   operator Matcher<T>() const {
 1245                ast_type_traits::ASTNodeKind::getFromNodeKind<T>())
 1246         .template unconditionalConvertTo<T>();
 1255 class BindableMatcher : public Matcher<T> {
 1257   explicit BindableMatcher(const Matcher<T> &M) : Matcher<T>(M) {}
 1258   explicit BindableMatcher(MatcherInterface<T> *Implementation)
 1265   Matcher<T> bind(StringRef ID) const {
 1335   template <typename T> operator Matcher<T>() const {
 1337                Op, ast_type_traits::ASTNodeKind::getFromNodeKind<T>(),
 1338                getMatchers<T>(std::index_sequence_for<Ps...>()))
 1339         .template unconditionalConvertTo<T>();
 1370 inline Matcher<T> DynTypedMatcher::unconditionalConvertTo() const {
 1376 BindableMatcher<T> makeAllOfComposite(
 1377     ArrayRef<const Matcher<T> *> InnerMatchers) {
 1388   using PI = llvm::pointee_iterator<const Matcher<T> *const *>;
 1395           ast_type_traits::ASTNodeKind::getFromNodeKind<T>(),
 1397           .template unconditionalConvertTo<T>());
 1408     ArrayRef<const Matcher<InnerT> *> InnerMatchers) {
 1458 class HasAncestorMatcher : public WrapperMatcherInterface<T> {
 1466   bool matches(const T &Node, ASTMatchFinder *Finder,
 1557     : public VariadicFunction<BindableMatcher<SourceT>, Matcher<TargetT>,
 1558                               makeDynCastAllOfComposite<SourceT, TargetT>> {
 1767   static const Stmt *get(const Ty &Node) {
tools/clang/include/clang/ASTMatchers/Dynamic/VariantValue.h
  199   ast_matchers::internal::Matcher<T> getTypedMatcher() const {
  202         ->template convertTo<T>();
  227       : MatcherOps(ast_type_traits::ASTNodeKind::getFromNodeKind<T>()) {}
  228   typedef ast_matchers::internal::Matcher<T> MatcherT;
  232     return DynTypedMatcher(Matcher.convertTo<T>());
tools/clang/lib/ARCMigrate/TransEmptyStatementsAndDealloc.cpp
  119   bool VisitDoStmt(DoStmt *S) {
tools/clang/lib/ARCMigrate/Transforms.cpp
  273   bool VisitDoStmt(DoStmt *S) {
tools/clang/lib/AST/ASTImporter.cpp
  518     ExpectedStmt VisitDoStmt(DoStmt *S);
 5901 ExpectedStmt ASTNodeImporter::VisitDoStmt(DoStmt *S) {
 5913   return new (Importer.getToContext()) DoStmt(
tools/clang/lib/AST/ExprConstant.cpp
 4698     const DoStmt *DS = cast<DoStmt>(S);
 4698     const DoStmt *DS = cast<DoStmt>(S);
tools/clang/lib/AST/ParentMap.cpp
  201       return DirectChild == cast<DoStmt>(P)->getCond();
tools/clang/lib/AST/StmtPrinter.cpp
  305 void StmtPrinter::VisitDoStmt(DoStmt *Node) {
tools/clang/lib/AST/StmtProfile.cpp
  277 void StmtProfiler::VisitDoStmt(const DoStmt *S) {
tools/clang/lib/ASTMatchers/ASTMatchersInternal.cpp
  698 const internal::VariadicDynCastAllOfMatcher<Stmt, DoStmt> doStmt;
tools/clang/lib/ASTMatchers/Dynamic/Marshallers.h
   75     return Value.isMatcher() && Value.getMatcher().hasTypedMatcher<T>();
   78   static ast_matchers::internal::Matcher<T> get(const VariantValue &Value) {
   79     return Value.getMatcher().getTypedMatcher<T>();
   83     return ArgKind(ast_type_traits::ASTNodeKind::getFromNodeKind<T>());
  466       ast_matchers::internal::VariadicDynCastAllOfMatcher<BaseT, DerivedT> Func,
  469         DerivedKind(ast_type_traits::ASTNodeKind::getFromNodeKind<DerivedT>()) {
  778     ast_matchers::internal::VariadicDynCastAllOfMatcher<BaseT, DerivedT>
tools/clang/lib/Analysis/CFG.cpp
  571   CFGBlock *VisitDoStmt(DoStmt *D);
 2228       return VisitDoStmt(cast<DoStmt>(S));
 3836 CFGBlock *CFGBuilder::VisitDoStmt(DoStmt *D) {
 5216   void VisitDoStmt(DoStmt *D) {
 5919       E = cast<DoStmt>(Terminator)->getCond();
tools/clang/lib/Analysis/LiveVariables.cpp
  348       AddLiveStmt(val.liveStmts, LV.SSetFact, cast<DoStmt>(S)->getCond());
tools/clang/lib/Analysis/ReachableCode.cpp
   52     if (const DoStmt *DS = dyn_cast<DoStmt>(Term)) {
   52     if (const DoStmt *DS = dyn_cast<DoStmt>(Term)) {
tools/clang/lib/CodeGen/Address.h
  108 template <class U> inline U cast(CodeGen::Address addr) {
tools/clang/lib/CodeGen/CGStmt.cpp
  141   case Stmt::DoStmtClass:      EmitDoStmt(cast<DoStmt>(*S), Attrs);       break;
  797 void CodeGenFunction::EmitDoStmt(const DoStmt &S,
tools/clang/lib/CodeGen/CodeGenFunction.cpp
 1288   if (isa<SwitchStmt>(S) || isa<WhileStmt>(S) || isa<DoStmt>(S) ||
 1311       isa<DoStmt>(S) || isa<ForStmt>(S) || isa<CompoundStmt>(S) ||
tools/clang/lib/CodeGen/CodeGenFunction.h
 2878   void EmitDoStmt(const DoStmt &S, ArrayRef<const Attr *> Attrs = None);
tools/clang/lib/CodeGen/CodeGenPGO.cpp
  493   void VisitDoStmt(const DoStmt *S) {
tools/clang/lib/CodeGen/CoverageMappingGen.cpp
  979   void VisitDoStmt(const DoStmt *S) {
tools/clang/lib/Frontend/Rewrite/RewriteModernObjC.cpp
 5427       isa<DoStmt>(S) || isa<ForStmt>(S))
 5615       isa<DoStmt>(S) || isa<ForStmt>(S)) {
tools/clang/lib/Frontend/Rewrite/RewriteObjC.cpp
 4551       isa<DoStmt>(S) || isa<ForStmt>(S))
 4717       isa<DoStmt>(S) || isa<ForStmt>(S)) {
tools/clang/lib/Sema/AnalysisBasedWarnings.cpp
  941       Range = cast<DoStmt>(Term)->getCond()->getSourceRange();
 1331       if (!cast<DoStmt>(S)->getCond()->EvaluateAsInt(Result, Ctx))
tools/clang/lib/Sema/SemaDeclAttr.cpp
 8138     return cast<DoStmt>(Parent)->getBody() == S;
tools/clang/lib/Sema/SemaStmt.cpp
 1357   return new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen);
 1670     void VisitDoStmt(const DoStmt *) {
tools/clang/lib/Sema/TreeTransform.h
 6922 TreeTransform<Derived>::TransformDoStmt(DoStmt *S) {
tools/clang/lib/Serialization/ASTReaderStmt.cpp
  284 void ASTStmtReader::VisitDoStmt(DoStmt *S) {
 2549       S = new (Context) DoStmt(Empty);
tools/clang/lib/Serialization/ASTWriterStmt.cpp
  199 void ASTStmtWriter::VisitDoStmt(DoStmt *S) {
tools/clang/lib/StaticAnalyzer/Checkers/IdenticalExprChecker.cpp
  392     const DoStmt *DStmt1 = cast<DoStmt>(Stmt1);
  392     const DoStmt *DStmt1 = cast<DoStmt>(Stmt1);
  393     const DoStmt *DStmt2 = cast<DoStmt>(Stmt2);
  393     const DoStmt *DStmt2 = cast<DoStmt>(Stmt2);
tools/clang/lib/StaticAnalyzer/Checkers/MallocOverflowSecurityChecker.cpp
  251     void VisitDoStmt(DoStmt *S) {
tools/clang/lib/StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp
  156               if (isa<DoStmt>(Parent))
tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp
 1368       return cast<DoStmt>(S)->getCond() == Cond;
tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp
  342         HandleBranch(cast<DoStmt>(Term)->getCond(), Term, B, Pred);
tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
 1940           (isa<ForStmt>(Term) || isa<WhileStmt>(Term) || isa<DoStmt>(Term))))
tools/clang/lib/StaticAnalyzer/Core/LoopUnrolling.cpp
   72   return S && (isa<ForStmt>(S) || isa<WhileStmt>(S) || isa<DoStmt>(S));
tools/clang/lib/StaticAnalyzer/Core/LoopWidening.cpp
   37     return cast<DoStmt>(LoopStmt)->getCond();
tools/clang/tools/extra/clang-tidy/readability/BracesAroundStatementsCheck.cpp
  143   } else if (auto S = Result.Nodes.getNodeAs<DoStmt>("do")) {
tools/clang/tools/extra/clangd/refactor/tweaks/ExtractFunction.cpp
  417   return isa<ForStmt>(S) || isa<DoStmt>(S) || isa<WhileStmt>(S) ||
tools/clang/tools/extra/clangd/refactor/tweaks/ExtractVariable.cpp
  135              isa<DoStmt>(Stmt) || isa<ForStmt>(Stmt) || isa<IfStmt>(Stmt) ||
  350   if (const auto* DS = llvm::dyn_cast<DoStmt>(Outer))
  350   if (const auto* DS = llvm::dyn_cast<DoStmt>(Outer))
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
  326     : public __is_integral_helper<typename remove_cv<_Tp>::type>::type
  354     : public __is_floating_point_helper<typename remove_cv<_Tp>::type>::type
  381     : public __is_pointer_helper<typename remove_cv<_Tp>::type>::type
  567     : public __is_null_pointer_helper<typename remove_cv<_Tp>::type>::type
  581     : public __or_<is_lvalue_reference<_Tp>,
  582                    is_rvalue_reference<_Tp>>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  602                           is_void<_Tp>>>::type
  611     : public __or_<is_arithmetic<_Tp>, is_enum<_Tp>, is_pointer<_Tp>,
  611     : public __or_<is_arithmetic<_Tp>, is_enum<_Tp>, is_pointer<_Tp>,
  611     : public __or_<is_arithmetic<_Tp>, is_enum<_Tp>, is_pointer<_Tp>,
  612                    is_member_pointer<_Tp>, is_null_pointer<_Tp>>::type
  612                    is_member_pointer<_Tp>, is_null_pointer<_Tp>>::type
  631     : public __is_member_pointer_helper<typename remove_cv<_Tp>::type>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  777     : public __and_<is_array<_Tp>, __not_<extent<_Tp>>>
  777     : public __and_<is_array<_Tp>, __not_<extent<_Tp>>>
  798       typedef decltype(__test<_Tp>(0)) type;
  811                remove_all_extents<_Tp>::type>::type
  825     : public __is_destructible_safe<_Tp>::type
 1447     : public __and_<is_destructible<_Tp>, integral_constant<bool,
 1554     { typedef _Tp     type; };
 1558     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1580     { typedef _Tp const     type; };
 1629     { typedef _Tp   type; };
 1659     { typedef _Tp&&   type; };
 1955     { typedef _Tp     type; };
 1999     { typedef typename remove_reference<_Tp>::type*     type; };
 2003     : public __add_pointer_helper<_Tp>