Searched refs:FastIndexOf (Results 1 – 7 of 7) sorted by relevance
/art/runtime/mirror/ |
D | string.cc | 40 int32_t String::FastIndexOf(int32_t ch, int32_t start) { in FastIndexOf() function in art::mirror::String 48 return FastIndexOf<uint8_t>(GetValueCompressed(), ch, start); in FastIndexOf() 50 return FastIndexOf<uint16_t>(GetValue(), ch, start); in FastIndexOf()
|
D | string.h | 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)
|
D | string-inl.h | 177 int32_t String::FastIndexOf(MemoryType* chars, int32_t ch, int32_t start) { in FastIndexOf() function
|
/art/runtime/native/ |
D | java_lang_String.cc | 75 return soa.Decode<mirror::String>(java_this)->FastIndexOf(ch, start); in String_fastIndexOf()
|
/art/runtime/interpreter/ |
D | interpreter_intrinsics.cc | 236 result_register->SetI(str->FastIndexOf(ch, starting_pos)); \
|
D | unstarted_runtime.cc | 1753 result->SetI(receiver->AsString()->FastIndexOf(args[0], args[1])); in UnstartedJNIStringFastIndexOf()
|
/art/runtime/arch/ |
D | stub_test.cc | 2001 expected[x][y][z] = s[x]->FastIndexOf(c_char[y], static_cast<int32_t>(z) - 1); in TEST_F()
|