Home
last modified time | relevance | path

Searched refs:array_builder_ (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/
Dstring-builder.cc15 if (array_builder_.length() == 0) { in ToString()
28 StringBuilderConcatHelper(*subject_, char_buffer, *array_builder_.array(), in ToString()
29 array_builder_.length()); in ToString()
40 StringBuilderConcatHelper(*subject_, char_buffer, *array_builder_.array(), in ToString()
41 array_builder_.length()); in ToString()
Dstring-builder.h196 array_builder_(heap->isolate(), estimated_part_count), in ReplacementStringBuilder()
223 void EnsureCapacity(int elements) { array_builder_.EnsureCapacity(elements); } in EnsureCapacity()
227 AddSubjectSlice(&array_builder_, from, to); in AddSubjectSlice()
258 DCHECK(array_builder_.capacity() > array_builder_.length()); in AddElement()
259 array_builder_.Add(element); in AddElement()
263 FixedArrayBuilder array_builder_; variable
/external/v8/src/interpreter/
Dbytecode-array-builder.cc14 : array_builder_(array_builder), in PreviousBytecodeHelper()
15 previous_bytecode_start_(array_builder_.last_bytecode_start_) { in PreviousBytecodeHelper()
18 DCHECK(array_builder_.LastBytecodeInSameBlock()); in PreviousBytecodeHelper()
23 DCHECK_EQ(array_builder_.last_bytecode_start_, previous_bytecode_start_); in GetBytecode()
25 array_builder_.bytecodes()->at(previous_bytecode_start_)); in GetBytecode()
31 DCHECK_EQ(array_builder_.last_bytecode_start_, previous_bytecode_start_); in GetOperand()
45 array_builder_.bytecodes()->at(operand_offset)); in GetOperand()
48 (array_builder_.bytecodes()->at(operand_offset) << 8) + in GetOperand()
49 array_builder_.bytecodes()->at(operand_offset + 1); in GetOperand()
55 return array_builder_.constant_array_builder()->At( in GetConstantForIndexOperand()
[all …]