Lines Matching full:c
2 * Copyright (c) 2021 Huawei Device Co., Ltd.
28 template <class C, class Friend1 = C, class Friend2 = C>
49 const C *operator->()
52 return &obj->c;
77 C *operator->()
80 return &obj->c;
86 C &GetObj() in GetObj()
88 return c; in GetObj()
91 const C &GetObj() const in GetObj()
93 return c; in GetObj()
111 C c; variable
118 Synchronized(Args &&... args) : c(std::forward<Args>(args)...) in Synchronized()