| /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];
|
| /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...] |
| /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassObjectReference/ |
| ReflectedType002Debuggee.java | 30 Object[] objectArray = new Object[0];
|
| /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];
|
| GameRenderer.java | 210 Object[] objectArray = objects.getArray(); 218 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/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/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/ |
| JsonTest.java | 49 test.objectArray = new Array(); 50 test.objectArray.add("meow"); 51 test.objectArray.add(new Test1()); 176 public Array objectArray;
|
| /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
| ArraysTest.java | 75 Object[] objectArray; 85 List convertedList = Arrays.asList(objectArray); 89 convertedList.get(counter) == objectArray[counter]); 97 Object[] myArray = (Object[]) (objectArray.clone()); 276 Arrays.binarySearch(objectArray, objArray[counter]) == counter); 278 -1, Arrays.binarySearch(objectArray, new Integer(-1))); 281 Arrays.binarySearch(objectArray, new Integer(arraySize)) == -(arraySize + 1)); 305 objectArray[counter] = objArray[arraySize - counter - 1]; 308 Arrays.binarySearch(objectArray, new Integer(-1), comp) == -(arraySize + 1)); 310 -1, Arrays.binarySearch(objectArray, new Integer(arraySize), comp)) [all...] |
| /art/runtime/ |
| transaction_test.cc | 444 mirror::ObjectArray<mirror::Object>* objectArray = 446 ASSERT_TRUE(objectArray != nullptr); 447 ASSERT_EQ(objectArray->GetLength(), 1); 448 ASSERT_EQ(objectArray->GetWithoutChecks(0), nullptr); 469 objectArray->SetWithoutChecks<true>(0, h_obj.Get()); 482 EXPECT_EQ(objectArray->GetWithoutChecks(0), nullptr);
|
| /cts/tests/tests/util/src/android/util/cts/ |
| ArraySetTest.java | 492 Object[] objectArray = arraySet.toArray(); 493 compareArraySetAndRawArray(arraySet, objectArray);
|
| /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
| org.eclipse.core.runtime_3.6.0.v20100505.jar | |
| org.eclipse.equinox.ds_1.2.1.R36x_v20100803.jar | |
| /prebuilts/tools/common/eclipse/ |
| org.eclipse.core.runtime_3.6.0.v20100505.jar | |
| /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/ |
| org.eclipse.core.runtime_3.9.100.v20131218-1515.jar | |
| org.eclipse.equinox.ds_1.4.101.v20130813-1853.jar | |
| /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/ |
| org.eclipse.core.runtime_3.9.0.v20130326-1255.jar | |
| org.eclipse.equinox.ds_1.4.100.v20130515-2026.jar | |
| /external/pdfium/xfa/src/fxfa/src/parser/ |
| xfa_object_imp.cpp | 705 CXFA_ObjArray objectArray;
706 hValueArray.GetAttributeObject(objectArray);
707 for (int32_t i = 0; i < objectArray.GetSize(); i++) {
708 if (objectArray[i]->IsNode()) {
709 pNodeList->Append((CXFA_Node*)objectArray[i]);
[all...] |
| /prebuilts/tools/common/m2/repository/org/apache/velocity/velocity/1.5/ |
| velocity-1.5.jar | |
| /prebuilts/tools/common/m2/repository/org/apache/velocity/velocity/1.7/ |
| velocity-1.7.jar | |
| /external/owasp/sanitizer/distrib/lib/ |
| guava.jar | |