Searched refs:name_ (Results 1 - 23 of 23) sorted by relevance

/freebsd-13-stable/contrib/googletest/googletest/xcode/Samples/FrameworkSample/
H A Dwidget.cc42 name_(name) {}
55 return name_;
59 // Copy the char* representation of name_ into buffer, up to max_size.
60 strncpy(buffer, name_.c_str(), max_size-1);
H A Dwidget.h58 std::string name_; member in class:Widget
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMips16HardFloatInfo.cpp38 const char *name_; local
41 name_ = PredefinedFuncs[i].Name;
42 if (strcmp(name, name_) == 0)
/freebsd-13-stable/contrib/kyua/model/
H A Dtest_case.cpp65 /// \param name_ The name of the test case within the test program.
70 impl(const std::string& name_, argument
74 name(name_),
123 /// \param name_ The name of the test case within the test program.
125 model::test_case::test_case(const std::string& name_, argument
127 _pimpl(new impl(name_, NULL, md_, none))
147 /// \param name_ The name to give to this fake test case. This name has to be
152 const std::string& name_,
156 name_,
161 PRE_MSG(name_
151 test_case( const std::string& name_, const std::string& description_, const model::test_result& test_result_) argument
[all...]
/freebsd-13-stable/contrib/kyua/utils/cmdline/
H A Dbase_command.cpp41 /// \param name_ The name of the command. Must be unique within the context of
49 cmdline::command_proto::command_proto(const std::string& name_, argument
54 _name(name_),
60 PRE(name_.find(' ') == std::string::npos);
160 /// \param name_ The name of the command. Must be unique within the context of
169 const std::string& name_,
174 command_proto(name_, arg_list_, min_args_, max_args_, short_description_)
168 base_command_no_data( const std::string& name_, const std::string& arg_list_, const int min_args_, const int max_args_, const std::string& short_description_) argument
/freebsd-13-stable/contrib/kyua/utils/fs/
H A Ddirectory.cpp54 /// \param name_ Name of the directory entry.
55 fs::directory_entry::directory_entry(const std::string& name_) : name(name_) argument
/freebsd-13-stable/contrib/kyua/utils/sqlite/
H A Dexceptions.cpp152 /// \param name_ The name of the unknown column.
155 const std::string& name_) :
156 error(db_filename_, F("Unknown column '%s'") % name_),
157 _column_name(name_)
153 invalid_column_error( const optional< fs::path >& db_filename_, const std::string& name_) argument
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_dense_alloc.h51 name_ = name;
99 const char *name_; member in class:__tsan::DenseSlabAlloc
106 name_, kL1Size, kL2Size);
110 name_, fillpos_, kL1Size, kL2Size);
111 T *batch = (T*)MmapOrDie(kL2Size * sizeof(T), name_);
/freebsd-13-stable/contrib/googletest/googletest/test/
H A Dgoogletest-listener-test.cc57 explicit EventRecordingListener(const char* name) : name_(name) {}
122 return name_ + "." + name;
125 std::string name_; member in class:testing::internal::EventRecordingListener
/freebsd-13-stable/contrib/kyua/utils/
H A Dpasswd.cpp76 /// \param name_ The name of the user.
79 passwd_ns::user::user(const std::string& name_, const unsigned int uid_, argument
81 name(name_),
/freebsd-13-stable/contrib/kyua/cli/
H A Dcmd_help_test.cpp70 /// \param name_ The name of the command to create.
71 cmd_mock_simple(const char* name_) : cli::cli_command( argument
72 name_, "", 0, 0, "Simple command")
97 /// \param name_ The name of the command to create.
98 cmd_mock_complex(const char* name_) : cli::cli_command( argument
99 name_, "[arg1 .. argN]", 0, 2, "Complex command")
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_syscalls_netbsd.inc438 PRE_SYSCALL(accept)(long long s_, void *name_, void *anamelen_) {
439 PRE_WRITE(name_, struct_sockaddr_sz);
443 (long long res, long long s_, void *name_, void *anamelen_) {
445 POST_WRITE(name_, struct_sockaddr_sz);
849 PRE_SYSCALL(compat_12_oswapon)(void *name_) { /* TODO */ }
850 POST_SYSCALL(compat_12_oswapon)(long long res, void *name_) { /* TODO */ }
908 PRE_SYSCALL(connect)(long long s_, void *name_, long long namelen_) {
909 PRE_READ(name_, namelen_);
912 (long long res, long long s_, void *name_, long long namelen_) {
914 POST_READ(name_, namelen
[all...]
H A Dsanitizer_fuchsia.cpp229 name_ = name;
267 name_, false);
273 name_, true);
H A Dsanitizer_posix_libcdep.cpp347 name_ = name;
H A Dsanitizer_common.h156 const char* name_; member in class:__sanitizer::ReservedAddressRange
H A Dsanitizer_win.cpp305 name_ = name;
/freebsd-13-stable/contrib/tcsh/
H A Dtc.os.c1524 name_$wdir_type,
1525 name_$ndir_type,
1526 name_$node_dir_type,
1527 } name_$dir_type_t;
1533 name_$dir_type_t dirtype = name_$node_dir_type;
1544 name_$resolve(name, &namelen, &uid, &st);
1548 name_$set_diru(&uid, "", &namelen, &dirtype, &st);
/freebsd-13-stable/contrib/googletest/googlemock/src/
H A Dgmock-spec-builders.cc304 : mock_obj_(NULL), name_("") {}
327 // We protect name_ under g_gmock_mutex in case this mock function
331 name_ = name;
357 // We protect name_ under g_gmock_mutex in case this mock
360 Assert(name_ != NULL, __FILE__, __LINE__,
363 name = name_;
/freebsd-13-stable/contrib/llvm-project/libcxx/src/
H A Dlocale.cpp170 string name_; member in class:locale::__imp
180 const string& name() const {return name_;}
196 name_("C")
232 name_(name)
242 install(new collate_byname<char>(name_));
243 install(new collate_byname<wchar_t>(name_));
244 install(new ctype_byname<char>(name_));
245 install(new ctype_byname<wchar_t>(name_));
246 install(new codecvt_byname<char, char, mbstate_t>(name_));
247 install(new codecvt_byname<wchar_t, char, mbstate_t>(name_));
[all...]
/freebsd-13-stable/contrib/googletest/googletest/include/gtest/
H A Dgtest.h698 const char* name() const { return name_.c_str(); }
798 const std::string name_; // Test name member in class:testing::TestInfo
847 const char* name() const { return name_.c_str(); }
986 std::string name_; member in class:testing::TestCase
/freebsd-13-stable/contrib/googletest/googletest/src/
H A Dgtest.cc2573 name_(a_name),
2659 : name_(name) {}
2661 // Returns true iff the test name of test_info matches name_.
2663 return test_info && test_info->name() == name_;
2667 std::string name_; member in class:testing::__anon838::TestNameIs
2787 : name_(a_name),
5086 : name_(name) {}
5088 // Returns true iff the name of test_case matches name_.
5090 return test_case != NULL && strcmp(test_case->name(), name_.c_str()) == 0;
5094 std::string name_; member in class:testing::internal::TestCaseNameIs
[all...]
/freebsd-13-stable/contrib/googletest/googlemock/include/gmock/
H A Dgmock-spec-builders.h235 const char* name_; // Protected by g_gmock_mutex. member in class:testing::internal::UntypedFunctionMockerBase
/freebsd-13-stable/contrib/bsnmp/tests/
H A Dcatch.hpp958 NameAndTags( StringRef const& name_ = StringRef(), StringRef const& tags_ = StringRef() ) noexcept;
14297 NameAndTags::NameAndTags( StringRef const& name_ , StringRef const& tags_ ) noexcept : name( name_ ), tags( tags_ ) {}

Completed in 255 milliseconds