Home | History | Annotate | Download | only in unicode

Lines Matching defs:p_

98     char16_t *p_;
111 Char16Ptr::Char16Ptr(char16_t *p) : p_(p) {}
113 Char16Ptr::Char16Ptr(uint16_t *p) : p_(cast(p)) {}
116 Char16Ptr::Char16Ptr(wchar_t *p) : p_(cast(p)) {}
118 Char16Ptr::Char16Ptr(std::nullptr_t p) : p_(p) {}
120 U_ALIASING_BARRIER(p_);
123 char16_t *Char16Ptr::get() const { return p_; }
206 const char16_t *p_;
219 ConstChar16Ptr::ConstChar16Ptr(const char16_t *p) : p_(p) {}
221 ConstChar16Ptr::ConstChar16Ptr(const uint16_t *p) : p_(cast(p)) {}
224 ConstChar16Ptr::ConstChar16Ptr(const wchar_t *p) : p_(cast(p)) {}
226 ConstChar16Ptr::ConstChar16Ptr(const std::nullptr_t p) : p_(p) {}
228 U_ALIASING_BARRIER(p_);
231 const char16_t *ConstChar16Ptr::get() const { return p_; }