Home
last modified time | relevance | path

Searched refs:KeyType (Results 1 – 16 of 16) sorted by relevance

/llvm-project-15.0.7/lldb/include/lldb/DataFormatters/
H A DTypeCategoryMap.h30 typedef ConstString KeyType; typedef
33 typedef std::map<KeyType, ValueSP> MapType;
45 void Add(KeyType name, const ValueSP &entry);
47 bool Delete(KeyType name);
49 bool Enable(KeyType category_name, Position pos = Default);
51 bool Disable(KeyType category_name);
63 bool Get(KeyType name, ValueSP &entry);
/llvm-project-15.0.7/clang/test/SemaCXX/
H A DPR11358.cpp29 template <typename KeyType, typename ValueType>
30 void MapTest(hash_map<KeyType, ValueType> map) { in MapTest() argument
31 …for (hash_map<KeyType, ValueType>::const_iterator it = map.begin(); // expected-error{{missing 'ty… in MapTest()
/llvm-project-15.0.7/lldb/source/DataFormatters/
H A DTypeCategoryMap.cpp27 void TypeCategoryMap::Add(KeyType name, const ValueSP &entry) { in Add()
34 bool TypeCategoryMap::Delete(KeyType name) { in Delete()
46 bool TypeCategoryMap::Enable(KeyType category_name, Position pos) { in Enable()
54 bool TypeCategoryMap::Disable(KeyType category_name) { in Disable()
133 bool TypeCategoryMap::Get(KeyType name, ValueSP &entry) { in Get()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DMappedHash.h143 typedef __KeyType KeyType; typedef
157 KeyType key;
258 virtual const char *GetStringForKeyType(KeyType key) const = 0;
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/performance/
H A DInefficientAlgorithmCheck.cpp78 QualType KeyType = in check() local
80 const bool CompatibleTypes = areTypesCompatible(KeyType, ValueType); in check()
/llvm-project-15.0.7/clang/test/SemaObjCXX/
H A Doverload.mm178 @interface NSDictionary<__covariant KeyType, __covariant ObjectType> : A
181 @interface NSMutableDictionary<KeyType, ObjectType> : NSDictionary<KeyType, ObjectType>
/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DIntervalMap.h963 using KeyType = KeyT; variable
2072 using KeyType = typename MapA::KeyType; variable
2129 KeyType start() const { in start()
2130 KeyType ak = a().start(); in start()
2131 KeyType bk = b().start(); in start()
2136 KeyType stop() const { in stop()
2137 KeyType ak = a().stop(); in stop()
2138 KeyType bk = b().stop(); in stop()
2166 void advanceTo(KeyType x) { in advanceTo()
/llvm-project-15.0.7/llvm/docs/TableGen/
H A DBackEnds.rst774 struct KeyType {
778 KeyType Key = { Val1, Val2 };
781 [](const AEntry &LHS, const KeyType &RHS) {
849 struct KeyType {
852 KeyType Key = { Encoding };
855 [](const CEntry &LHS, const KeyType &RHS) {
898 struct KeyType {
946 struct KeyType {
950 KeyType Key = { Name.upper(), Kind };
953 [](const IndexType &LHS, const KeyType &RHS) {
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/google/
H A Dobjc-avoid-nsobject-new.m18 @interface NSMutableDictionary<__covariant KeyType, __covariant ObjectType> : NSObject
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/
H A DHashedNameToDIE.h130 const char *GetStringForKeyType(KeyType key) const override;
H A DHashedNameToDIE.cpp313 DWARFMappedHash::MemoryTable::GetStringForKeyType(KeyType key) const { in GetStringForKeyType()
504 KeyType key = m_data.GetU32(&hash_data_offset); in AppendAllDIEsInRange()
/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A Dllvm-readobj.cpp269 SortSymbolKeyTy KeyType = StringSwitch<SortSymbolKeyTy>(KeyStr) in parseOptions() local
273 if (KeyType == SortSymbolKeyTy::UNKNOWN) in parseOptions()
276 opts::SortKeys.push_back(KeyType); in parseOptions()
/llvm-project-15.0.7/clang/test/SemaObjC/
H A Dparameterized_classes_subst.m439 @interface MyMutableDictionary<KeyType, ObjectType> : NSObject
440 - (void)setObject:(ObjectType)obj forKeyedSubscript:(KeyType <NSCopying>)key; // expected-note{{pas…
/llvm-project-15.0.7/llvm/docs/
H A DSourceLevelDebugging.rst1648 how the string value is stored ("``KeyType``") and the content of the data for each
1803 The KeyType for the DWARF table is a 32 bit string table offset into the
1827 | 0x00001023 | uint32_t KeyType (.debug_str[0x0001023] => "main")
1833 | 0x00000000 | uint32_t KeyType (end of hash chain)
1841 | 0x00001023 | uint32_t KeyType (.debug_str[0x0001023] => "main")
1847 | 0x00002023 | uint32_t KeyType (.debug_str[0x0002023] => "print")
1851 | 0x00000000 | uint32_t KeyType (end of hash chain)
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DNewGVN.cpp843 template <typename Map, typename KeyType>
844 void touchAndErase(Map &, const KeyType &);
2042 template <typename Map, typename KeyType>
2043 void NewGVN::touchAndErase(Map &M, const KeyType &Key) { in touchAndErase()
/llvm-project-15.0.7/llvm/utils/unittest/googlemock/include/gmock/
H A Dgmock-matchers.h2540 typedef typename RawPairType::first_type KeyType;
2545 testing::SafeMatcherCast<const KeyType&>(inner_matcher)) {
2575 const Matcher<const KeyType&> inner_matcher_;