Searched refs:key_ (Results 1 - 6 of 6) sorted by relevance

/gem5/ext/dsent/libutil/
H A DMap.h56 bool keyExist(const String& key_) const;
57 // Get the value_ corresponding to the key_
58 const T& get(const String& key_) const;
59 // Get the value_ corresponding to the key_ if the key_ exist, otherwise, the default_value_is returned
60 const T& getIfKeyExist(const String& key_, const T& default_value_ = T()) const;
61 // Add/Update a <key_, value_> entry
62 void set(const String& key_, const T& value_);
64 Iterator find(const String& key_);
65 ConstIterator find(const String& key_) cons
133 getIfKeyExist(const String& key_, const T& default_value_) const argument
145 set(const String& key_, const T& value_) argument
151 find(const String& key_) argument
161 remove(const String& key_) argument
[all...]
/gem5/ext/dsent/tech/
H A DTechModel.h49 // Get the value_ corresponding to the key_
50 const String& get(const String& key_) const;
H A DTechModel.cc37 const String& TechModel::get(const String &key_) const
39 return params.at(key_);
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h2033 : key_(CreateKey()), default_factory_(new DefaultValueHolderFactory()) {}
2035 : key_(CreateKey()),
2040 DeleteThreadLocalValue(pthread_getspecific(key_));
2044 GTEST_CHECK_POSIX_SUCCESS_(pthread_key_delete(key_));
2077 static_cast<ThreadLocalValueHolderBase*>(pthread_getspecific(key_));
2084 GTEST_CHECK_POSIX_SUCCESS_(pthread_setspecific(key_, holder_base));
2121 const pthread_key_t key_; member in class:testing::internal::ThreadLocal
/gem5/ext/googletest/googletest/src/
H A Dgtest-internal-inl.h352 explicit TestPropertyKeyIs(const std::string& key) : key_(key) {}
354 // Returns true iff the test name of test property matches on key_.
356 return test_property.key() == key_;
360 std::string key_; member in class:testing::internal::TestPropertyKeyIs
/gem5/ext/googletest/googletest/include/gtest/
H A Dgtest.h492 key_(a_key), value_(a_value) {
497 return key_.c_str();
512 std::string key_; member in class:testing::TestProperty

Completed in 30 milliseconds