Lines Matching defs:const
20 const int kStringBuilderConcatHelperLengthBits = 11;
21 const int kStringBuilderConcatHelperPositionBits = 19;
134 V8_INLINE void AppendCStringLiteral(const char (&literal)[N]) {
136 const int length = N - 1;
140 const uint8_t* chars = reinterpret_cast<const uint8_t*>(literal);
151 V8_INLINE void AppendCString(const char* s) {
152 const uint8_t* u = reinterpret_cast<const uint8_t*>(s);
160 V8_INLINE void AppendCString(const base::uc16* s) {
170 const char* str =
196 V8_INLINE bool HasOverflowed() const { return overflowed_; }
198 int Length() const;
212 const DisallowGarbageCollection& no_gc) {
244 V8_INLINE void AppendCString(const char* s) {
245 const uint8_t* u = reinterpret_cast<const uint8_t*>(s);
284 const DisallowGarbageCollection& no_gc)
323 bool HasValidCurrentIndex() const;
335 static const int kInitialPartLength = 32;
336 static const int kMaxPartLength = 16 * 1024;
337 static const int kPartLengthGrowthFactor = 2;
338 static const int kIntToCStringBufferSize = 100;