Searched refs:using (Results 26 - 50 of 1153) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DIteratedDominanceFrontier.h23 using NodeRef = BasicBlock *;
24 using ChildrenTy = SmallVector<BasicBlock *, 8>;
41 using IDFCalculatorBase =
43 using ChildrenGetterTy = typename IDFCalculatorBase::ChildrenGetterTy;
55 using ForwardIDFCalculator = IDFCalculator<false>;
56 using ReverseIDFCalculator = IDFCalculator<true>;
68 using OrderedNodeTy =
76 using SnapShotBBPairTy =
H A DDominanceFrontier.h43 using DomSetType = std::set<BlockT *>; // Dom set for a bb
44 using DomSetMapType = std::map<BlockT *, DomSetType>; // Dom set map
47 using BlockTraits = GraphTraits<BlockT *>;
77 using iterator = typename DomSetMapType::iterator;
78 using const_iterator = typename DomSetMapType::const_iterator;
125 using BlockTraits = GraphTraits<BlockT *>;
128 using DomTreeT = DomTreeBase<BlockT>;
129 using DomTreeNodeT = DomTreeNodeBase<BlockT>;
130 using DomSetType = typename DominanceFrontierBase<BlockT, false>::DomSetType;
144 using DomTree
[all...]
H A DRegionInfo.h29 // the dominator tree. Most passes maintain it, such that using
82 using BrokenT = typename FuncT_::UnknownRegionTypeError;
87 using FuncT = Function;
88 using BlockT = BasicBlock;
89 using RegionT = Region;
90 using RegionNodeT = RegionNode;
91 using RegionInfoT = RegionInfo;
92 using DomTreeT = DominatorTree;
93 using DomTreeNodeT = DomTreeNode;
94 using DomFrontier
[all...]
H A DDependenceGraphBuilder.h33 using BasicBlockListType = SmallVectorImpl<BasicBlock *>;
36 using NodeType = typename GraphType::NodeType;
37 using EdgeType = typename GraphType::EdgeType;
40 using ClassesType = EquivalenceClasses<BasicBlock *>;
41 using NodeListType = SmallVector<NodeType *, 4>;
172 using InstToNodeMap = DenseMap<Instruction *, NodeType *>;
175 using InstToOrdinalMap = DenseMap<Instruction *, size_t>;
176 using NodeToOrdinalMap = DenseMap<NodeType *, size_t>;
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DCFGReachabilityAnalysis.h32 using ReachableSet = llvm::BitVector;
33 using ReachableMap = llvm::DenseMap<unsigned, ReachableSet>;
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DStmtGraphTraits.h24 using NodeRef = clang::Stmt *;
25 using ChildIteratorType = clang::Stmt::child_iterator;
26 using nodes_iterator = llvm::df_iterator<clang::Stmt *>;
50 using NodeRef = const clang::Stmt *;
51 using ChildIteratorType = clang::Stmt::const_child_iterator;
52 using nodes_iterator = llvm::df_iterator<const clang::Stmt *>;
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DCharInfo.h50 using namespace charinfo;
60 using namespace charinfo;
71 using namespace charinfo;
79 using namespace charinfo;
88 using namespace charinfo;
94 using namespace charinfo;
100 using namespace charinfo;
106 using namespace charinfo;
112 using namespace charinfo;
118 using namespac
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderInternals.h53 using data_type = SmallVector<DeclID, 4>;
80 using hash_value_type = unsigned;
81 using offset_type = unsigned;
82 using file_type = ModuleFile *;
84 using external_key_type = DeclarationName;
85 using internal_key_type = DeclarationNameKey;
133 using external_key_type = StringRef;
134 using internal_key_type = StringRef;
135 using hash_value_type = unsigned;
136 using offset_typ
[all...]
/freebsd-13-stable/contrib/googletest/googlemock/test/
H A Dgmock_link_test.h102 // constructs, only that the programs using them will link successfully.
130 using testing::_;
131 using testing::A;
132 using testing::Action;
133 using testing::AllOf;
134 using testing::AnyOf;
135 using testing::Assign;
136 using testing::ContainerEq;
137 using testing::DoAll;
138 using testin
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCChecker.h43 using PredSense = std::pair<unsigned, bool>;
45 using PredSet = std::multiset<PredSense>;
46 using PredSetIterator = std::multiset<PredSense>::iterator;
48 using DefsIterator = DenseMap<unsigned, PredSet>::iterator;
52 using SoftDefsIterator = std::set<unsigned>::iterator;
56 using TmpDefsIterator = std::set<unsigned>::iterator;
60 using NewPredsIterator = std::set<unsigned>::iterator;
64 using LatePredsIterator = std::multiset<unsigned>::iterator;
68 using UsesIterator = std::set<unsigned>::iterator;
72 using ReadOnlyIterato
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineInstrBundleIterator.h26 using list_type = simple_ilist<T, ilist_sentinel_tracking<true>>;
27 using instr_iterator = typename list_type::iterator;
28 using nonconst_instr_iterator = typename list_type::iterator;
29 using const_instr_iterator = typename list_type::const_iterator;
32 using list_type = simple_ilist<T, ilist_sentinel_tracking<true>>;
33 using instr_iterator = typename list_type::reverse_iterator;
34 using nonconst_instr_iterator = typename list_type::reverse_iterator;
35 using const_instr_iterator = typename list_type::const_reverse_iterator;
38 using list_type = simple_ilist<T, ilist_sentinel_tracking<true>>;
39 using instr_iterato
[all...]
H A DMachineRegionInfo.h31 using FuncT = MachineFunction;
32 using BlockT = MachineBasicBlock;
33 using RegionT = MachineRegion;
34 using RegionNodeT = MachineRegionNode;
35 using RegionInfoT = MachineRegionInfo;
36 using DomTreeT = MachineDominatorTree;
37 using DomTreeNodeT = MachineDomTreeNode;
38 using PostDomTreeT = MachinePostDominatorTree;
39 using DomFrontierT = MachineDominanceFrontier;
40 using Inst
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DMemoryBuffer.h35 using file_t = void *;
37 using file_t = int;
168 using MemoryBuffer::getBuffer;
169 using MemoryBuffer::getBufferEnd;
170 using MemoryBuffer::getBufferStart;
209 using MemoryBuffer::getFileAsStream;
210 using MemoryBuffer::getFileOrSTDIN;
211 using MemoryBuffer::getMemBuffer;
212 using MemoryBuffer::getMemBufferCopy;
213 using MemoryBuffe
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstIterator.h33 using BBty = BB_t;
34 using BBIty = BB_i_t;
35 using BIty = BI_t;
36 using IIty = II_t;
42 using iterator_category = std::bidirectional_iterator_tag;
43 using value_type = IIty;
44 using difference_type = signed;
45 using pointer = IIty *;
46 using reference = IIty &;
121 using inst_iterato
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Tooling/Transformer/
H A DRewriteRule.h46 using EditGenerator = MatchConsumer<llvm::SmallVector<Edit, 1>>;
48 using TextGenerator = std::shared_ptr<MatchComputation<std::string>>;
70 // `ASTEdit` should be built using the `change` convenience functions. For
77 // using stencil::cat;
312 using TextGenerator = transformer::TextGenerator;
316 using transformer::addInclude;
317 using transformer::applyFirst;
318 using transformer::change;
319 using transformer::insertAfter;
320 using transforme
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DSpeculateAnalyses.h33 using ResultTy = Optional<DenseMap<StringRef, DenseSet<StringRef>>>;
57 using VisitedBlocksInfoTy = DenseMap<const BasicBlock *, WalkDirection>;
58 using BlockListTy = SmallVector<const BasicBlock *, 8>;
59 using BackEdgesInfoTy =
61 using BlockFreqInfoTy =
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-graph-diff.h31 using StatType = GraphRenderer::StatType;
32 using TimeStat = GraphRenderer::TimeStat;
34 using GREdgeValueType = GraphRenderer::GraphT::EdgeValueType;
35 using GRVertexValueType = GraphRenderer::GraphT::VertexValueType;
45 using GraphT = Graph<VertexAttribute, EdgeAttribute, StringRef>;
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DDFAEmitter.h44 using state_type = uint64_t;
46 using action_type = uint64_t;
63 using dfa_state_type = unsigned;
67 using DfaState = SmallVector<state_type, 4>;
76 using DfaTransitionInfo = SmallVector<std::pair<state_type, state_type>, 4>;
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramStateTrait.h36 using Name ## Ty = Type; \
73 /// the ProgramState. This is implementing using llvm::ImmutableMap.
93 using Name = llvm::ImmutableMap<Key, Value>; \
98 /// the ProgramState. This is implementing using llvm::ImmutableSet.
117 using Name = llvm::ImmutableSet<Elem>; \
122 /// the ProgramState. This is implementing using llvm::ImmutableList.
140 using Name = llvm::ImmutableList<Elem>; \
147 using data_type = llvm::ImmutableMap<Key, Data, Info>;
148 using context_type = typename data_type::Factory &;
149 using key_typ
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDeltaAlgorithm.h17 /// for minimizing arbitrary sets using a predicate function.
37 using change_ty = unsigned;
39 using changeset_ty = std::set<change_ty>;
40 using changesetlist_ty = std::vector<changeset_ty>;
/freebsd-13-stable/contrib/bmake/unit-tests/
H A Ddep-colon-bug-cross-file.exp2 make: "dep-colon-bug-cross-file.mk" line 40: warning: using previous script for "all" defined here
H A Dshell-ksh.mk3 # Tests for using a korn shell for running the commands.
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_type_traits.h52 using type = T;
57 using type = F;
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Tooling/
H A DArgumentsAdjusters.h29 using CommandLineArguments = std::vector<std::string>;
35 using ArgumentsAdjuster = std::function<CommandLineArguments(
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMLegalizerInfo.h49 using FCmpLibcallsList = SmallVector<FCmpLibcallInfo, 2>;
54 using FCmpLibcallsMapTy = IndexedMap<FCmpLibcallsList>;

Completed in 142 milliseconds

1234567891011>>