HomeSort by relevance Sort by last modified time
    Searched defs:SimpleItoa (Results 1 - 2 of 2) sorted by null

  /external/dynamic_depth/internal/strings/
numbers.h 118 // SimpleItoa()
124 inline string SimpleItoa(int32 i) {
129 // We need this overload because otherwise SimpleItoa(5U) wouldn't compile.
130 inline string SimpleItoa(uint32 i) {
135 inline string SimpleItoa(int64 i) {
140 // We need this overload because otherwise SimpleItoa(5ULL) wouldn't compile.
141 inline string SimpleItoa(uint64 i) {
146 inline string SimpleItoa(long i) { // NOLINT long is OK here
148 return SimpleItoa(static_cast<int64>(i));
150 return SimpleItoa(static_cast<int32>(i))
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
strutil.cc     [all...]

Completed in 73 milliseconds