Lines Matching defs:p
111 Char16Ptr::Char16Ptr(char16_t *p) : p_(p) {} in Char16Ptr()
113 Char16Ptr::Char16Ptr(uint16_t *p) : p_(cast(p)) {} in Char16Ptr()
116 Char16Ptr::Char16Ptr(wchar_t *p) : p_(cast(p)) {} in Char16Ptr()
118 Char16Ptr::Char16Ptr(std::nullptr_t p) : p_(p) {} in Char16Ptr()
127 Char16Ptr::Char16Ptr(char16_t *p) { u_.cp = p; } in Char16Ptr()
129 Char16Ptr::Char16Ptr(uint16_t *p) { u_.up = p; } in Char16Ptr()
132 Char16Ptr::Char16Ptr(wchar_t *p) { u_.wp = p; } in Char16Ptr()
134 Char16Ptr::Char16Ptr(std::nullptr_t p) { u_.cp = p; } in Char16Ptr()
219 ConstChar16Ptr::ConstChar16Ptr(const char16_t *p) : p_(p) {} in ConstChar16Ptr()
221 ConstChar16Ptr::ConstChar16Ptr(const uint16_t *p) : p_(cast(p)) {} in ConstChar16Ptr()
224 ConstChar16Ptr::ConstChar16Ptr(const wchar_t *p) : p_(cast(p)) {} in ConstChar16Ptr()
226 ConstChar16Ptr::ConstChar16Ptr(const std::nullptr_t p) : p_(p) {} in ConstChar16Ptr()
235 ConstChar16Ptr::ConstChar16Ptr(const char16_t *p) { u_.cp = p; } in ConstChar16Ptr()
237 ConstChar16Ptr::ConstChar16Ptr(const uint16_t *p) { u_.up = p; } in ConstChar16Ptr()
240 ConstChar16Ptr::ConstChar16Ptr(const wchar_t *p) { u_.wp = p; } in ConstChar16Ptr()
242 ConstChar16Ptr::ConstChar16Ptr(const std::nullptr_t p) { u_.cp = p; } in ConstChar16Ptr()
257 inline const UChar *toUCharPtr(const char16_t *p) { in toUCharPtr()
271 inline UChar *toUCharPtr(char16_t *p) { in toUCharPtr()
285 inline const OldUChar *toOldUCharPtr(const char16_t *p) { in toOldUCharPtr()
299 inline OldUChar *toOldUCharPtr(char16_t *p) { in toOldUCharPtr()