HomeSort by relevance Sort by last modified time
    Searched refs:SetWithoutChecks (Results 1 - 15 of 15) sorted by null

  /art/runtime/mirror/
iftable-inl.h 30 SetWithoutChecks<false>(idx, interface);
dex_cache.cc 60 resolved_methods->SetWithoutChecks<false>(i, trampoline);
72 resolved_methods->SetWithoutChecks<false>(i, trampoline);
object_array-inl.h 95 inline void ObjectArray<T>::SetWithoutChecks(int32_t i, T* object) {
138 SetWithoutChecks<false>(dst_pos + i, obj);
145 SetWithoutChecks<false>(dst_pos + i, obj);
178 SetWithoutChecks<false>(dst_pos + i, obj);
211 SetWithoutChecks<false>(dst_pos + i, nullptr);
216 SetWithoutChecks<false>(dst_pos + i, o);
219 SetWithoutChecks<false>(dst_pos + i, o);
object_array.h 60 ALWAYS_INLINE void SetWithoutChecks(int32_t i, T* object) NO_THREAD_SAFETY_ANALYSIS;
array.h 143 void SetWithoutChecks(int32_t i, T value) ALWAYS_INLINE NO_THREAD_SAFETY_ANALYSIS;
array-inl.h 201 SetWithoutChecks<kTransactionActive, kCheckTransaction>(i, value);
209 inline void PrimitiveArray<T>::SetWithoutChecks(int32_t i, T value) {
class-inl.h 128 virtual_methods->SetWithoutChecks<false>(i, f);
  /art/runtime/
transaction.cc 392 array->AsBooleanArray()->SetWithoutChecks<false>(index, static_cast<uint8_t>(value));
395 array->AsByteArray()->SetWithoutChecks<false>(index, static_cast<int8_t>(value));
398 array->AsCharArray()->SetWithoutChecks<false>(index, static_cast<uint16_t>(value));
401 array->AsShortArray()->SetWithoutChecks<false>(index, static_cast<int16_t>(value));
404 array->AsIntArray()->SetWithoutChecks<false>(index, static_cast<int32_t>(value));
407 array->AsFloatArray()->SetWithoutChecks<false>(index, static_cast<float>(value));
410 array->AsLongArray()->SetWithoutChecks<false>(index, static_cast<int64_t>(value));
413 array->AsDoubleArray()->SetWithoutChecks<false>(index, static_cast<double>(value));
transaction_test.cc 388 booleanArray->SetWithoutChecks<true>(0, true);
389 byteArray->SetWithoutChecks<true>(0, 1);
390 charArray->SetWithoutChecks<true>(0, 1u);
391 shortArray->SetWithoutChecks<true>(0, 1);
392 intArray->SetWithoutChecks<true>(0, 1);
393 longArray->SetWithoutChecks<true>(0, 1);
394 floatArray->SetWithoutChecks<true>(0, 1.0);
395 doubleArray->SetWithoutChecks<true>(0, 1.0);
396 objectArray->SetWithoutChecks<true>(0, h_obj.Get());
class_linker.cc     [all...]
jni_internal.cc     [all...]
  /art/runtime/interpreter/
interpreter_goto_table_impl.cc     [all...]
interpreter_switch_impl.cc     [all...]
interpreter_common.cc 712 newArray->AsIntArray()->SetWithoutChecks<transaction_active>(i, shadow_frame.GetVReg(src_reg));
714 newArray->AsObjectArray<Object>()->SetWithoutChecks<transaction_active>(i, shadow_frame.GetVRegReference(src_reg));
    [all...]
  /art/compiler/
image_writer.cc 469 collector->strings_->SetWithoutChecks<false>(collector->index_++, obj->AsString());
590 array->SetWithoutChecks<false>(i, combined_chars[i]);
    [all...]

Completed in 505 milliseconds