HomeSort by relevance Sort by last modified time
    Searched full:objectarray (Results 1 - 25 of 103) sorted by null

1 2 3 4 5

  /art/runtime/mirror/
object_array-inl.h 37 inline ObjectArray<T>* ObjectArray<T>::Alloc(Thread* self, Class* object_array_class,
52 inline ObjectArray<T>* ObjectArray<T>::Alloc(Thread* self, Class* object_array_class,
59 inline T* ObjectArray<T>::Get(int32_t i) {
68 inline bool ObjectArray<T>::CheckAssignable(T* object) {
80 inline void ObjectArray<T>::Set(int32_t i, T* object) {
90 inline void ObjectArray<T>::Set(int32_t i, T* object) {
100 inline void ObjectArray<T>::SetWithoutChecks(int32_t i, T* object) {
108 inline void ObjectArray<T>::SetWithoutChecksAndWriteBarrier(int32_t i, T* object)
    [all...]
object_array.h 26 class MANAGED ObjectArray: public Array {
33 static ObjectArray<T>* Alloc(Thread* self, Class* object_array_class, int32_t length,
37 static ObjectArray<T>* Alloc(Thread* self, Class* object_array_class, int32_t length)
73 void AssignableMemmove(int32_t dst_pos, ObjectArray<T>* src, int32_t src_pos,
77 void AssignableMemcpy(int32_t dst_pos, ObjectArray<T>* src, int32_t src_pos,
82 void AssignableCheckingMemcpy(int32_t dst_pos, ObjectArray<T>* src, int32_t src_pos,
86 ObjectArray<T>* CopyOf(Thread* self, int32_t new_length)
98 DISALLOW_IMPLICIT_CONSTRUCTORS(ObjectArray);
iftable.h 26 class MANAGED IfTable FINAL : public ObjectArray<Object> {
throwable.cc 77 mirror::ObjectArray<mirror::Object>* const trace = stack_state->AsObjectArray<mirror::Object>();
95 mirror::ObjectArray<mirror::Object>* object_array =
124 auto* ste_array = down_cast<ObjectArray<StackTraceElement>*>(stack_trace);
  /art/runtime/
image-inl.h 28 mirror::ObjectArray<mirror::Object>* image_roots = GetImageRoots<kReadBarrierOption>();
33 inline mirror::ObjectArray<mirror::Object>* ImageHeader::GetImageRoots() const {
38 mirror::ObjectArray<mirror::Object>* image_roots =
39 reinterpret_cast<mirror::ObjectArray<mirror::Object>*>(image_roots_);
40 mirror::ObjectArray<mirror::Object>* result =
41 ReadBarrier::BarrierForRoot<mirror::ObjectArray<mirror::Object>, kReadBarrierOption>(
class_linker-inl.h 196 inline mirror::ObjectArray<T>* ClassLinker::AllocObjectArray(Thread* self, size_t length) {
197 return mirror::ObjectArray<T>::Alloc(self, GetClassRoot(kObjectArrayClass), length);
200 inline mirror::ObjectArray<mirror::Class>* ClassLinker::AllocClassArray(Thread* self,
202 return mirror::ObjectArray<mirror::Class>::Alloc(self, GetClassRoot(kClassArrayClass), length);
205 inline mirror::ObjectArray<mirror::String>* ClassLinker::AllocStringArray(Thread* self,
207 return mirror::ObjectArray<mirror::String>::Alloc(self,
222 mirror::ObjectArray<mirror::Class>* class_roots = class_roots_.Read();
  /dalvik/dx/tests/087-ssa-local-vars/
Blort.java 8 Object[] objectArray = new Object[8];
10 Object anotherOne = objectArray;
21 System.arraycopy(stringArray, 0, objectArray, 0, stringArray.length);
23 System.arraycopy(objectArray, 0, stringArray, 0, stringArray.length);
25 objectArray[4] = new Object();
27 System.arraycopy(objectArray, 0, stringArray, 0,stringArray.length);
  /art/test/530-instanceof-checkcast/src/
Main.java 24 static Object objectArray = new Object[2];
56 check(false, objectArray instanceof int[]);
61 check(false, objectArray instanceof ExactCheck[]);
67 check(false, objectArray instanceof NormalCheck[]);
73 check(true, objectArray instanceof Object[]);
95 check(false, objectArray instanceof int[]);
100 check(false, objectArray instanceof ExactCheck[]);
106 check(false, objectArray instanceof NormalCheck[]);
112 check(true, objectArray instanceof Object[]);
164 field = (int[])objectArray;
    [all...]
  /art/test/573-checker-checkcast-regression/src/
Main.java 43 Object[] objectArray = (Object[]) new_array;
44 Integer integer1 = (Integer) objectArray[index1];
45 Integer integer2 = (Integer) objectArray[index2];
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
evcoll.h 138 EC_OBJECT_ARRAY_PROPERTY_HANDLE ObjectArray,
148 EC_OBJECT_ARRAY_PROPERTY_HANDLE ObjectArray,
172 EC_OBJECT_ARRAY_PROPERTY_HANDLE ObjectArray,
187 EC_OBJECT_ARRAY_PROPERTY_HANDLE ObjectArray,
203 EC_OBJECT_ARRAY_PROPERTY_HANDLE ObjectArray,
  /art/runtime/native/
java_lang_reflect_Method.cc 68 mirror::ObjectArray<mirror::Class>* declared_exceptions = klass->GetThrows()->Get(throws_index);
71 mirror::ObjectArray<mirror::Class>* result_array =
81 mirror::ObjectArray<mirror::Class>* empty_array =
82 mirror::ObjectArray<mirror::Class>::Alloc(soa.Self(), class_array_class, 0);
java_lang_reflect_AbstractMethod.cc 37 mirror::ObjectArray<mirror::Object>* empty_array =
38 mirror::ObjectArray<mirror::Object>::Alloc(soa.Self(), annotation_array_class, 0);
java_lang_reflect_Constructor.cc 56 mirror::ObjectArray<mirror::Class>* empty_array =
57 mirror::ObjectArray<mirror::Class>::Alloc(soa.Self(), class_array_class, 0);
69 mirror::ObjectArray<mirror::Class>* result_array =
79 mirror::ObjectArray<mirror::Class>* empty_array =
80 mirror::ObjectArray<mirror::Class>::Alloc(soa.Self(), class_array_class, 0);
java_lang_Class.cc 111 static mirror::ObjectArray<mirror::Field>* GetDeclaredFields(
132 auto object_array = hs.NewHandle(mirror::ObjectArray<mirror::Field>::Alloc(
329 soa.Decode<mirror::ObjectArray<mirror::Class>*>(args));
349 auto h_constructors = hs.NewHandle(mirror::ObjectArray<mirror::Constructor>::Alloc(
376 soa.Decode<mirror::ObjectArray<mirror::Class>*>(args));
394 auto ret = hs.NewHandle(mirror::ObjectArray<mirror::Method>::Alloc(
439 mirror::ObjectArray<mirror::Object>* empty_array =
440 mirror::ObjectArray<mirror::Object>::Alloc(soa.Self(), annotation_array_class, 0);
450 mirror::ObjectArray<mirror::Class>* classes = nullptr;
466 mirror::ObjectArray<mirror::Class>* empty_array
    [all...]
java_lang_System.cc 124 mirror::ObjectArray<mirror::Object>* dstObjArray = dstArray->AsObjectArray<mirror::Object>();
125 mirror::ObjectArray<mirror::Object>* srcObjArray = srcArray->AsObjectArray<mirror::Object>();
145 mirror::ObjectArray<mirror::Object>* dstObjArray = dstArray->AsObjectArray<mirror::Object>();
146 mirror::ObjectArray<mirror::Object>* srcObjArray = srcArray->AsObjectArray<mirror::Object>();
java_lang_reflect_Array.cc 65 mirror::Array* new_array = mirror::ObjectArray<mirror::Object*>::Alloc(
  /external/replicaisland/src/com/replica/replicaisland/
ObjectManager.java 85 final Object[] objectArray = mObjects.getArray();
87 BaseObject object = (BaseObject)objectArray[i];
120 final Object[] objectArray = mObjects.getArray();
122 mPendingRemovals.add((BaseObject)objectArray[i]);
GameObjectManager.java 86 final Object[] objectArray = objects.getArray();
88 GameObject gameObject = (GameObject)objectArray[i];
RenderSystem.java 63 final Object[] objectArray = objects.getArray();
66 RenderElement element = (RenderElement)objectArray[i];
  /art/test/011-array-copy/src/
Main.java 31 Object[] objectArray = new Object[8];
37 System.arraycopy(stringArray, 0, objectArray, 0, stringArray.length);
39 System.arraycopy(objectArray, 0, stringArray, 0, stringArray.length);
41 objectArray[4] = new ImplA();
43 System.arraycopy(objectArray, 0, stringArray, 0,stringArray.length);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassObjectReference/
ReflectedType002Debuggee.java 30 Object[] objectArray = new Object[0];
  /art/runtime/gc/
heap_test.cc 53 Handle<mirror::ObjectArray<mirror::Object>> array(hs2.NewHandle(
54 mirror::ObjectArray<mirror::Object>::Alloc(soa.Self(), c.Get(), 2048)));
  /art/runtime/interpreter/
unstarted_runtime_test.cc 81 static mirror::ObjectArray<mirror::Object>* CreateObjectArray(
89 mirror::ObjectArray<mirror::Object>* result =
90 mirror::ObjectArray<mirror::Object>::Alloc(self, array_type, 3);
99 static void CheckObjectArray(mirror::ObjectArray<mirror::Object>* array,
112 mirror::ObjectArray<mirror::Object>* src,
114 mirror::ObjectArray<mirror::Object>* dst,
147 Handle<mirror::ObjectArray<mirror::Object>> src_handle(
150 Handle<mirror::ObjectArray<mirror::Object>> dst_handle(
428 Handle<mirror::ObjectArray<mirror::Object>> array(
438 mirror::ObjectArray<mirror::Object>* class_as_array
    [all...]
  /external/caliper/examples/src/main/java/examples/
CopyArrayBenchmark.java 245 Object[] objectArray;
256 objectArray = new Object[size];
269 objectArray[i] = new Object();
284 dummy += System.identityHashCode(strategy.copy(objectArray));
  /external/pdfium/fpdfsdk/src/
fpdf_flatten.cpp 327 CPDF_ObjectArray ObjectArray;
331 iRet = ParserAnnots(pDocument, pPageDict, &RectArray, &ObjectArray, nFlag);
393 int nStreams = ObjectArray.GetSize();
424 CPDF_Dictionary* pAnnotDic = ObjectArray.GetAt(i);
520 ObjectArray.RemoveAll();

Completed in 1535 milliseconds

1 2 3 4 5