Searched refs:AlphaNum (Results 1 – 6 of 6) sorted by relevance
/external/tensorflow/tensorflow/core/lib/strings/ |
D | strcat.h | 98 class AlphaNum { 103 AlphaNum(int i32) // NOLINT(runtime/explicit) in AlphaNum() function 105 AlphaNum(unsigned int u32) // NOLINT(runtime/explicit) in AlphaNum() function 107 AlphaNum(long x) // NOLINT(runtime/explicit) in AlphaNum() function 109 AlphaNum(unsigned long x) // NOLINT(runtime/explicit) in AlphaNum() function 111 AlphaNum(long long int i64) // NOLINT(runtime/explicit) in AlphaNum() function 113 AlphaNum(unsigned long long int u64) // NOLINT(runtime/explicit) in AlphaNum() function 116 AlphaNum(float f) // NOLINT(runtime/explicit) in AlphaNum() function 118 AlphaNum(double f) // NOLINT(runtime/explicit) in AlphaNum() function 121 AlphaNum(Hex hex); // NOLINT(runtime/explicit) [all …]
|
D | strcat.cc | 29 AlphaNum::AlphaNum(Hex hex) { in AlphaNum() function in tensorflow::strings::AlphaNum 57 static char *Append1(char *out, const AlphaNum &x) { in Append1() 62 static char *Append2(char *out, const AlphaNum &x1, const AlphaNum &x2) { in Append2() 70 static char *Append4(char *out, const AlphaNum &x1, const AlphaNum &x2, in Append4() 71 const AlphaNum &x3, const AlphaNum &x4) { in Append4() 85 string StrCat(const AlphaNum &a) { return string(a.data(), a.size()); } in StrCat() 87 string StrCat(const AlphaNum &a, const AlphaNum &b) { in StrCat() 96 string StrCat(const AlphaNum &a, const AlphaNum &b, const AlphaNum &c) { in StrCat() 106 string StrCat(const AlphaNum &a, const AlphaNum &b, const AlphaNum &c, in StrCat() 107 const AlphaNum &d) { in StrCat() [all …]
|
/external/protobuf/src/google/protobuf/stubs/ |
D | strutil.h | 611 struct LIBPROTOBUF_EXPORT AlphaNum { struct 620 AlphaNum(int32 i32) in AlphaNum() argument 623 AlphaNum(uint32 u32) in AlphaNum() function 626 AlphaNum(int64 i64) in AlphaNum() function 629 AlphaNum(uint64 u64) in AlphaNum() function 633 AlphaNum(float f) in AlphaNum() argument 635 AlphaNum(double f) in AlphaNum() argument 638 AlphaNum(Hex hex); 640 AlphaNum(const char* c_str) in AlphaNum() argument 645 AlphaNum(const string& str) in AlphaNum() function [all …]
|
D | strutil.cc | 1401 AlphaNum::AlphaNum(strings::Hex hex) { in AlphaNum() function in google::protobuf::strings::AlphaNum 1432 static char *Append1(char *out, const AlphaNum &x) { in Append1() 1437 static char *Append2(char *out, const AlphaNum &x1, const AlphaNum &x2) { in Append2() 1446 const AlphaNum &x1, const AlphaNum &x2, in Append4() 1447 const AlphaNum &x3, const AlphaNum &x4) { in Append4() 1461 string StrCat(const AlphaNum &a, const AlphaNum &b) { in StrCat() 1470 string StrCat(const AlphaNum &a, const AlphaNum &b, const AlphaNum &c) { in StrCat() 1480 string StrCat(const AlphaNum &a, const AlphaNum &b, const AlphaNum &c, in StrCat() 1481 const AlphaNum &d) { in StrCat() 1490 string StrCat(const AlphaNum &a, const AlphaNum &b, const AlphaNum &c, in StrCat() [all …]
|
/external/tensorflow/tensorflow/core/lib/core/ |
D | errors.h | 46 typename std::enable_if<!std::is_constructible<strings::AlphaNum, T>::value, 53 inline const strings::AlphaNum& PrepareForStrCat(const strings::AlphaNum& a) { in PrepareForStrCat()
|
/external/tensorflow/tensorflow/core/framework/ |
D | tensor.cc | 944 inline const strings::AlphaNum& PrintOneElement(const strings::AlphaNum& a, in PrintOneElement()
|