Searched refs:Polymorphic (Results 1 – 8 of 8) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/ |
| H A D | WebAssemblyAsmTypeCheck.cpp | 72 assert(!std::get_if<Polymorphic>(&TypeA) && in match() 73 !std::get_if<Polymorphic>(&TypeB)); in match() 93 if (std::get_if<Polymorphic>(&Types[I - 1])) { in getTypesString() 153 if (std::get_if<Polymorphic>(&Stack[StackI - 1])) { in checkTypes() 165 std::get_if<Polymorphic>(&Stack[StackI - 1])) in checkTypes() 205 if (std::get_if<Polymorphic>(&Stack.back())) in popTypes() 601 pushType(Polymorphic{}); in typeCheck() 607 pushType(Polymorphic{}); in typeCheck() 617 pushType(Polymorphic{}); in typeCheck() 632 pushType(Polymorphic{}); in typeCheck() [all …]
|
| H A D | WebAssemblyAsmTypeCheck.h | 34 struct Polymorphic : public std::monostate {}; struct 35 using StackType = std::variant<wasm::ValType, Ref, Any, Polymorphic>;
|
| /freebsd/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | MveEmitter.cpp | 1797 for (bool Polymorphic : {false, true}) { in EmitHeader() 1798 if (Polymorphic && !Int.polymorphic()) in EmitHeader() 1800 if (!Polymorphic && Int.polymorphicOnly()) in EmitHeader() 1820 Polymorphic ? Int.shortName() : Int.fullName(); in EmitHeader() 1885 << (Polymorphic ? "__overloadable__, " : "") in EmitHeader() 2082 for (bool Polymorphic : {false, true}) { in EmitHeader() 2083 if (Polymorphic && !Int.polymorphic()) in EmitHeader() 2085 if (!Polymorphic && Int.polymorphicOnly()) in EmitHeader() 2094 "__arm_" + (Polymorphic ? Int.shortName() : Int.fullName()); in EmitHeader() 2111 << (Polymorphic ? "__overloadable__, " : "") in EmitHeader()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | CXXRecordDeclDefinitionBits.def | 57 FIELD(Polymorphic, 1, NO_MERGE)
|
| H A D | DeclCXX.h | 584 return data().Polymorphic || data().NumVBases != 0; in isDynamicClass() 1223 bool isPolymorphic() const { return data().Polymorphic; } in isPolymorphic()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | DeclCXX.cpp | 78 Aggregate(true), PlainOldData(true), Empty(true), Polymorphic(false), in DefinitionData() 279 data().Polymorphic = true; in setBases() 796 data().Polymorphic = true; in addedMember() 2301 if (data().Abstract || isInvalidDecl() || !data().Polymorphic || in mayBeAbstract()
|
| H A D | ExprConstant.cpp | 6041 AccessKinds AK, bool Polymorphic) { in checkDynamicType() argument 6061 } else if (Polymorphic) { in checkDynamicType()
|
| /freebsd/contrib/googletest/docs/ |
| H A D | gmock_cook_book.md | 3668 ### Writing New Polymorphic Matchers 4267 ### Writing New Polymorphic Actions {#NewPolyActions}
|