HomeSort by relevance Sort by last modified time
    Searched refs:SExprRef (Results 1 - 3 of 3) sorted by null

  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h 298 class SExprRef {
300 SExprRef() : Ptr(nullptr) { }
301 SExprRef(std::nullptr_t P) : Ptr(nullptr) { }
302 SExprRef(SExprRef &&R) : Ptr(R.Ptr) { R.Ptr = nullptr; }
305 inline SExprRef(SExpr *P);
306 inline ~SExprRef();
317 bool operator==(const SExprRef &R) const { return Ptr == R.Ptr; }
318 bool operator!=(const SExprRef &R) const { return !operator==(R); }
373 // These are defined after SExprRef contructor, belo
    [all...]
ThreadSafetyLogical.h 44 til::SExprRef Expr;
ThreadSafetyTraverse.h 59 typename R::R_SExpr traverse(SExprRef &E, typename R::R_Ctx Ctx) {

Completed in 92 milliseconds