Home | History | Annotate | Download | only in stubs

Lines Matching refs:text_

90     : text_(value), size_(strlen(text_)) {}
92 : text_(value.data()), size_(value.size()) {}
96 : text_(NULL), size_(-1) {}
105 : text_(scratch_), size_(1) { scratch_[0] = value; }
107 : text_(FastInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {}
109 : text_(FastUInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {}
111 : text_(FastInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {}
113 : text_(FastUInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {}
115 : text_(FastLongToBuffer(value, scratch_)), size_(strlen(text_)) {}
117 : text_(FastULongToBuffer(value, scratch_)), size_(strlen(text_)) {}
119 : text_(FastInt64ToBuffer(value, scratch_)), size_(strlen(text_)) {}
121 : text_(FastUInt64ToBuffer(value, scratch_)), size_(strlen(text_)) {}
123 : text_(FloatToBuffer(value, scratch_)), size_(strlen(text_)) {}
125 : text_(DoubleToBuffer(value, scratch_)), size_(strlen(text_)) {}
127 : text_(value ? "true" : "false"), size_(strlen(text_)) {}
129 inline const char* data() const { return text_; }
133 const char* text_;