Lines Matching refs:int32_t
54 explicit SetStringCountVisitor(int32_t count) : count_(count) { in SetStringCountVisitor()
66 const int32_t count_;
72 SetStringCountAndBytesVisitor(int32_t count, Handle<ByteArray> src_array, int32_t offset, in SetStringCountAndBytesVisitor()
73 int32_t high_byte) in SetStringCountAndBytesVisitor()
83 int32_t length = String::GetLengthFromCount(count_); in operator()
99 const int32_t count_;
101 const int32_t offset_;
102 const int32_t high_byte_;
108 SetStringCountAndValueVisitorFromCharArray(int32_t count, Handle<CharArray> src_array, in SetStringCountAndValueVisitorFromCharArray()
109 int32_t offset) : in SetStringCountAndValueVisitorFromCharArray()
119 const int32_t length = String::GetLengthFromCount(count_); in operator()
130 const int32_t count_;
132 const int32_t offset_;
138 SetStringCountAndValueVisitorFromString(int32_t count, in SetStringCountAndValueVisitorFromString()
140 int32_t offset) : in SetStringCountAndValueVisitorFromString()
149 const int32_t length = String::GetLengthFromCount(count_); in operator()
167 const int32_t count_;
169 const int32_t offset_;
172 inline uint16_t String::CharAt(int32_t index) { in CharAt()
173 int32_t count = GetLength(); in CharAt()
186 int32_t String::FastIndexOf(MemoryType* chars, int32_t ch, int32_t start) { in FastIndexOf()
213 inline String* String::Alloc(Thread* self, int32_t utf16_length_with_flag, in Alloc()
253 const int32_t length_with_flag = String::GetFlaggedCount(0, /* compressible */ true); in AllocEmptyString()
259 inline String* String::AllocFromByteArray(Thread* self, int32_t byte_length, in AllocFromByteArray()
260 Handle<ByteArray> array, int32_t offset, in AllocFromByteArray()
261 int32_t high_byte, gc::AllocatorType allocator_type) { in AllocFromByteArray()
266 const int32_t length_with_flag = String::GetFlaggedCount(byte_length, compressible); in AllocFromByteArray()
273 inline String* String::AllocFromCharArray(Thread* self, int32_t count, in AllocFromCharArray()
274 Handle<CharArray> array, int32_t offset, in AllocFromCharArray()
280 const int32_t length_with_flag = String::GetFlaggedCount(count, compressible); in AllocFromCharArray()
287 inline String* String::AllocFromString(Thread* self, int32_t string_length, Handle<String> string, in AllocFromString()
288 int32_t offset, gc::AllocatorType allocator_type) { in AllocFromString()
292 const int32_t length_with_flag = String::GetFlaggedCount(string_length, compressible); in AllocFromString()
298 inline int32_t String::GetHashCode() { in GetHashCode()
299 int32_t result = GetField32(OFFSET_OF_OBJECT_MEMBER(String, hash_code_)); in GetHashCode()