| /llvm-project-15.0.7/compiler-rt/lib/tsan/tests/rtl/ |
| H A D | tsan_test_util_posix.cpp | 101 if (type_ == Normal) in Init() 107 else if (type_ == RW) in Init() 124 if (type_ == Normal) in Destroy() 130 else if (type_ == RW) in Destroy() 136 if (type_ == Normal) in Lock() 142 else if (type_ == RW) in Lock() 148 if (type_ == Normal) in TryLock() 161 if (type_ == Normal) in Unlock() 173 CHECK(type_ == RW); in ReadLock() 179 CHECK(type_ == RW); in TryReadLock() [all …]
|
| H A D | tsan_test_util.h | 67 const Type type_; variable
|
| /llvm-project-15.0.7/llvm/utils/unittest/googletest/include/gtest/ |
| H A D | gtest-test-part.h | 69 : type_(a_type), in TestPartResult() 76 Type type() const { return type_; } in type() 95 bool skipped() const { return type_ == kSkip; } in skipped() 98 bool passed() const { return type_ == kSuccess; } in passed() 101 bool nonfatally_failed() const { return type_ == kNonFatalFailure; } in nonfatally_failed() 104 bool fatally_failed() const { return type_ == kFatalFailure; } in fatally_failed() 110 Type type_;
|
| H A D | gtest-spi.h | 108 const TestPartResult::Type type_; variable
|
| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | windows-arm-valist.cpp | 9 template <typename type_> 10 struct is_same<type_, type_> { enum { value = 1 }; };
|
| /llvm-project-15.0.7/flang/lib/Semantics/ |
| H A D | check-allocate.cpp | 43 type_{symbol_ ? symbol_->GetType() : nullptr}, 75 if (type_->category() == DeclTypeSpec::Category::Character) { in GatherAllocationBasicInfo() 77 type_->characterTypeSpec().length().isDeferred(); in GatherAllocationBasicInfo() 78 } else if (const DerivedTypeSpec * derivedTypeSpec{type_->AsDerived()}) { in GatherAllocationBasicInfo() 85 type_->category() == DeclTypeSpec::Category::ClassStar; in GatherAllocationBasicInfo() 92 const DeclTypeSpec *type_{nullptr}; member in Fortran::semantics::AllocationCheckerHelper 417 if (!type_) { in RunChecks() 451 if (!IsTypeCompatible(*type_, *allocateInfo_.typeSpec)) { in RunChecks() 457 if (!HaveCompatibleKindParameters(*type_, *allocateInfo_.typeSpec)) { in RunChecks() 463 if (!HaveSameAssumedTypeParameters(*type_, *allocateInfo_.typeSpec)) { in RunChecks() [all …]
|
| H A D | symbol.cpp | 132 CHECK(!type_); in set_type() 133 type_ = &type; in set_type() 137 void EntityDetails::ReplaceType(const DeclTypeSpec &type) { type_ = &type; } in ReplaceType() 656 CHECK(!type_); in set_type() 657 type_ = &type; in set_type()
|
| H A D | expression.cpp | 1312 if (type_ && type_->category() == T::category) { in Test() 1320 if (auto len{type_->LEN()}) { in Test() 1360 bool explicitType_{type_.has_value()}; 1370 if (!type_) { in Push() 1386 if (!type_) { in Push() 1399 dyType = *type_; in Push() 1430 if (!type_) { in Push() 1439 type_ = std::move(xType); in Push() 1443 if (type_->IsTkCompatibleWith(xType) && xType.IsTkCompatibleWith(*type_)) { in Push() 1465 type_->length = xType.LEN(); in Push() [all …]
|
| H A D | type.cpp | 796 CHECK(!type_); in set_symbol() 801 type_ = &type; in set_type()
|
| /llvm-project-15.0.7/flang/lib/Evaluate/ |
| H A D | initial-image.cpp | 76 : context_{context}, type_{type}, image_{image}, extents_{extents}, in AsConstantHelper() 81 if (T::category != type_.category()) { in Test() 85 if (T::kind != type_.kind()) { in Test() 94 ToInt64(type_.MeasureSizeInBytes(context_, GetRank(extents_) > 0))}; in Test() 99 const semantics::DerivedTypeSpec &derived{type_.GetDerivedTypeSpec()}; in Test() 182 const DynamicType &type_; member in Fortran::evaluate::AsConstantHelper
|
| H A D | characteristics.cpp | 60 return type_ == that.type_ && ShapesAreCompatible(shape_, that.shape_) && in operator ==() 155 if (!type_.IsTkCompatibleWith(that.type_)) { in IsCompatibleWith() 169 CHECK(type_.category() == TypeCategory::Character); in MeasureElementSizeInBytes() 173 type_.category(), type_.kind())} * in MeasureElementSizeInBytes() 176 if (auto elementBytes{type_.MeasureSizeInBytes(foldingContext, align)}) { in MeasureElementSizeInBytes() 219 if (auto len{type_.GetCharLength()}) { in AcquireLEN() 225 if (type_.category() == TypeCategory::Character) { in AcquireLEN() 233 return type_.AsFortran(LEN_ ? LEN_->AsFortran() : ""); in AsFortran() 237 o << type_.AsFortran(LEN_ ? LEN_->AsFortran() : ""); in Dump()
|
| H A D | fold-integer.cpp | 266 : type_{type}, arg_{arg}, context_{context} {} in LocationHelper() 272 if (T::category != type_.category() || T::kind != type_.kind()) { in Test() 429 DynamicType type_; member in Fortran::evaluate::LocationHelper
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/limit-debug-info/ |
| H A D | TestLimitDebugInfo.py | 16 type_ = exe.FindFirstType(name) 17 self.trace("type_: %s"%type_) 18 self.assertTrue(type_) 19 base = type_.GetDirectBaseClassAtIndex(0).GetType()
|
| /llvm-project-15.0.7/flang/include/flang/Evaluate/ |
| H A D | characteristics.h | 64 explicit TypeAndShape(DynamicType t) : type_{t} { AcquireLEN(); } in TypeAndShape() 65 TypeAndShape(DynamicType t, int rank) : type_{t}, shape_(rank) { in TypeAndShape() 68 TypeAndShape(DynamicType t, Shape &&s) : type_{t}, shape_{std::move(s)} { in TypeAndShape() 71 TypeAndShape(DynamicType t, std::optional<Shape> &&s) : type_{t} { in TypeAndShape() 133 DynamicType type() const { return type_; } in type() 135 type_ = t; in set_type() 173 DynamicType type_;
|
| /llvm-project-15.0.7/clang/test/CodeGenCXX/ |
| H A D | auto-var-init.cpp | 21 using type_##NAME = TYPE; \ 23 type_##NAME uninit; \ 29 using type_##NAME = TYPE; \ 31 type_##NAME braces = {}; \ 36 using type_##NAME = TYPE; \ 38 type_##NAME custom __VA_ARGS__; \
|
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_mutex.cpp | 218 void CheckedMutex::LockImpl(uptr pc) { deadlock_detector.Lock(type_, pc); } in LockImpl() 220 void CheckedMutex::UnlockImpl() { deadlock_detector.Unlock(type_); } in UnlockImpl()
|
| H A D | sanitizer_mutex.h | 122 : type_(type) in CheckedMutex() 149 const MutexType type_;
|
| H A D | sanitizer_syscalls_netbsd.inc | 271 (void *type_, void *path_, long long flags_, void *data_) { 907 (long long domain_, long long type_, long long protocol_) { 2874 (long long domain_, long long type_, long long protocol_) { 2975 const char *type = (const char *)type_; 2990 const char *type = (const char *)type_; 3857 (long long res, void *path_, long long type_, void *aclp_) { 3864 (long long res, void *path_, long long type_, void *aclp_) { 3875 (long long res, void *path_, long long type_, void *aclp_) { 3882 (long long res, void *path_, long long type_, void *aclp_) { 3912 (long long res, long long filedes_, long long type_) { [all …]
|
| /llvm-project-15.0.7/clang/include/clang/Basic/ |
| H A D | arm_mve_defs.td | 34 class IRBuilderIntParam<int index_, string type_> : IRBuilderParam<index_> { 35 string type = type_; 213 class CustomCodegen<string type_> { string type = type_; } 352 class Immediate<Type type_, ImmediateBounds bounds_>: Type { 353 Type type = type_; 364 class IB_EltBit<int base_, Type type_ = Scalar> : ImmediateBounds { 366 Type type = type_;
|
| /llvm-project-15.0.7/flang/include/flang/Semantics/ |
| H A D | symbol.h | 150 const DeclTypeSpec *type() const { return type_; } in type() 161 const DeclTypeSpec *type_{nullptr}; 382 const DeclTypeSpec *type() const { return type_; } in type() 389 const DeclTypeSpec *type_{nullptr};
|
| H A D | type.h | 399 const DeclTypeSpec *type() const { return type_; } in type() 405 const DeclTypeSpec *type_{nullptr};
|
| /llvm-project-15.0.7/llvm/utils/unittest/googletest/src/ |
| H A D | gtest-port.cc | 342 type_(kDynamic), in Mutex() 351 if (type_ == kDynamic) { in ~Mutex() 419 if (type_ == kStatic) { in ThreadSafeLazyInit()
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-objcopy/MachO/Inputs/ |
| H A D | code-signature-check.py | 171 type_: int
|
| /llvm-project-15.0.7/lld/test/MachO/Inputs/ |
| H A D | code-signature-check.py | 171 type_: int
|
| /llvm-project-15.0.7/llvm/lib/Target/Mips/ |
| H A D | Mips32r6InstrFormats.td | 596 bits<2> type_; 601 let Inst{9-8} = type_;
|