Home | History | Annotate | Download | only in src

Lines Matching defs:ByteArray

78 //       - ByteArray
1081 V(ByteArray) \
4856 // ByteArray represents fixed sized byte arrays. Used for the relocation info
4858 class ByteArray: public FixedArrayBase {
4890 // Returns a pointer to the ByteArray object for a given data start address.
4891 static inline ByteArray* FromDataStartAddress(Address address);
4893 DECLARE_CAST(ByteArray)
4897 DECLARE_PRINTER(ByteArray)
4898 DECLARE_VERIFIER(ByteArray)
4903 // Maximal memory consumption for a single ByteArray.
4905 // Maximal length of a single ByteArray.
4909 DISALLOW_IMPLICIT_CONSTRUCTORS(ByteArray);
4912 // Wrapper class for ByteArray which can store arbitrary C++ classes, as long
4915 class PodArray : public ByteArray {
4920 ByteArray::copy_out(index * sizeof(T), reinterpret_cast<byte*>(result),
4932 int length() { return ByteArray::length() / sizeof(T); }
4980 DECL_ACCESSORS(source_position_table, ByteArray)
5203 DECLARE_ELEMENT_ACCESSORS(TranslationByteArray, ByteArray)
5403 DECL_ACCESSORS(relocation_info, ByteArray)
5413 // [source_position_table]: ByteArray for the source positions table.
5414 DECL_ACCESSORS(source_position_table, ByteArray)
5452 inline ByteArray* unchecked_relocation_info();
5929 inline ByteArray* source_position_table();
5932 inline void set_source_position_table(ByteArray* source_position_table);