HomeSort by: relevance | last modified time | path
    Searched refs:ImmutableSet (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
LiveVariables.h 18 #include "llvm/ADT/ImmutableSet.h"
33 llvm::ImmutableSet<const Expr *> liveExprs;
34 llvm::ImmutableSet<const VarDecl *> liveDecls;
35 llvm::ImmutableSet<const BindingDecl *> liveBindings;
42 LivenessValues(llvm::ImmutableSet<const Expr *> liveExprs,
43 llvm::ImmutableSet<const VarDecl *> LiveDecls,
44 llvm::ImmutableSet<const BindingDecl *> LiveBindings)
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ProgramStateTrait.h 21 #include "llvm/ADT/ImmutableSet.h"
50 /// ImmutableMap, ImmutableSet, ImmutableList. The macro should not be used
98 /// the ProgramState. This is implementing using llvm::ImmutableSet.
110 REGISTER_TRAIT_WITH_PROGRAMSTATE(Name, llvm::ImmutableSet<Elem>)
117 using Name = llvm::ImmutableSet<Elem>; \
192 // Partial-specialization for ImmutableSet.
194 struct ProgramStatePartialTrait<llvm::ImmutableSet<Key, Info>> {
195 using data_type = llvm::ImmutableSet<Key, Info>;
SMTConstraintManager.h 22 typedef llvm::ImmutableSet<
ProgramState.h 74 typedef llvm::ImmutableSet<llvm::APSInt*> IntSetTy;
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
ImmutableSet.h 1 //===--- ImmutableSet.h - Immutable (functional) set interface --*- C++ -*-===//
9 // This file defines the ImutAVLTree and ImmutableSet classes.
912 // definitions used by ImutAVLTree, ImmutableSet, and ImmutableMap. These
970 class ImmutableSet {
984 explicit ImmutableSet(TreeTy *R) : Root(R) {}
1001 ImmutableSet getEmptySet() {
1002 return ImmutableSet(F.getEmptyTree());
1012 LLVM_NODISCARD ImmutableSet add(ImmutableSet Old, value_type_ref V) {
1014 return ImmutableSet(Canonicalize ? F.getCanonicalTree(NewT) : NewT)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
LiveVariables.cpp 30 llvm::ImmutableSet<const Expr *>::Factory ESetFact;
31 llvm::ImmutableSet<const VarDecl *>::Factory DSetFact;
32 llvm::ImmutableSet<const BindingDecl *>::Factory BSetFact;
205 static void AddLiveExpr(llvm::ImmutableSet<const Expr *> &Set,
206 llvm::ImmutableSet<const Expr *>::Factory &F,
581 for (llvm::ImmutableSet<const VarDecl *>::iterator si =
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
TestAfterDivZeroChecker.cpp 190 for (llvm::ImmutableSet<ZeroState>::iterator I = DivZeroes.begin(),
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp 66 #include "llvm/ADT/ImmutableSet.h"
2290 llvm::ImmutableSet<const VarDecl *>)

Completed in 30 milliseconds