Home
last modified time | relevance | path

Searched refs:pCntxt_ (Results 1 – 3 of 3) sorted by relevance

/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/r/
H A DRCntxt.cpp43 pCntxt_ = boost::make_shared<RIntCntxt<RCNTXT_40> >( in RCntxt()
189 return other.pCntxt_ == pCntxt_; in operator ==()
194 return other.pCntxt_ != pCntxt_; in operator !=()
209 return pCntxt_ == nullptr; in isNull()
214 return pCntxt_ ? pCntxt_->callfun() : R_NilValue; in callfun()
219 return pCntxt_ ? pCntxt_->callflag() : 0; in callflag()
224 return pCntxt_ ? pCntxt_->call() : R_NilValue; in call()
229 return pCntxt_ ? pCntxt_->evaldepth() : 0; in evaldepth()
234 return pCntxt_ ? pCntxt_->srcref() : R_NilValue; in srcref()
239 return pCntxt_ ? pCntxt_->cloenv() : R_NilValue; in cloenv()
[all …]
/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/r/include/r/
H A DRIntCntxt.hpp32 pCntxt_(pCntxt) in RIntCntxt()
37 return pCntxt_->callfun; in callfun()
42 return pCntxt_->callflag; in callflag()
47 return pCntxt_->evaldepth; in evaldepth()
52 return pCntxt_->call; in call()
57 return pCntxt_->srcref; in srcref()
62 return pCntxt_->cloenv; in cloenv()
67 if (pCntxt_->nextcontext == nullptr) in nextcontext()
70 return RCntxt(pCntxt_->nextcontext); in nextcontext()
80 return static_cast<void *>(pCntxt_); in rcntxt()
[all …]
H A DRCntxt.hpp53 return pCntxt_ != nullptr; in operator bool()
137 boost::shared_ptr<RCntxtInterface> pCntxt_; member in rstudio::r::context::RCntxt