Lines Matching full:bytearray
79 // - ByteArray
999 V(ByteArray) \
4388 // ByteArray represents fixed sized byte arrays. Used for the relocation info
4390 class ByteArray: public FixedArrayBase {
4422 // Returns a pointer to the ByteArray object for a given data start address.
4423 static inline ByteArray* FromDataStartAddress(Address address);
4425 DECLARE_CAST(ByteArray)
4429 DECLARE_PRINTER(ByteArray)
4430 DECLARE_VERIFIER(ByteArray)
4435 // Maximal memory consumption for a single ByteArray.
4437 // Maximal length of a single ByteArray.
4441 DISALLOW_IMPLICIT_CONSTRUCTORS(ByteArray);
4444 // Wrapper class for ByteArray which can store arbitrary C++ classes, as long
4447 class PodArray : public ByteArray {
4452 ByteArray::copy_out(index * sizeof(T), reinterpret_cast<byte*>(result),
4464 int length() { return ByteArray::length() / sizeof(T); }
4527 DECL_ACCESSORS(source_position_table, ByteArray)
4752 DECLARE_ELEMENT_ACCESSORS(TranslationByteArray, ByteArray)
4916 DECL_ACCESSORS(relocation_info, ByteArray)
4926 // [source_position_table]: ByteArray for the source positions table.
4927 DECL_ACCESSORS(source_position_table, ByteArray)
4965 inline ByteArray* unchecked_relocation_info();
5453 inline ByteArray* source_position_table();
5456 inline void set_source_position_table(ByteArray* source_position_table);