Home
last modified time | relevance | path

Searched refs:type_ (Results 1 – 15 of 15) sorted by relevance

/freebsd-13.1/contrib/googletest/googletest/include/gtest/
H A Dgtest-test-part.h67 : type_(a_type), in TestPartResult()
75 Type type() const { return type_; } in type()
94 bool skipped() const { return type_ == kSkip; } in skipped()
97 bool passed() const { return type_ == kSuccess; } in passed()
100 bool nonfatally_failed() const { return type_ == kNonFatalFailure; } in nonfatally_failed()
103 bool fatally_failed() const { return type_ == kFatalFailure; } in fatally_failed()
109 Type type_;
H A Dgtest-spi.h108 const TestPartResult::Type type_; variable
/freebsd-13.1/contrib/kyua/engine/
H A Datf_result.cpp245 engine::atf_result::atf_result(const types type_) : in atf_result() argument
246 _type(type_) in atf_result()
257 engine::atf_result::atf_result(const types type_, const std::string& reason_) : in atf_result() argument
258 _type(type_), _reason(reason_) in atf_result()
268 engine::atf_result::atf_result(const types type_, in atf_result() argument
271 _type(type_), _argument(argument_), _reason(reason_) in atf_result()
/freebsd-13.1/contrib/kyua/model/
H A Dtest_result.cpp43 model::test_result::test_result(const test_result_type type_, in test_result() argument
45 _type(type_), in test_result()
/freebsd-13.1/contrib/kyua/utils/text/
H A Dtemplates.cpp101 type_descriptor(const statement_type type_, in type_descriptor()
103 : type(type_), n_arguments(n_arguments_) in type_descriptor()
150 statement_def(const statement_type& type_, in statement_def() argument
152 type(type_), arguments(arguments_) in statement_def()
158 if (descriptor.type == type_) { in statement_def()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_mutex.cpp218 void CheckedMutex::LockImpl(uptr pc) { deadlock_detector.Lock(type_, pc); } in LockImpl()
220 void CheckedMutex::UnlockImpl() { deadlock_detector.Unlock(type_); } in UnlockImpl()
H A Dsanitizer_syscalls_netbsd.inc271 (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 …]
H A Dsanitizer_mutex.h116 : type_(type) in CheckedMutex()
143 const MutexType type_;
/freebsd-13.1/contrib/googletest/googlemock/scripts/
H A Dgmock_doctor.py506 type_ = m.groupdict()['type']
507 if type_ not in _COMMON_GMOCK_SYMBOLS:
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A Darm_mve_defs.td34 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_;
/freebsd-13.1/contrib/googletest/googletest/src/
H A Dgtest-port.cc255 type_(kDynamic), in Mutex()
267 if (type_ == kDynamic) { in ~Mutex()
337 if (type_ == kStatic) { in ThreadSafeLazyInit()
H A Dgtest.cc720 : results_(results), type_(type), substr_(substr) {} in SingleFailureChecker()
727 EXPECT_PRED_FORMAT3(HasOneFailure, *results_, type_, substr_); in ~SingleFailureChecker()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMips32r6InstrFormats.td596 bits<2> type_;
601 let Inst{9-8} = type_;
H A DMips32r6InstrInfo.td835 dag InOperandList = (ins GPROpnd:$rs, uimm2:$type_);
836 string AsmString = !strconcat(instr_asm, "\t$rs, $type_");
/freebsd-13.1/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h1827 MutexType type_;