Lines Matching refs:int32_t
43 explicit SetStringCountVisitor(int32_t count) : count_(count) { in SetStringCountVisitor()
54 const int32_t count_;
60 SetStringCountAndBytesVisitor(int32_t count, Handle<ByteArray> src_array, int32_t offset, in SetStringCountAndBytesVisitor()
61 int32_t high_byte) in SetStringCountAndBytesVisitor()
78 const int32_t count_;
80 const int32_t offset_;
81 const int32_t high_byte_;
87 SetStringCountAndValueVisitorFromCharArray(int32_t count, Handle<CharArray> src_array, in SetStringCountAndValueVisitorFromCharArray()
88 int32_t offset) : in SetStringCountAndValueVisitorFromCharArray()
102 const int32_t count_;
104 const int32_t offset_;
110 SetStringCountAndValueVisitorFromString(int32_t count, Handle<String> src_string, in SetStringCountAndValueVisitorFromString()
111 int32_t offset) : in SetStringCountAndValueVisitorFromString()
125 const int32_t count_;
127 const int32_t offset_;
134 inline uint16_t String::CharAt(int32_t index) { in CharAt()
135 int32_t count = GetField32(OFFSET_OF_OBJECT_MEMBER(String, count_)); in CharAt()
156 inline String* String::Alloc(Thread* self, int32_t utf16_length, gc::AllocatorType allocator_type, in Alloc()
191 inline String* String::AllocFromByteArray(Thread* self, int32_t byte_length, in AllocFromByteArray()
192 Handle<ByteArray> array, int32_t offset, in AllocFromByteArray()
193 int32_t high_byte, gc::AllocatorType allocator_type) { in AllocFromByteArray()
200 inline String* String::AllocFromCharArray(Thread* self, int32_t count, in AllocFromCharArray()
201 Handle<CharArray> array, int32_t offset, in AllocFromCharArray()
211 inline String* String::AllocFromString(Thread* self, int32_t string_length, Handle<String> string, in AllocFromString()
212 int32_t offset, gc::AllocatorType allocator_type) { in AllocFromString()
218 inline int32_t String::GetHashCode() { in GetHashCode()
219 int32_t result = GetField32(OFFSET_OF_OBJECT_MEMBER(String, hash_code_)); in GetHashCode()