Lines Matching refs:KindTy

364   using KeyTy = KindTy;
371 KindTy kind) { in construct()
376 KindTy getFKind() const { return kind; } in getFKind()
379 KindTy kind;
383 explicit CharacterTypeStorage(KindTy kind) : kind{kind} {} in CharacterTypeStorage()
411 using KeyTy = KindTy;
418 KindTy) { in construct()
425 explicit FieldTypeStorage(KindTy) {} in FieldTypeStorage()
430 using KeyTy = KindTy;
437 KindTy) { in construct()
444 explicit LenTypeStorage(KindTy) {} in LenTypeStorage()
449 using KeyTy = KindTy;
456 KindTy kind) { in construct()
461 KindTy getFKind() const { return kind; } in getFKind()
464 KindTy kind;
468 explicit LogicalTypeStorage(KindTy kind) : kind{kind} {} in LogicalTypeStorage()
473 using KeyTy = KindTy;
480 KindTy kind) { in construct()
485 KindTy getFKind() const { return kind; } in getFKind()
488 KindTy kind;
492 explicit IntTypeStorage(KindTy kind) : kind{kind} {} in IntTypeStorage()
497 using KeyTy = KindTy;
504 KindTy kind) { in construct()
509 KindTy getFKind() const { return kind; } in getFKind()
512 KindTy kind;
516 explicit CplxTypeStorage(KindTy kind) : kind{kind} {} in CplxTypeStorage()
521 using KeyTy = KindTy;
528 KindTy kind) { in construct()
533 KindTy getFKind() const { return kind; } in getFKind()
536 KindTy kind;
540 explicit RealTypeStorage(KindTy kind) : kind{kind} {} in RealTypeStorage()
580 using KeyTy = KindTy;
587 KindTy kind) { in construct()
592 KindTy getFKind() const { return kind; } in getFKind()
600 KindTy kind;
604 explicit BoxCharTypeStorage(KindTy kind) : kind{kind} {} in BoxCharTypeStorage()
868 CharacterType fir::CharacterType::get(mlir::MLIRContext *ctxt, KindTy kind) { in get()
896 LogicalType fir::LogicalType::get(mlir::MLIRContext *ctxt, KindTy kind) { in get()
904 IntType fir::IntType::get(mlir::MLIRContext *ctxt, KindTy kind) { in get()
912 CplxType fir::CplxType::get(mlir::MLIRContext *ctxt, KindTy kind) { in get()
920 KindTy fir::CplxType::getFKind() const { return getImpl()->getFKind(); } in getFKind()
924 RealType fir::RealType::get(mlir::MLIRContext *ctxt, KindTy kind) { in get()
953 BoxCharType fir::BoxCharType::get(mlir::MLIRContext *ctxt, KindTy kind) { in get()