Home
last modified time | relevance | path

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

/freebsd/contrib/googletest/googletest/include/gtest/
H A Dgtest-test-part.h70 : type_(a_type), in TestPartResult()
77 Type type() const { return type_; } in type()
96 bool skipped() const { return type_ == kSkip; } in skipped()
99 bool passed() const { return type_ == kSuccess; } in passed()
102 bool nonfatally_failed() const { return type_ == kNonFatalFailure; } in nonfatally_failed()
105 bool fatally_failed() const { return type_ == kFatalFailure; } in fatally_failed()
111 Type type_;
H A Dgtest-spi.h112 const TestPartResult::Type type_; variable
/freebsd/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/sys/contrib/openzfs/config/
H A Dkernel-types.m47 ZFS_LINUX_TEST_SRC([type_$1], [
17 ZFS_LINUX_TEST_RESULT([type_$1], [
/freebsd/contrib/kyua/model/
H A Dtest_result.cpp79 model::test_result::test_result(const test_result_type type_, in test_result() argument
81 _type(type_), in test_result()
/freebsd/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/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_mutex.cpp220 void CheckedMutex::LockImpl(uptr pc) { deadlock_detector.Lock(type_, pc); } in LockImpl()
222 void CheckedMutex::UnlockImpl() { deadlock_detector.Unlock(type_); } in UnlockImpl()
H A Dsanitizer_mutex.h122 : type_(type) in CheckedMutex()
149 const MutexType type_;
H A Dsanitizer_syscalls_netbsd.inc271 (void *type_, void *path_, long long flags_, void *data_) {
275 (long long res, void *type_, void *path_, long long flags_, void *data_) {
907 (long long domain_, long long type_, long long protocol_) {
911 (long long res, long long domain_, long long type_, long long protocol_) {
1197 (long long domain_, long long type_, long long protocol_, void *rsv_) {
1201 (long long res, long long domain_, long long type_, long long protocol_,
2874 (long long domain_, long long type_, long long protocol_) {
2878 (long long res, long long domain_, long long type_, long long protocol_) {
2974 (void *type_, void *path_, long long flags_, void *data_, long long data_len_) {
2975 const char *type = (const char *)type_;
[all …]
/freebsd/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/contrib/googletest/googletest/src/
H A Dgtest-port.cc307 type_(kDynamic), in Mutex()
316 if (type_ == kDynamic) { in ~Mutex()
384 if (type_ == kStatic) { in ThreadSafeLazyInit()
H A Dgtest.cc1039 : results_(results), type_(type), substr_(substr) {} in SingleFailureChecker()
1046 EXPECT_PRED_FORMAT3(HasOneFailure, *results_, type_, substr_); in ~SingleFailureChecker()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMips32r6InstrFormats.td607 bits<2> type_;
612 let Inst{9-8} = type_;
H A DMips32r6InstrInfo.td849 dag InOperandList = (ins GPROpnd:$rs, uimm2:$type_);
850 string AsmString = !strconcat(instr_asm, "\t$rs, $type_");
857 bits<2> type_ = 0b00;
/freebsd/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h1451 MutexType type_;