Lines Matching refs:int32_t

72   int32_t GetLength() REQUIRES_SHARED(Locks::mutator_lock_) {  in GetLength()
77 int32_t GetCount() REQUIRES_SHARED(Locks::mutator_lock_) { in GetCount()
81 void SetCount(int32_t new_count) REQUIRES_SHARED(Locks::mutator_lock_) { in SetCount()
87 int32_t GetHashCode() REQUIRES_SHARED(Locks::mutator_lock_);
90 int32_t ComputeHashCode() REQUIRES_SHARED(Locks::mutator_lock_);
92 int32_t GetUtfLength() REQUIRES_SHARED(Locks::mutator_lock_);
94 uint16_t CharAt(int32_t index) REQUIRES_SHARED(Locks::mutator_lock_);
104 ALWAYS_INLINE static String* AllocFromByteArray(Thread* self, int32_t byte_length,
105 Handle<ByteArray> array, int32_t offset,
106 int32_t high_byte,
111 ALWAYS_INLINE static String* AllocFromCharArray(Thread* self, int32_t count,
112 Handle<CharArray> array, int32_t offset,
117 ALWAYS_INLINE static String* AllocFromString(Thread* self, int32_t string_length,
118 Handle<String> string, int32_t offset,
130 static String* AllocFromUtf16(Thread* self, int32_t utf16_length, const uint16_t* utf16_data_in)
136 static String* AllocFromModifiedUtf8(Thread* self, int32_t utf16_length,
137 const char* utf8_data_in, int32_t utf8_length)
140 static String* AllocFromModifiedUtf8(Thread* self, int32_t utf16_length, const char* utf8_data_in)
157 int Compare(int32_t utf16_length, const char* utf8_data_in);
160 bool Equals(const uint16_t* that_chars, int32_t that_offset,
161 int32_t that_length)
167 int32_t FastIndexOf(int32_t ch, int32_t start) REQUIRES_SHARED(Locks::mutator_lock_);
170 int32_t FastIndexOf(MemoryType* chars, int32_t ch, int32_t start)
173 int32_t CompareTo(ObjPtr<String> other) REQUIRES_SHARED(Locks::mutator_lock_);
178 void GetChars(int32_t start, int32_t end, Handle<CharArray> array, int32_t index)
193 ALWAYS_INLINE static bool IsCompressed(int32_t count) { in IsCompressed()
197 ALWAYS_INLINE static StringCompressionFlag GetCompressionFlagFromCount(int32_t count) { in GetCompressionFlagFromCount()
203 ALWAYS_INLINE static int32_t GetLengthFromCount(int32_t count) { in GetLengthFromCount()
204 return kUseStringCompression ? static_cast<int32_t>(static_cast<uint32_t>(count) >> 1) : count; in GetLengthFromCount()
207 ALWAYS_INLINE static int32_t GetFlaggedCount(int32_t length, bool compressible) { in GetFlaggedCount()
209 ? static_cast<int32_t>((static_cast<uint32_t>(length) << 1) | in GetFlaggedCount()
240 static bool AllASCIIExcept(const uint16_t* chars, int32_t length, uint16_t non_ascii);
242 void SetHashCode(int32_t new_hash_code) REQUIRES_SHARED(Locks::mutator_lock_) { in SetHashCode()
250 ALWAYS_INLINE static String* Alloc(Thread* self, int32_t utf16_length_with_flag,
259 int32_t count_;