Home
last modified time | relevance | path

Searched refs:key (Results 1 – 25 of 915) sorted by relevance

12345678910>>...37

/llvm-project-15.0.7/clang/test/Analysis/Inputs/expected-plists/
H A Dmalloc-plist.c.plist4 <key>edges</key>
7 <key>start</key>
20 <key>end</key>
38 <key>location</key>
44 <key>ranges</key>
62 <key>message</key>
67 <key>edges</key>
228 <key>0</key>
240 <key>path</key>
405 <key>0</key>
[all …]
H A Dlambda-notes.cpp.plist4 <key>edges</key>
7 <key>start</key>
20 <key>end</key>
38 <key>location</key>
44 <key>ranges</key>
62 <key>message</key>
67 <key>location</key>
73 <key>ranges</key>
110 <key>edges</key>
189 <key>0</key>
[all …]
/llvm-project-15.0.7/clang/test/Analysis/copypaste/Inputs/expected-plists/
H A DMismatchedDeallocator-path-notes.cpp.plist4 <key>edges</key>
7 <key>start</key>
20 <key>end</key>
38 <key>location</key>
44 <key>ranges</key>
62 <key>message</key>
76 <key>message</key>
81 <key>edges</key>
97 <key>end</key>
286 <key>0</key>
[all …]
/llvm-project-15.0.7/clang/test/Analysis/diagnostics/Inputs/expected-plists/
H A Dplist-multi-file.c.plist4 <key>location</key>
10 <key>ranges</key>
28 <key>message</key>
33 <key>location</key>
39 <key>ranges</key>
57 <key>message</key>
76 <key>edges</key>
110 <key>edges</key>
189 <key>0</key>
194 <key>1</key>
[all …]
H A Dplist-diagnostics-include-check.cpp.plist4 <key>location</key>
10 <key>ranges</key>
28 <key>message</key>
33 <key>location</key>
42 <key>message</key>
47 <key>edges</key>
50 <key>start</key>
63 <key>end</key>
126 <key>0</key>
131 <key>1</key>
[all …]
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/readability/Inputs/identifier-naming/hungarian-notation2/
H A D.clang-tidy3 - key: readability-identifier-naming.AbstractClassCase
5 - key: readability-identifier-naming.ClassCase
7 - key: readability-identifier-naming.ClassConstantCase
9 - key: readability-identifier-naming.ClassMemberCase
11 - key: readability-identifier-naming.ConstantCase
13 - key: readability-identifier-naming.ConstantMemberCase
21 - key: readability-identifier-naming.EnumConstantCase
35 - key: readability-identifier-naming.LocalPointerCase
39 - key: readability-identifier-naming.MemberCase
41 - key: readability-identifier-naming.ParameterCase
[all …]
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/readability/Inputs/identifier-naming/hungarian-notation1/
H A D.clang-tidy3 - key: readability-identifier-naming.AbstractClassCase
5 - key: readability-identifier-naming.ClassCase
7 - key: readability-identifier-naming.ClassConstantCase
9 - key: readability-identifier-naming.ClassMemberCase
11 - key: readability-identifier-naming.ConstantCase
13 - key: readability-identifier-naming.ConstantMemberCase
21 - key: readability-identifier-naming.EnumConstantCase
35 - key: readability-identifier-naming.LocalPointerCase
39 - key: readability-identifier-naming.MemberCase
41 - key: readability-identifier-naming.ParameterCase
[all …]
/llvm-project-15.0.7/llvm/unittests/Analysis/Inputs/ir2native_x86_64_model/
H A Dsaved_model.pbtxt156 key: "dtype"
736 key: "f"
838 key: "f"
912 key: "f"
1764 key: 0
1784 key: 1
1798 key: 2
1812 key: 3
1826 key: 4
1840 key: 5
[all …]
/llvm-project-15.0.7/clang/test/ARCMT/
H A Dmigrate-plist-output.m17 // CHECK: <key>files</key>
20 // CHECK: <key>diagnostics</key>
25 // CHECK: <key>type</key><string>error</string>
26 // CHECK: <key>location</key>
28 // CHECK: <key>line</key><integer>10</integer>
29 // CHECK: <key>col</key><integer>6</integer>
30 // CHECK: <key>file</key><integer>0</integer>
32 // CHECK: <key>ranges</key>
37 // CHECK: <key>col</key><integer>4</integer>
38 // CHECK: <key>file</key><integer>0</integer>
[all …]
/llvm-project-15.0.7/lldb/source/Host/macosx/cfcpp/
H A DCFCMutableDictionary.h28 const void *GetValue(const void *key) const;
29 Boolean GetValueIfPresent(const void *key, const void **value_handle) const;
30 bool AddValue(CFStringRef key, const void *value, bool can_create = false);
31 bool SetValue(CFStringRef key, const void *value, bool can_create = false);
32 bool AddValueSInt8(CFStringRef key, int8_t value, bool can_create = false);
33 bool SetValueSInt8(CFStringRef key, int8_t value, bool can_create = false);
40 bool AddValueUInt8(CFStringRef key, uint8_t value, bool can_create = false);
41 bool SetValueUInt8(CFStringRef key, uint8_t value, bool can_create = false);
50 bool AddValueCString(CFStringRef key, const char *cstr,
52 bool SetValueCString(CFStringRef key, const char *cstr,
[all …]
H A DCFCMutableDictionary.cpp42 return ::CFDictionaryGetCountOfKey(dict, key); in GetCountOfKey()
67 return ::CFDictionaryGetValue(dict, key); in GetValue()
72 CFCMutableDictionary::GetValueIfPresent(const void *key, in GetValueIfPresent() argument
96 ::CFDictionaryAddValue(dict, key, value); in AddValue()
107 ::CFDictionarySetValue(dict, key, value); in SetValue()
121 ::CFDictionaryAddValue(dict, key, cf_number.get()); in AddValueSInt8()
136 ::CFDictionarySetValue(dict, key, cf_number.get()); in SetValueSInt8()
151 ::CFDictionaryAddValue(dict, key, cf_number.get()); in AddValueSInt16()
420 ::CFDictionaryAddValue(dict, key, cf_str.get()); in AddValueCString()
434 ::CFDictionarySetValue(dict, key, cf_str.get()); in SetValueCString()
[all …]
/llvm-project-15.0.7/mlir/lib/Dialect/Quant/IR/
H A DTypeDetail.h78 : QuantizedTypeStorage(key.flags, key.storageType, key.expressedType, in AnyQuantizedTypeStorage()
79 key.storageTypeMin, key.storageTypeMax) {} in AnyQuantizedTypeStorage()
92 static unsigned hashKey(const KeyTy &key) { return key.getHashValue(); } in hashKey()
139 : QuantizedTypeStorage(key.flags, key.storageType, key.expressedType, in UniformQuantizedTypeStorage()
140 key.storageTypeMin, key.storageTypeMax), in UniformQuantizedTypeStorage()
141 scale(key.scale), zeroPoint(key.zeroPoint) {} in UniformQuantizedTypeStorage()
154 static unsigned hashKey(const KeyTy &key) { return key.getHashValue(); } in hashKey()
221 : QuantizedTypeStorage(key.flags, key.storageType, key.expressedType, in UniformQuantizedPerAxisTypeStorage()
222 key.storageTypeMin, key.storageTypeMax), in UniformQuantizedPerAxisTypeStorage()
240 static unsigned hashKey(const KeyTy &key) { return key.getHashValue(); } in hashKey()
[all …]
/llvm-project-15.0.7/clang/unittests/Format/
H A DFormatTestRawStrings.cpp389 FFFFF(R"pb(key: 1)pb", R"pb(key: 2)pb");)test", in TEST_F()
391 FFFFF(R"pb(key:1)pb", R"pb(key:2)pb");)test", in TEST_F()
400 FFFFFFF(R"pb(key: 1)pb", R"pb(key: 2)pb");)test", in TEST_F()
402 FFFFFFF(R"pb(key:1)pb", R"pb(key:2)pb");)test", in TEST_F()
410 FFFFFFFF(R"pb(key:1)pb", R"pb(key:2)pb");)test", in TEST_F()
428 FFFFFFFF(R"pb(key:1)pb", R"pb(key:2)pb"); in TEST_F()
430 const s = f(R"pb(key:1)pb", R"pb(key:2)pb"); in TEST_F()
433 return g(R"pb(key:1)pb", R"pb(key:2)pb"); in TEST_F()
742 hh(R"pb(key { in TEST_F()
876 key: value in TEST_F()
[all …]
/llvm-project-15.0.7/libcxx/utils/ci/
H A Dmacos-ci-setup40 <key>Label</key>
43 <key>ProgramArguments</key>
51 <key>EnvironmentVariables</key>
53 <key>PATH</key>
57 <key>RunAtLoad</key>
60 <key>KeepAlive</key>
62 <key>SuccessfulExit</key>
66 <key>ProcessType</key>
69 <key>ThrottleInterval</key>
72 <key>StandardOutPath</key>
[all …]
/llvm-project-15.0.7/pstl/test/std/algorithms/alg.nonmodifying/
H A Dequal.pass.cpp25 size_t key; member
33 return a.key < b.key; in operator ()()
38 return a.key < key; in operator <()
43 return a.key <= key; in operator >=()
48 return a.key >= key; in operator <=()
53 return a.key == key; in operator ==()
58 return a.key == key; in operator ==()
63 return a.key != key; in operator !=()
68 tmp.key = !key; in operator !()
83 key = other.key; in operator =()
[all …]
/llvm-project-15.0.7/bolt/lib/Passes/
H A DCallGraph.cpp28 uint64_t key = (unsigned long long)k; in hash_int64_fallback() local
31 key = (~key) + (key << 21); // key = (key << 21) - key - 1; in hash_int64_fallback()
32 key = key ^ (key >> 24); in hash_int64_fallback()
33 key = (key + (key << 3)) + (key << 8); // key * 265 in hash_int64_fallback()
34 key = key ^ (key >> 14); in hash_int64_fallback()
35 key = (key + (key << 2)) + (key << 4); // key * 21 in hash_int64_fallback()
36 key = key ^ (key >> 28); in hash_int64_fallback()
37 return static_cast<size_t>(static_cast<uint32_t>(key)); in hash_int64_fallback()
/llvm-project-15.0.7/mlir/lib/IR/
H A DAttributeDetail.h78 if (key.type != getType())
93 return key.data == data;
177 return llvm::hash_combine(key.type, key.hashCode); in hashKey()
192 if (key.isSplat && key.type.getElementType().isInteger(1)) in construct()
198 DenseIntOrFPElementsAttrStorage(key.type, copy, key.isSplat); in construct()
236 return key.data == data;
274 return llvm::hash_combine(key.type, key.hashCode); in hashKey()
285 DenseStringElementsAttrStorage(key.type, copy, key.isSplat); in construct()
315 DenseStringElementsAttrStorage(key.type, copy, key.isSplat); in construct()
332 return value == key.first && getType() == key.second;
[all …]
H A DAffineExprDetail.h37 bool operator==(const KeyTy &key) const {
39 std::get<1>(key) == lhs && std::get<2>(key) == rhs;
46 result->lhs = std::get<1>(key); in construct()
47 result->rhs = std::get<2>(key); in construct()
60 bool operator==(const KeyTy &key) const {
61 return kind == static_cast<AffineExprKind>(key.first) &&
62 position == key.second;
68 result->kind = static_cast<AffineExprKind>(key.first); in construct()
69 result->position = key.second; in construct()
81 bool operator==(const KeyTy &key) const { return constant == key; }
[all …]
H A DTypeDetail.h37 return llvm::hash_value(key); in hashKey()
40 bool operator==(const KeyTy &key) const {
41 return KeyTy(width, signedness) == key;
45 KeyTy key) { in construct()
47 IntegerTypeStorage(key.first, key.second); in construct()
63 bool operator==(const KeyTy &key) const {
64 if (std::get<0>(key) == getInputs())
65 return std::get<1>(key) == getResults();
72 TypeRange inputs = key.first, results = key.second; in construct()
115 std::uninitialized_copy(key.begin(), key.end(), in construct()
[all …]
/llvm-project-15.0.7/mlir/lib/Dialect/LLVMIR/IR/
H A DTypeDetail.h200 LLVMStructTypeStorage(const KeyTy &key) { in LLVMStructTypeStorage()
201 if (!key.isIdentified()) { in LLVMStructTypeStorage()
209 StringRef name = key.getIdentifier(); in LLVMStructTypeStorage()
224 static llvm::hash_code hashKey(const KeyTy &key) { return key.hashValue(); } in hashKey()
350 return llvm::hash_combine(std::get<0>(key), std::get<1>(key), in hashKey()
356 key;
390 LLVMPointerTypeStorage(const KeyTy &key) in LLVMPointerTypeStorage()
391 : pointeeType(std::get<0>(key)), addressSpace(std::get<1>(key)) {} in LLVMPointerTypeStorage()
396 LLVMPointerTypeStorage(key); in construct()
418 : elementType(std::get<0>(key)), numElements(std::get<1>(key)) {} in LLVMTypeAndSizeStorage()
[all …]
/llvm-project-15.0.7/mlir/lib/Conversion/PDLToPDLInterp/
H A DPredicate.h90 : BaseT(Kind), key(std::forward<KeyT>(key)) {} in PredicateBase()
106 bool operator==(const KeyTy &key) const { return this->key == key; }
113 KeyTy key;
197 explicit ForEachPosition(const KeyTy &key) : Base(key) { parent = key.first; } in ForEachPosition()
251 explicit OperationPosition(const KeyTy &key) : Base(key) { in OperationPosition()
252 parent = key.first; in OperationPosition()
288 explicit ResultPosition(const KeyTy &key) : Base(key) { parent = key.first; } in ResultPosition()
303 explicit ResultGroupPosition(const KeyTy &key) : Base(key) { in ResultGroupPosition()
328 explicit TypePosition(const KeyTy &key) : Base(key) { in TypePosition()
332 parent = key; in TypePosition()
[all …]
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DOptionValueDictionary.cpp129 if (key.empty()) { in SetArgs()
134 if (key.front() == '[') { in SetArgs()
137 if ((key.size() > 2) && (key.back() == ']')) { in SetArgs()
139 key = key.substr(1, key.size() - 2); in SetArgs()
142 if ((key.size() > 2) && (key.back() == quote_char)) { in SetArgs()
144 key = key.substr(1, key.size() - 2); in SetArgs()
161 key.str().c_str()); in SetArgs()
196 key.GetCString()); in SetArgs()
253 if (!key.consume_back(quote_char) || key.empty()) { in GetSubValue()
265 key.str().c_str()); in GetSubValue()
[all …]
/llvm-project-15.0.7/polly/lib/External/isl/include/isl/
H A Dhmap_templ.c31 ISL_KEY *key; in ISL_S() local
136 return ISL_KEY_IS_EQUAL(pair->key, key); in has_key()
154 if (!hmap || !key) in ISL_MAYBE()
159 &has_key, key, 0); in ISL_MAYBE()
184 __isl_keep ISL_KEY *key) in ISL_FN()
220 if (!hmap || !key) in ISL_FN()
225 &has_key, key, 0); in ISL_FN()
237 &has_key, key, 0); in ISL_FN()
277 &has_key, key, 0); in ISL_FN()
298 &has_key, key, 1); in ISL_FN()
[all …]
/llvm-project-15.0.7/compiler-rt/lib/asan/
H A Dasan_posix.cpp79 tsd_key() : key(nullptr) {} in tsd_key()
82 if (key) in ~tsd_key()
83 (*tsd_destructor)(key); in ~tsd_key()
85 void *key; member
88 static thread_local struct tsd_key key; variable
97 return key.key; in AsanTSDGet()
103 CHECK(!key.key); in AsanTSDSet()
104 key.key = tsd; in AsanTSDSet()
109 CHECK_EQ(key.key, tsd); in PlatformTSDDtor()
110 key.key = nullptr; in PlatformTSDDtor()
/llvm-project-15.0.7/mlir/lib/Tools/PDLL/AST/
H A DTypeDetail.h36 TypeStorageBase(KeyTy key) in TypeStorageBase()
37 : Type::Storage(TypeID::get<ConcreteT>()), key(key) {} in TypeStorageBase()
41 const KeyTy &key) { in construct()
42 return new (alloc.allocate<ConcreteT>()) ConcreteT(key); in construct()
46 bool operator==(const KeyTy &key) const { return this->key == key; }
49 const KeyTy &getValue() const { return key; } in getValue()
52 KeyTy key;
84 const std::pair<StringRef, const ods::Operation *> &key) {
86 std::make_pair(alloc.copyInto(key.first), key.second));
115 std::pair<ArrayRef<Type>, ArrayRef<StringRef>> key) {
[all …]

12345678910>>...37