Searched defs:ConstChar16Ptr (Results 1 – 4 of 4) sorted by relevance
222 ConstChar16Ptr::ConstChar16Ptr(const char16_t *p) : p_(p) {} in ConstChar16Ptr() function224 ConstChar16Ptr::ConstChar16Ptr(const uint16_t *p) : p_(cast(p)) {} in ConstChar16Ptr() function227 ConstChar16Ptr::ConstChar16Ptr(const wchar_t *p) : p_(cast(p)) {} in ConstChar16Ptr() function229 ConstChar16Ptr::ConstChar16Ptr(const std::nullptr_t p) : p_(p) {} in ConstChar16Ptr() function238 ConstChar16Ptr::ConstChar16Ptr(const char16_t *p) { u_.cp = p; } in ConstChar16Ptr() function240 ConstChar16Ptr::ConstChar16Ptr(const uint16_t *p) { u_.up = p; } in ConstChar16Ptr() function243 ConstChar16Ptr::ConstChar16Ptr(const wchar_t *p) { u_.wp = p; } in ConstChar16Ptr() function245 ConstChar16Ptr::ConstChar16Ptr(const std::nullptr_t p) { u_.cp = p; } in ConstChar16Ptr() function