Lines Matching refs:end
12 uintType ConvertStringTo ## uintType(const charType *s, const charType **end) throw() { \
13 if (end) *end = s; \
17 if (c < '0' || c > '9') { if (end) *end = s; return res; } \
30 Int32 ConvertStringToInt32(const char *s, const char **end) throw()
32 if (end)
33 *end = s;
48 if (end)
49 *end = end2;
56 Int32 ConvertStringToInt32(const wchar_t *s, const wchar_t **end) throw()
58 if (end)
59 *end = s;
74 if (end)
75 *end = end2;
81 UInt32 ConvertOctStringToUInt32(const char *s, const char **end) throw()
83 if (end)
84 *end = s;
91 if (end)
92 *end = s;
102 UInt64 ConvertOctStringToUInt64(const char *s, const char **end) throw()
104 if (end)
105 *end = s;
112 if (end)
113 *end = s;
123 UInt32 ConvertHexStringToUInt32(const char *s, const char **end) throw()
125 if (end)
126 *end = s;
137 if (end)
138 *end = s;
148 UInt64 ConvertHexStringToUInt64(const char *s, const char **end) throw()
150 if (end)
151 *end = s;
162 if (end)
163 *end = s;