Home
last modified time | relevance | path

Searched refs:insertS64 (Results 1 – 2 of 2) sorted by relevance

/third_party/skia/include/core/
DSkString.h196 void insertS64(size_t offset, int64_t value, int minDigits = 0);
207 …void appendS64(int64_t value, int minDigits = 0) { this->insertS64((size_t)-1, value, minDigits); }
218 void prependS64(int32_t value, int minDigits = 0) { this->insertS64(0, value, minDigits); }
/third_party/skia/src/core/
DSkString.cpp474 void SkString::insertS64(size_t offset, int64_t dec, int minDigits) { in insertS64() function in SkString