Lines Matching defs:string
87 V8_INLINE Handle<String> string() const {
114 void set_string(Handle<String> string) {
115 DCHECK(!string.is_null());
117 string_ = string;
149 // We're putting the new string to the head of the list, meaning
150 // the string segments will be in reverse order.
154 segment_.string = s;
159 DCHECK_IMPLIES(segment_.string == nullptr, segment_.next == nullptr);
160 DCHECK_IMPLIES(segment_.string != nullptr, !segment_.string->IsEmpty());
161 return segment_.string == nullptr;
193 // * For empty strings the string pointer is null,
197 const AstRawString* string;
205 // |bigint| must be a NUL-terminated string of ASCII characters
277 F(string, "string") \
353 const AstRawString* GetOneByteString(const char* string) {
354 return GetOneByteString(base::OneByteVector(string));
382 AstRawString* AddString(AstRawString* string) {
383 *strings_end_ = string;
384 strings_end_ = string->next_location();
385 return string;
404 // Holds constant string values which are shared across the isolate.