| /llvm-project-15.0.7/clang-tools-extra/unittests/clang-include-fixer/find-all-symbols/ |
| H A D | FindAllSymbolsTests.cpp | 60 int seen(const SymbolInfo &Symbol) { return Reporter.seen(Symbol); } in seen() function in clang::find_all_symbols::FindAllSymbolsTest 156 EXPECT_EQ(1, seen(Symbol)); in TEST_F() 161 EXPECT_EQ(1, seen(Symbol)); in TEST_F() 167 EXPECT_EQ(1, seen(Symbol)); in TEST_F() 189 EXPECT_EQ(1, seen(Symbol)); in TEST_F() 194 EXPECT_EQ(1, seen(Symbol)); in TEST_F() 220 EXPECT_EQ(1, seen(Symbol)); in TEST_F() 225 EXPECT_EQ(1, seen(Symbol)); in TEST_F() 231 EXPECT_EQ(0, seen(Symbol)); in TEST_F() 258 EXPECT_EQ(1, seen(Symbol)); in TEST_F() [all …]
|
| /llvm-project-15.0.7/flang/lib/Semantics/ |
| H A D | attr.cpp | 43 std::size_t seen{0}; in operator <<() local 44 for (std::size_t j{0}; seen < n; ++j) { in operator <<() 47 if (seen > 0) { in operator <<() 51 ++seen; in operator <<()
|
| /llvm-project-15.0.7/llvm/utils/unittest/googlemock/src/ |
| H A D | gmock-matchers.cc | 132 ::std::vector<char> seen; in Compute() 151 seen.assign(graph_->RhsSize(), 0); in Compute() 152 TryAugment(ilhs, &seen); in Compute() 182 bool TryAugment(size_t ilhs, ::std::vector<char>* seen) { in TryAugment() argument 184 if ((*seen)[irhs]) continue; in TryAugment() 187 (*seen)[irhs] = 1; in TryAugment() 198 if (right_[irhs] == kUnused || TryAugment(right_[irhs], seen)) { in TryAugment()
|
| /llvm-project-15.0.7/lldb/third_party/Python/module/ptyprocess-0.6.0/ptyprocess/ |
| H A D | util.py | 58 seen = set() 61 if not normdir in seen: 62 seen.add(normdir)
|
| /llvm-project-15.0.7/llvm/test/CodeGen/X86/ |
| H A D | tail-call-legality.ll | 4 ; arguments seen by Analysis.cpp and ISelLowering. As seen by ISelLowering, they 8 ; As seen by Analysis.cpp: i64 -> i32 is a valid trunc, second i32 passes
|
| H A D | fixup-bw-inst.mir | 15 ; can be seen by the fact that implicit EAX flag is missing). 89 # After MOV16rm the whole $eax is not *really* live, as can be seen by
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Scalar/ |
| H A D | Float2Int.cpp | 148 void Float2IntPass::seen(Instruction *I, ConstantRange R) { in seen() function in Float2IntPass 198 seen(I, badRange()); in walkBackwards() 208 seen(I, validateRange(Input.castOp(CastOp, MaxIntegerBW+1))); in walkBackwards() 219 seen(I, unknownRange()); in walkBackwards() 231 seen(I, badRange()); in walkBackwards() 339 seen(I, *Range); in walkForwards()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-include-fixer/tool/ |
| H A D | clang-include-fixer.py | 189 seen = set() 192 if header not in seen: 193 seen.add(header)
|
| /llvm-project-15.0.7/mlir/tools/mlir-tblgen/ |
| H A D | OpDocGen.cpp | 370 llvm::SmallDenseSet<Record *> seen; in emitDialectDoc() local 375 seen.insert(attrDef); in emitDialectDoc() 378 if (seen.count(attrDef)) in emitDialectDoc() 395 seen.insert(typeDef); in emitDialectDoc() 398 if (seen.count(typeDef)) in emitDialectDoc()
|
| /llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/heuristic/ |
| H A D | Heuristic.py | 272 seen = Counter(order_list) 281 if k not in seen: 285 elif v > seen[k]: 288 num_missing += v - seen[k] 289 elif v < seen[k]: 292 num_repeats = seen[k] - v
|
| /llvm-project-15.0.7/mlir/lib/Analysis/ |
| H A D | SliceAnalysis.cpp | 165 : toSort(set), topologicalCounts(), seen() {} in DFSState() 168 DenseSet<Operation *> seen; member 189 if (state->seen.insert(op).second && state->toSort.count(op) > 0) in dfsPostorder()
|
| /llvm-project-15.0.7/clang/test/SemaObjC/ |
| H A D | method-conflict-2.m | 70 // is seen by the method implementation type matching logic before 71 // method in super class is seen. This fixes the warning coming
|
| /llvm-project-15.0.7/lld/COFF/ |
| H A D | MinGW.cpp | 204 DenseSet<StringRef> seen; in addWrappedSymbols() local 208 if (!seen.insert(name).second) in addWrappedSymbols()
|
| H A D | InputFiles.h | 125 llvm::DenseSet<uint64_t> seen; variable 404 llvm::StringSet<> seen; variable
|
| /llvm-project-15.0.7/clang/utils/perf-training/ |
| H A D | perf-helper.py | 251 seen = set() 253 if item not in seen: 255 seen.add(item)
|
| /llvm-project-15.0.7/clang/test/Coverage/ |
| H A D | codegen-next.m | 4 // An error could be seen for targeting x86_64-win32;
|
| /llvm-project-15.0.7/clang/test/ARCMT/ |
| H A D | verify.m | 12 // CHECK-NEXT: error: 'error' diagnostics seen but not expected:
|
| /llvm-project-15.0.7/openmp/docs/remarks/ |
| H A D | OMP110.rst | 26 A trivial example of globalization occurring can be seen with this example. The 52 A less trivial example can be seen using C++'s complex numbers. In this case the
|
| /llvm-project-15.0.7/llvm/test/Transforms/IROutliner/ |
| H A D | outlining-constants-vs-registers.ll | 9 ; seen first, and the second function checks that we do not outline when the 10 ; constant is seen first.
|
| /llvm-project-15.0.7/llvm/include/llvm/Transforms/Scalar/ |
| H A D | Float2Int.h | 41 void seen(Instruction *I, ConstantRange R);
|
| /llvm-project-15.0.7/lld/test/wasm/ |
| H A D | weak-and-strong-undef.s | 3 # file is seen first.
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AMDGPU/ |
| H A D | fold-operands-order.mir | 6 # aren't made in users before the def is seen.
|
| /llvm-project-15.0.7/clang-tools-extra/docs/ |
| H A D | pp-trace.rst | 578 MacroDefined is called when a macro definition is seen. 598 MacroUndefined is called when a macro #undef is seen. 618 Defined is called when the 'defined' operator is seen. 658 If is called when an #if is seen. 680 Elif is called when an #elif is seen. 704 Ifdef is called when an #ifdef is seen. 726 Ifndef is called when an #ifndef is seen. 748 Else is called when an #else is seen. 768 Endif is called when an #endif is seen.
|
| /llvm-project-15.0.7/mlir/test/Integration/Dialect/SparseTensor/taco/ |
| H A D | README.md | 15 As can be seen from the tests in this directory, in order to port a PyTACO
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DebugNamesDWARFIndex.cpp | 245 std::set<DWARFDebugInfoEntry *> seen; in GetFunctions() local 255 if (!seen.insert(die.GetDIE()).second) in GetFunctions()
|