Searched refs:OtherKind (Results 1 – 14 of 14) sorted by relevance
/external/llvm-project/flang/include/flang/Semantics/ |
D | symbol.h | 400 ENUM_CLASS(OtherKind, Name, DefinedOp, Assignment, Concat) in ENUM_CLASS() 403 GenericKind() : u{OtherKind::Name} {} in ENUM_CLASS() 405 bool IsName() const { return Is(OtherKind::Name); } in IsName() 406 bool IsAssignment() const { return Is(OtherKind::Assignment); } in IsAssignment() 407 bool IsDefinedOperator() const { return Is(OtherKind::DefinedOp); } in IsDefinedOperator() 411 std::variant<OtherKind, common::NumericOperator, common::LogicalOperator, 419 bool Is(OtherKind) const;
|
/external/llvm-project/flang/lib/Semantics/ |
D | symbol.cpp | 611 return Is(OtherKind::Concat) || Has<common::LogicalOperator>() || in IsIntrinsicOperator() 622 [](const OtherKind &x) { return EnumToString(x); }, in ToString() 641 bool GenericKind::Is(GenericKind::OtherKind x) const { in Is() 642 const OtherKind *y{std::get_if<OtherKind>(&u)}; in Is()
|
D | resolve-names-utils.cpp | 119 kind_ = GenericKind::OtherKind::DefinedOp; in Analyze() 131 return GenericKind::OtherKind::Name; in Analyze() 138 return GenericKind::OtherKind::DefinedOp; in Analyze() 147 return GenericKind::OtherKind::Assignment; in Analyze() 170 return GenericKind::OtherKind::Concat; in MapIntrinsicOperator()
|
D | check-declarations.cpp | 1049 [&](GenericKind::OtherKind x) { in ConflictsWithIntrinsicOperator() 1050 CHECK(x == GenericKind::OtherKind::Concat); in ConflictsWithIntrinsicOperator() 1113 [](const GenericKind::OtherKind &x) { in CheckNumberOfArgs() 1114 CHECK(x == GenericKind::OtherKind::Concat); in CheckNumberOfArgs()
|
D | runtime-type-info.cpp | 818 [&](const GenericKind::OtherKind &k) { in DescribeGeneric() 819 if (k == GenericKind::OtherKind::Assignment) { in DescribeGeneric()
|
/external/llvm-project/lld/COFF/ |
D | Chunks.h | 57 enum Kind : uint8_t { SectionKind, OtherKind, ImportThunkKind }; enumerator 120 Chunk(Kind k = OtherKind) : chunkKind(k), hasData(true), p2Align(0) {} in chunkKind() 176 NonSectionChunk(Kind k = OtherKind) : Chunk(k) {} in Chunk()
|
/external/clang/lib/AST/ |
D | Comment.cpp | 133 Kind = OtherKind; in fill()
|
/external/llvm-project/clang/lib/AST/ |
D | Comment.cpp | 208 Kind = OtherKind; in fill()
|
/external/llvm-project/clang/include/clang/AST/ |
D | Comment.h | 1012 OtherKind, enumerator
|
/external/clang/include/clang/AST/ |
D | Comment.h | 1018 OtherKind, enumerator
|
/external/llvm-project/clang/lib/Index/ |
D | CommentToXML.cpp | 826 case DeclInfo::OtherKind: in visitFullComment()
|
/external/clang/lib/Index/ |
D | CommentToXML.cpp | 829 case DeclInfo::OtherKind: in visitFullComment()
|
/external/clang/lib/Sema/ |
D | SemaChecking.cpp | 9076 void checkUsage(Object O, UsageInfo &UI, Expr *Ref, UsageKind OtherKind, in checkUsage() argument 9081 const Usage &U = UI.Uses[OtherKind]; in checkUsage() 9087 if (OtherKind == UK_Use) in checkUsage()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaChecking.cpp | 13178 UsageKind OtherKind, bool IsModMod) { in checkUsage() argument 13182 const Usage &U = UI.Uses[OtherKind]; in checkUsage() 13188 if (OtherKind == UK_Use) in checkUsage()
|