/aosp12/art/test/450-checker-types/src/ |
H A D | Main.java | 201 public void testInstanceOf(Object o) { in testInstanceOf() 290 public void testInstanceOfKeep(Object o) { in testInstanceOfKeep() 321 Object o; in testInstanceOfWithPhi() local 339 Object o = new SubclassA(); in testInstanceOfInFor() local 356 Object o = new SubclassA(); in testInstanceOfSubclass() local 368 Object o; in testInstanceOfWithPhiSubclass() local 386 Object o; in testInstanceOfWithPhiTop() local 404 Object o = new SubclassA(); in testInstanceOfSubclassInFor() local 421 Object o = new SubclassA(); in testInstanceOfTopInFor() local 676 Main o = getNull(); in testInlinerReturnsNull() local [all …]
|
/aosp12/art/test/486-checker-must-do-null-check/src/ |
H A D | Main.java | 20 public void InstanceOfPreChecked(Object o) throws Exception { in InstanceOfPreChecked() 29 public void InstanceOf(Object o) throws Exception { in InstanceOf() 37 public void CheckCastPreChecked(Object o) { in CheckCastPreChecked() 44 public void CheckCast(Object o) { in CheckCast()
|
/aosp12/art/test/201-built-in-except-detail-messages/src/ |
H A D | Main.java | 96 Object o = os[2]; in arrayAccess() local 106 Object o = new Exception(); in arrayStore() local 116 Object o = new Integer(5); in arrayStore() local 126 Object o = new C[4]; in arrayStore() local 196 Object o = new Exception(); in classCast() local 205 Object o = (C) makeArray(String.class); in classCast() local 213 Object o = (C) makeArray(float.class); in classCast() local 221 Object o = (C) makeArray(char[].class); in classCast() local 229 Object o = (Object[][][]) makeInteger(); in classCast() local 301 Object o = returnNullObject(); in nullPointers() local
|
/aosp12/art/test/641-checker-arraycopy/src/ |
H A D | Main.java | 28 public static void typedCopy(Object o, byte[] foo) { in typedCopy() 33 public static void untypedCopy(Object o, Object foo) { in untypedCopy() 46 public static void untypedCopyCaller(Object o, byte[] array) { in untypedCopyCaller() 59 Object[] o = new Object[2]; in main() local
|
/aosp12/packages/modules/NeuralNetworks/common/include/nnapi/ |
H A D | Result.h | 100 bool nnTryHasValue(const base::expected<T, E>& o) { in nnTryHasValue() 105 T nnTryGetValue(base::expected<T, E> o) { in nnTryGetValue() 110 base::unexpected<E> nnTryGetError(base::expected<T, E> o) { in nnTryGetError() 115 bool nnTryHasValue(const std::optional<T>& o) { in nnTryHasValue() 120 T nnTryGetValue(std::optional<T> o) { in nnTryGetValue()
|
/aosp12/art/test/639-checker-code-sinking/src/ |
H A D | Main.java | 72 Object o = new Object(); in testSimpleUse() local 97 Object o = new Object(); in testTwoUses() local 198 Object[] o = new Object[1]; in testArrayStores() local 208 Object[] o = new Object[1]; // dead allocation, should eventually be removed b/35634932. in testOnlyStoreUses() local 253 Object o = null; in testPhiInput() local 304 Object o = obj; in testStaticSideEffects() local 381 Object[] o = new Object[1]; in testSinkingOverInvoke() local
|
/aosp12/packages/apps/Nfc/nci/jni/ |
H A D | NativeLlcpSocket.cpp | 42 static jboolean nativeLlcpSocket_doConnect(JNIEnv* e, jobject o, jint nSap) { in nativeLlcpSocket_doConnect() 66 static jboolean nativeLlcpSocket_doConnectBy(JNIEnv* e, jobject o, jstring sn) { in nativeLlcpSocket_doConnectBy() 94 static jboolean nativeLlcpSocket_doClose(JNIEnv* e, jobject o) { in nativeLlcpSocket_doClose() 117 static jboolean nativeLlcpSocket_doSend(JNIEnv* e, jobject o, jbyteArray data) { in nativeLlcpSocket_doSend() 144 static jint nativeLlcpSocket_doReceive(JNIEnv* e, jobject o, in nativeLlcpSocket_doReceive() 179 static jint nativeLlcpSocket_doGetRemoteSocketMIU(JNIEnv* e, jobject o) { in nativeLlcpSocket_doGetRemoteSocketMIU() 201 static jint nativeLlcpSocket_doGetRemoteSocketRW(JNIEnv* e, jobject o) { in nativeLlcpSocket_doGetRemoteSocketRW()
|
/aosp12/art/test/521-checker-array-set-null/src/ |
H A D | Main.java | 26 public static void testWithNull(Object[] o) { in testWithNull() 32 public static void testWithUnknown(Object[] o, Object obj) { in testWithUnknown() 38 public static void testWithSame(Object[] o) { in testWithSame()
|
/aosp12/frameworks/base/core/java/android/os/ |
H A D | BaseBundle.java | 201 Object o = mMap.valueAt(0); in getPairValue() local 936 Object o = mMap.get(key); in getBoolean() local 970 Object o = mMap.get(key); in getByte() local 1004 Object o = mMap.get(key); in getChar() local 1038 Object o = mMap.get(key); in getShort() local 1072 Object o = mMap.get(key); in getInt() local 1106 Object o = mMap.get(key); in getLong() local 1140 Object o = mMap.get(key); in getFloat() local 1174 Object o = mMap.get(key); in getDouble() local 1269 Object o = mMap.get(key); in getSerializable() local [all …]
|
/aosp12/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | LaunchObserverRegistryImpl.java | 138 ActivityMetricsLaunchObserver o = mList.get(i); in handleOnIntentStarted() local 146 ActivityMetricsLaunchObserver o = mList.get(i); in handleOnIntentFailed() local 156 ActivityMetricsLaunchObserver o = mList.get(i); in handleOnActivityLaunched() local 165 ActivityMetricsLaunchObserver o = mList.get(i); in handleOnActivityLaunchCancelled() local 174 ActivityMetricsLaunchObserver o = mList.get(i); in handleOnActivityLaunchFinished() local 183 ActivityMetricsLaunchObserver o = mList.get(i); in handleOnReportFullyDrawn() local
|
/aosp12/art/test/148-multithread-gc-annotations/src/ |
H A D | MovingGCThread.java | 33 Object o = new Object(); in testHomogeneousCompaction() local 53 Object o = new Object(); in allocateStuff() local 54 treeMap.put(o.hashCode(), o); in allocateStuff() local
|
/aosp12/frameworks/base/services/core/java/com/android/server/utils/ |
H A D | WatchedArrayList.java | 62 private void registerChild(Object o) { in registerChild() 73 private void unregisterChild(Object o) { in unregisterChild() 86 private void unregisterChildIf(Object o) { in unregisterChildIf() 271 public boolean contains(Object o) { in contains() 292 public int indexOf(Object o) { in indexOf() 306 public int lastIndexOf(Object o) { in lastIndexOf() 324 public boolean remove(Object o) { in remove() 357 public boolean equals(@Nullable Object o) { in equals()
|
/aosp12/system/tools/aidl/ |
H A D | aidl_const_expressions.cpp | 63 T operator+(T o) { in operator +() 68 T operator-(T o) { in operator -() 73 T operator*(T o) { in operator *() 87 T operator/(T o) { in operator /() 94 T operator%(T o) { in operator %() 101 T operator|(T o) { return mValue | o; } in operator |() 102 T operator^(T o) { return mValue ^ o; } in operator ^() 103 T operator&(T o) { return mValue & o; } in operator &() 104 T operator<(T o) { return mValue < o; } in operator <() 110 T operator>>(T o) { in operator >>() [all …]
|
/aosp12/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/ |
H A D | MockSuggestionProviderCursor.java | 112 Object o = mValues[column]; in getDouble() local 119 Object o = mValues[column]; in getFloat() local 126 Object o = mValues[column]; in getInt() local 132 Object o = mValues[column]; in getLong() local 138 Object o = mValues[column]; in getShort() local 144 Object o = mValues[column]; in getString() local
|
/aosp12/art/test/540-checker-rtp-bug/src/ |
H A D | Main.java | 37 public static Final testKeepCheckCast(Object o, boolean cond) { in testKeepCheckCast() 55 public static void testKeepInstanceOf(Object o, boolean cond) { in testKeepInstanceOf() 79 public static String testNoInline(Object o, boolean cond) { in testNoInline()
|
/aosp12/art/test/1337-gc-coverage/src/ |
H A D | Main.java | 30 Object o = new Object(); in allocateStuff() local 31 treeMap.put(o.hashCode(), o); in allocateStuff() local 38 Object o = new Object(); in testHomogeneousCompaction() local
|
/aosp12/art/test/004-checker-UnsafeTest18/src/ |
H A D | Main.java | 40 public Object o = null; field in Main 53 private static int set32(Object o, long offset, int newValue) { in set32() 60 private static long set64(Object o, long offset, long newValue) { in set64() 67 private static Object setObj(Object o, long offset, Object newValue) { in setObj() 78 private static int add32(Object o, long offset, int delta) { in add32() 85 private static long add64(Object o, long offset, long delta) { in add64()
|
/aosp12/art/test/920-objects/src/art/ |
H A D | Test920.java | 45 private static void testObjectSize(Object o) { in testObjectSize() 84 private static native long getObjectSize(Object o); in getObjectSize() 85 private static native int getObjectHashCode(Object o); in getObjectHashCode()
|
/aosp12/art/test/903-hello-tagging/src/art/ |
H A D | Test903.java | 42 Object o = new Object(); in testTags() local 75 private static void checkTag(Object o, long expectedTag) { in checkTag() 88 Integer o = new Integer(i); in testGetTaggedObjects() local 136 public Pair(Object o, long t) { in Pair() 176 private static native long[] testTagsInDifferentEnvs(Object o, long baseTag, int n); in testTagsInDifferentEnvs()
|
/aosp12/frameworks/av/media/codec2/vndk/include/ |
H A D | C2AllocatorBlob.h | 47 virtual bool checkHandle(const C2Handle* const o) const override { return CheckHandle(o); } in checkHandle() 52 static bool isValid(const C2Handle* const o) { return CheckHandle(o); } in isValid()
|
H A D | C2AllocatorGralloc.h | 88 virtual bool checkHandle(const C2Handle* const o) const override { return CheckHandle(o); } in checkHandle() 93 static bool isValid(const C2Handle* const o) { return CheckHandle(o); } in isValid()
|
/aosp12/art/test/519-bound-load-class/src/ |
H A D | Main.java | 27 Object o = Main.class; in testInstanceOf() local 34 Object o = Main.class; in testNull() local
|
/aosp12/art/test/656-loop-deopt/src/ |
H A D | Main.java | 38 Object o = $noinline$objectReturned(new SubMain()); in main() local 69 Object o = new Object(); in $noinline$objectUpdate() local 105 Object o = new Object(); in $noinline$objectReturned() local
|
/aosp12/frameworks/rs/ |
H A D | rsObjectBase.cpp | 235 const ObjectBase * o = rsc->mObjHead; in zeroAllUserRef() local 267 ObjectBase * o = (ObjectBase *)rsc->mObjHead; in freeAllChildren() local 287 const ObjectBase * o = rsc->mObjHead; in dumpAll() local 303 const ObjectBase * o = rsc->mObjHead; in isValid() local
|
/aosp12/art/test/2231-checker-heap-poisoning/src/ |
H A D | Main.java | 153 void testSetField(Object o) { in testSetField() 159 Object o = m.testGetField(); in main() local
|