OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:It
(Results
1 - 25
of
219
) sorted by relevancy
1
2
3
4
5
6
7
8
9
/src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Record.cpp
31
auto
It
= FieldMap.find(FD);
32
assert(
It
!= FieldMap.end() && "Missing field");
33
return
It
->second;
37
auto
It
= BaseMap.find(FD);
38
assert(
It
!= BaseMap.end() && "Missing base");
39
return
It
->second;
43
auto
It
= VirtualBaseMap.find(FD);
44
assert(
It
!= VirtualBaseMap.end() && "Missing virtual base");
45
return
It
->second;
Function.cpp
29
auto
It
= Params.find(Offset);
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;
/src/external/apache2/llvm/dist/llvm/lib/XRay/
BlockIndexer.cpp
83
Index::iterator
It
;
84
std::tie(
It
, std::ignore) =
86
It
->second.push_back({CurrentBlock.ProcessID, CurrentBlock.ThreadID,
/src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
xray-registry.cpp
33
auto
It
= Commands->find(SC);
34
assert(
It
!= Commands->end() &&
36
return
It
->second;
func-id-helper.cpp
26
auto
It
= FunctionAddresses.find(FuncId);
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);
55
if (
It
== FunctionAddresses.end())
60
ModuleAddress.Address =
It
->second;
/src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerDataFlowTrace.h
44
auto
It
= Traces.find(InputSha1);
45
if (
It
!= Traces.end())
46
return &
It
->second;
/src/external/apache2/llvm/dist/clang/lib/Index/
FileIndexRecord.cpp
35
auto
It
= llvm::upper_bound(Decls, Info);
36
Decls.insert(
It
, std::move(Info));
54
auto
It
=
60
Decls.erase(
It
, Decls.end());
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
RegisterUsageInfo.cpp
66
auto
It
= RegMasks.find(&FP);
67
if (
It
!= RegMasks.end())
68
return makeArrayRef<uint32_t>(
It
->second);
/src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
Speculation.cpp
29
auto
It
= Maps.insert({I.first, {I.second.Aliasee, SrcJD}});
31
assert(
It
.second && "ImplSymbols are already tracked for this Symbol?");
32
(void)(
It
);
/src/external/apache2/llvm/dist/llvm/tools/llvm-mca/
CodeRegion.cpp
43
auto
It
= ActiveRegions.find(Description);
44
if (
It
!= ActiveRegions.end()) {
45
const CodeRegion &R = *Regions[
It
->second];
75
auto
It
= ActiveRegions.begin();
76
Regions[
It
->second]->setEndLocation(Loc);
77
ActiveRegions.erase(
It
);
89
auto
It
= ActiveRegions.find(Description);
90
if (
It
!= ActiveRegions.end()) {
91
Regions[
It
->second]->setEndLocation(Loc);
92
ActiveRegions.erase(
It
);
[
all
...]
/src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclLookups.h
29
StoredDeclsMap::iterator
It
, End;
39
all_lookups_iterator(StoredDeclsMap::iterator
It
,
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(); }
51
// should not expect to get them (or worse, rely on
it
).
53
++
It
;
54
} while (
It
!= End &
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Basic/Targets/
AVR.cpp
314
auto
It
= llvm::find_if(
317
if (
It
!= std::end(AVRMcus))
318
Builder.defineMacro(
It
->DefineName);
/src/external/apache2/llvm/dist/clang/lib/Tooling/Transformer/
RangeSelector.cpp
57
auto
It
= NodesMap.find(ID);
58
if (
It
== NodesMap.end())
60
return
It
->second;
214
// require subcasing `NamedDecl`, because
it
doesn't provide virtual
/src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/
GISelWorkList.h
25
// FIXME: Does
it
make sense to factor out common code with the
61
//
It
also asserts if there are any duplicate elements found.
74
/// Add the specified instruction to the worklist if
it
isn't already in
it
.
81
/// Remove I from the worklist if
it
exists.
84
auto
It
= WorklistMap.find(I);
85
if (
It
== WorklistMap.end())
89
Worklist[
It
->second] = nullptr;
91
WorklistMap.erase(
It
);
GISelChangeObserver.h
27
/// the result. The observer would likely need to check if
it
was already
40
/// point and won't be if the MachineFunction::Delegate is calling
it
. This is
64
/// Legalizer, Combiner),
it
's sufficient to register this to the machine
79
auto
It
= std::find(Observers.begin(), Observers.end(), O);
80
if (
It
!= Observers.end())
81
Observers.erase(
It
);
107
///
it
at the end of the scope.
119
///
it
at the end of the scope.
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
InstructionPrecedenceTracking.cpp
79
auto
It
= FirstSpecialInsts.find(BB);
81
if (
It
== FirstSpecialInsts.end())
86
assert(
It
->second == &Insn &&
91
assert(
It
->second == nullptr &&
92
"Block is marked as having special instructions but in fact
it
has "
98
for (auto &
It
: FirstSpecialInsts)
99
validate(
It
.first);
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFDebugAranges.cpp
56
//
it
may describe only a small subset of compilation units, so we need to
96
// do
it
, start a new range.
122
RangeCollIterator
It
=
124
if (
It
!= Aranges.end() &&
It
->LowPC <= Address)
125
return
It
->CUOffset;
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
Range.cpp
24
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
, Range)
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/MC/
MCInstPrinter.cpp
40
/// "MOV32ri") or empty if we can't resolve
it
.
128
auto
It
= lower_bound(M.OpToPatterns, MI->getOpcode(),
132
if (
It
== M.OpToPatterns.end() ||
It
->Opcode != MI->getOpcode())
138
M.Patterns.slice(
It
->PatternStart,
It
->NumPatterns);
164
// offset should point to the beginning of an alias string, so
it
should
/src/external/apache2/llvm/dist/llvm/lib/MCA/Stages/
EntryStage.cpp
62
auto
It
= find_if(Range, [](const std::unique_ptr<Instruction> &I) {
66
NumRetired = std::distance(Instructions.begin(),
It
);
69
Instructions.erase(Instructions.begin(),
It
);
/src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
DWARFYAML.cpp
66
auto
It
= AbbrevTableInfoMap.insert(
69
if (!
It
.second)
74
AbbrevTableID, AbbrevTable.index(),
It
.first->second.Index);
81
auto
It
= AbbrevTableInfoMap.find(ID);
82
if (
It
== AbbrevTableInfoMap.end())
86
return
It
->second;
/src/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/
BlotMapVector.h
80
typename MapTy::iterator
It
= Map.find(Key);
81
if (
It
== Map.end())
83
return Vector.begin() +
It
->second;
87
typename MapTy::const_iterator
It
= Map.find(Key);
88
if (
It
== Map.end())
90
return Vector.begin() +
It
->second;
94
/// vector,
it
just zeros out the key in the vector. This leaves iterators
97
typename MapTy::iterator
It
= Map.find(Key);
98
if (
It
== Map.end())
100
Vector[
It
->second].first = KeyT()
[
all
...]
/src/external/apache2/llvm/dist/llvm/tools/yaml2obj/
yaml2obj.cpp
85
auto
It
= Defines.find(Macro);
87
if (
It
!= Defines.end())
88
Value =
It
->second;
/src/external/apache2/llvm/dist/clang/lib/AST/
ComparisonCategories.cpp
74
auto
It
= llvm::find_if(
76
if (
It
!= Objects.end())
77
return &(*
It
);
80
// a new entry representing
it
.
113
auto
It
= Data.find(static_cast<char>(Kind));
114
if (
It
!= Data.end())
115
return &
It
->second;
151
//
it
.
/src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/InstCombine/
InstCombineWorklist.h
51
/// Add value to the worklist if
it
is an instruction.
86
/// Remove I from the worklist if
it
exists.
88
DenseMap<Instruction*, unsigned>::iterator
It
= WorklistMap.find(I);
89
if (
It
!= WorklistMap.end()) {
91
Worklist[
It
->second] = nullptr;
92
WorklistMap.erase(
It
);
Completed in 35 milliseconds
1
2
3
4
5
6
7
8
9
Indexes created Sat Feb 28 05:31:39 UTC 2026