Home
last modified time | relevance | path

Searched defs:ScopedIncrement (Results 1 – 3 of 3) sorted by relevance

/external/clang/lib/ASTMatchers/
DASTMatchFinder.cpp203 struct ScopedIncrement { struct in clang::ast_matchers::internal::__anon5fe87f1e0111::MatchChildASTVisitor
204 explicit ScopedIncrement(int *Depth) : Depth(Depth) { ++(*Depth); } in ScopedIncrement() argument
205 ~ScopedIncrement() { --(*Depth); } in ~ScopedIncrement()
208 int *Depth;
/external/llvm-project/clang/lib/ASTMatchers/
DASTMatchFinder.cpp279 struct ScopedIncrement { struct in clang::ast_matchers::internal::__anon637901cc0111::MatchChildASTVisitor
280 explicit ScopedIncrement(int *Depth) : Depth(Depth) { ++(*Depth); } in ScopedIncrement() function
281 ~ScopedIncrement() { --(*Depth); } in ~ScopedIncrement()
284 int *Depth;
/external/webrtc/rtc_base/
Dthread.cc212 class ScopedIncrement : public MessageData { in ProcessAllMessageQueuesInternal() class
214 ScopedIncrement(volatile int* value) : value_(value) { in ProcessAllMessageQueuesInternal() function in rtc::ThreadManager::ProcessAllMessageQueuesInternal::ScopedIncrement