HomeSort by relevance Sort by last modified time
    Searched defs:StoreRef (Results 1 - 2 of 2) sorted by null

  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
StoreRef.h 1 //== StoreRef.h - Smart pointer for store objects ---------------*- C++ -*--==//
10 // This file defined the type StoreRef.
30 class StoreRef {
34 StoreRef(Store, StoreManager &);
35 StoreRef(const StoreRef &);
36 StoreRef &operator=(StoreRef const &);
38 bool operator==(const StoreRef &x) const {
42 bool operator!=(const StoreRef &x) const { return !operator==(x);
    [all...]
Store.h 17 #include "clang/StaticAnalyzer/Core/PathSensitive/StoreRef.h"
66 virtual StoreRef Bind(Store store, Loc loc, SVal val) = 0;
68 virtual StoreRef BindDefault(Store store, const MemRegion *R, SVal V);
69 virtual StoreRef Remove(Store St, Loc L) = 0;
75 virtual StoreRef BindCompoundLiteral(Store store,
81 virtual StoreRef getInitialStore(const LocationContext *InitLoc) = 0;
148 virtual StoreRef removeDeadBindings(Store store, const StackFrameContext *LCtx,
151 virtual StoreRef BindDecl(Store store, const VarRegion *VR, SVal initVal) = 0;
153 virtual StoreRef BindDeclWithNoInit(Store store, const VarRegion *VR) = 0;
189 virtual StoreRef invalidateRegions(Store store
    [all...]

Completed in 567 milliseconds