本文整理汇总了C++中StringBuffer::capacity方法的典型用法代码示例。如果您正苦于以下问题:C++ StringBuffer::capacity方法的具体用法?C++ StringBuffer::capacity怎么用?C++ StringBuffer::capacity使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类StringBuffer
的用法示例。
在下文中一共展示了StringBuffer::capacity方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: FormatAngleDelta
gcc_const
static inline StringBuffer<TCHAR, 16>
FormatAngleDelta(Angle value)
{
StringBuffer<TCHAR, 16> buffer;
FormatAngleDelta(buffer.data(), buffer.capacity(), value);
return buffer;
}
示例2: FormatBearing
gcc_const
static inline StringBuffer<TCHAR, 16>
FormatBearing(unsigned degrees_value)
{
StringBuffer<TCHAR, 16> buffer;
FormatBearing(buffer.data(), buffer.capacity(), degrees_value);
return buffer;
}
示例3: TextEntryDialog
static inline bool
TextEntryDialog(StringBuffer<TCHAR, N> &text,
const TCHAR *caption,
bool default_shift_state)
{
AllowedCharacters accb=AllowedCharacters();
return TextEntryDialog(text.data(), text.capacity(),
caption, accb, default_shift_state);
}
示例4: FormatGeoPoint
gcc_pure
static inline StringBuffer<TCHAR, 32>
FormatGeoPoint(const GeoPoint &location, CoordinateFormat format,
TCHAR separator = _T(' '))
{
StringBuffer<TCHAR, 32> buffer;
auto result = FormatGeoPoint(location, buffer.data(), buffer.capacity(),
format, separator);
if (result == nullptr)
buffer.clear();
return buffer;
}
示例5: Get
bool Get(const char *key, StringBuffer<TCHAR, max> &value) const {
return Get(key, value.data(), value.capacity());
}