Searched refs:It (Results 1 - 25 of 448) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DDeclLookups.h29 StoredDeclsMap::iterator It, End; member in class:clang::DeclContext::all_lookups_iterator
39 all_lookups_iterator(StoredDeclsMap::iterator It, argument
41 : It(It), End(End) {}
43 DeclarationName getLookupName() const { return It->first; }
45 reference operator*() const { return It->second.getLookupResult(); }
46 pointer operator->() const { return It->second.getLookupResult(); }
53 ++It;
54 } while (It != End &&
55 It
[all...]
/freebsd-11-stable/contrib/dialog/samples/
H A Deditbox12 Hi, this is an edit box. It can be used to edit text from a file.
14 It's like a simple text editor, with these keys implemented:
33 It supports the mouse - but only for positioning in the editbox,
H A Deditbox210 Hi, this is an edit box. It can be used to edit text from a file.
12 It's like a simple text editor, with these keys implemented:
31 It supports the mouse - but only for positioning in the editbox,
H A Deditbox412 Hi, this is an edit box. It can be used to edit text from a file.
14 It's like a simple text editor, with these keys implemented:
33 It supports the mouse - but only for positioning in the editbox,
H A Dchecklist1218 Apple:It's an apple.:off
H A Dtextbox9 Hi, this is a text dialog box. It can be used to display text from a file.
13 It's like a simple text file viewer, with these keys implemented:
H A Dtextbox29 Hi, this is a text dialog box. It can be used to display text from a file.
13 It's like a simple text file viewer, with these keys implemented:
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DRecord.cpp31 auto It = FieldMap.find(FD); local
32 assert(It != FieldMap.end() && "Missing field");
33 return It->second;
37 auto It = BaseMap.find(FD); local
38 assert(It != BaseMap.end() && "Missing base");
39 return It->second;
43 auto It = VirtualBaseMap.find(FD); local
44 assert(It != VirtualBaseMap.end() && "Missing virtual base");
45 return It->second;
H A DFunction.cpp29 auto It = Params.find(Offset); local
30 assert(It != Params.end() && "Invalid parameter offset");
31 return It->second;
37 auto It = std::lower_bound(SrcMap.begin(), SrcMap.end(), Elem{Offset, {}},
39 if (It == SrcMap.end() || It->first != Offset)
41 return It->second;
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/pairing_heap_/
H A Dconstructors_destructor_fn_imps.hpp39 // purpose. It is provided "as is" without express or implied
48 template<typename It>
51 copy_from_range(It first_it, It last_it)
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDataFlowTrace.h52 auto It = Functions.find(FunctionId); local
53 if (It == Functions.end()) return 0;
54 const auto &Counters = It->second;
61 auto It = Functions.find(FunctionId); local
62 if (It == Functions.end()) return 0;
63 const auto &Counters = It->second;
68 auto It = Functions.find(FunctionId); local
69 if (It == Functions.end()) return 0;
70 const auto &Counters = It->second;
121 auto It local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-registry.cpp33 auto It = Commands->find(SC); local
34 assert(It != Commands->end() &&
36 return It->second;
H A Dfunc-id-helper.cpp26 auto It = FunctionAddresses.find(FuncId); local
27 if (It == FunctionAddresses.end()) {
33 ModuleAddress.Address = It->second;
40 F << "@(" << std::hex << It->second << ")";
45 F << "@(" << std::hex << It->second << ")";
54 auto It = FunctionAddresses.find(FuncId); local
55 if (It == FunctionAddresses.end())
60 ModuleAddress.Address = It->second;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DRange.cpp24 auto It = llvm::upper_bound(Ranges, Range);
25 auto It2 = It;
28 if (It != It2) {
30 It = Ranges.erase(It, It2);
32 if (It != Ranges.begin() && Range.Start < It[-1].End)
33 It[-1].End = std::max(It[-1].End, Range.End);
35 Ranges.insert(It, Rang
39 auto It = std::partition_point( local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/
H A DCodeRegion.cpp43 auto It = ActiveRegions.find(Description); local
44 if (It != ActiveRegions.end()) {
45 const CodeRegion &R = *Regions[It->second];
76 auto It = ActiveRegions.begin(); local
77 Regions[It->second]->setEndLocation(Loc);
78 ActiveRegions.erase(It);
90 auto It = ActiveRegions.find(Description); local
91 if (It != ActiveRegions.end()) {
92 Regions[It->second]->setEndLocation(Loc);
93 ActiveRegions.erase(It);
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DR600OptimizeVectorRegisters.cpp168 for (DenseMap<unsigned, unsigned>::iterator It = ToMerge->RegToChan.begin(),
169 E = ToMerge->RegToChan.end(); It != E; ++It) {
171 Untouched->RegToChan.find((*It).first);
174 ((*It).second, (*PosInUntouched).second));
180 ((*It).second, Untouched->UndefReg[CurrentUndexIdx++]));
208 for (DenseMap<unsigned, unsigned>::iterator It = RSI->RegToChan.begin(),
209 E = RSI->RegToChan.end(); It != E; ++It) {
211 unsigned SubReg = (*It)
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/DirectoryWatcher/
H A DDirectoryScanner.cpp30 for (auto It = fs::directory_iterator(Path, EC),
32 !EC && It != End; It.increment(EC)) {
33 auto status = getFileStatus(It->path());
36 Result.emplace_back(sys::path::filename(It->path()));
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/
H A Dassoc_container.hpp39 // purpose. It is provided "as is" without express or implied
217 template<typename It>
218 cc_hash_table(It first, It last)
224 template<typename It>
225 cc_hash_table(It first, It last, const hash_fn& h)
235 template<typename It>
236 cc_hash_table(It first, It las
[all...]
H A Dpriority_queue.hpp39 // purpose. It is provided "as is" without express or implied
95 template<typename It>
96 priority_queue(It first_it, It last_it)
103 template<typename It>
104 priority_queue(It first_it, It last_it, const cmp_fn& r_cmp_fn)
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/binomial_heap_base_/
H A Dconstructors_destructor_fn_imps.hpp39 // purpose. It is provided "as is" without express or implied
48 template<typename It>
51 copy_from_range(It first_it, It last_it)
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/rb_tree_map_/
H A Dconstructors_destructor_fn_imps.hpp39 // purpose. It is provided "as is" without express or implied
48 template<typename It>
51 copy_from_range(It first_it, It last_it)
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/splay_tree_/
H A Dconstructors_destructor_fn_imps.hpp39 // purpose. It is provided "as is" without express or implied
48 template<typename It>
51 copy_from_range(It first_it, It last_it)
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/list_update_map_/
H A Dconstructor_destructor_fn_imps.hpp39 // purpose. It is provided "as is" without express or implied
65 template<typename It>
68 copy_from_range(It first_it, It last_it)
80 template<typename It>
82 PB_DS_CLASS_NAME(It first_it, It last_it) : m_p_l(NULL)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DInstructionPrecedenceTracking.cpp79 auto It = FirstSpecialInsts.find(BB); local
81 if (It == FirstSpecialInsts.end())
86 assert(It->second == &Insn &&
91 assert(It->second == nullptr &&
98 for (auto &It : FirstSpecialInsts)
99 validate(It.first);
117 for (auto It : FirstSpecialInsts)
118 OI.invalidateBlock(It.first);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DGISelWorkList.h64 // It also asserts if there are any duplicate elements found.
87 auto It = WorklistMap.find(I); local
88 if (It == WorklistMap.end())
92 Worklist[It->second] = nullptr;
94 WorklistMap.erase(It);

Completed in 227 milliseconds

1234567891011>>