/aosp12/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/base/ |
H A D | DocumentStackTest.java | 84 mStack.push(DIR_1); in testPushDocument_ModifiesStack() 85 mStack.push(DIR_2); in testPushDocument_ModifiesStack() 91 mStack.push(DIR_1); in testPopDocument_ModifiesStack() 92 mStack.push(DIR_2); in testPopDocument_ModifiesStack() 93 mStack.pop(); in testPopDocument_ModifiesStack() 99 mStack.push(DIR_1); in testGetDocument() 100 mStack.push(DIR_2); in testGetDocument() 115 mStack.push(DIR_1); in testChangeRoot_ClearsStack() 126 mStack.push(DIR_1); in testReset() 128 mStack.reset(); in testReset() [all …]
|
/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
H A D | StateManager.java | 60 if (!mStack.isEmpty()) { in startState() 90 if (!mStack.isEmpty()) { in startStateForResult() 107 if (mStack.isEmpty()) { in createOptionsMenu() 137 if (!mStack.isEmpty()) { in clearActivityResult() 143 return mStack.size(); in getStateCount() 147 if (!mStack.isEmpty()) { in itemSelected() 160 if (!mStack.isEmpty()) { in onBackPressed() 205 mStack.pop(); in finishState() 207 ActivityState top = !mStack.isEmpty() ? mStack.peek().activityState : null; in finishState() 234 mStack.pop(); in switchState() [all …]
|
/aosp12/packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/ |
H A D | PduComposer.java | 345 mStack.newbuf(); in appendEncodedString() 352 mStack.pop(); in appendEncodedString() 354 mStack.copy(); in appendEncodedString() 928 mStack.pop(); in makeMessageBody() 929 mStack.copy(); in makeMessageBody() 955 mStack.pop(); in makeMessageBody() 957 mStack.copy(); in makeMessageBody() 1022 mStack.pop(); in makeMessageBody() 1024 mStack.copy(); in makeMessageBody() 1086 mStack.pop(); in makeMessageBody() [all …]
|
/aosp12/frameworks/base/telephony/common/com/google/android/mms/pdu/ |
H A D | PduComposer.java | 355 mStack.newbuf(); in appendEncodedString() 362 mStack.pop(); in appendEncodedString() 364 mStack.copy(); in appendEncodedString() 904 mStack.pop(); in makeMessageBody() 905 mStack.copy(); in makeMessageBody() 932 mStack.pop(); in makeMessageBody() 934 mStack.copy(); in makeMessageBody() 994 mStack.pop(); in makeMessageBody() 996 mStack.copy(); in makeMessageBody() 1057 mStack.pop(); in makeMessageBody() [all …]
|
/aosp12/hardware/libhardware/modules/sensors/dynamic_sensor/HidUtils/ |
H A D | HidGlobal.cpp | 103 mStack.push_back(top()); in append() 105 mStack.pop_back(); in append() 106 if (mStack.size() == 0) { in append() 107 mStack.push_back(HidGlobal()); // fail-safe in append() 111 ret = mStack.back().append(i); in append() 118 mStack.push_back(HidGlobal()); in HidGlobalStack() 122 return mStack.back(); in top()
|
H A D | HidGlobal.h | 55 std::vector<HidGlobal> mStack;
|
/aosp12/frameworks/base/tools/lock_agent/java/com/android/lock_checker/ |
H A D | OnThreadLockChecker.java | 119 final AnnotatedStackTraceElement[] mStack; field in OnThreadLockChecker.OrderData 124 this.mStack = stack; in OrderData() 228 AnnotatedStackTraceElement[] mStack; field in OnThreadLockChecker.Violation 239 this.mStack = stack; in Violation() 292 inner.setStackTrace(synthesizeStackTrace(mOppositeData.mStack)); in getException() 295 outer.setStackTrace(synthesizeStackTrace(mStack)); in getException() 319 sb.append(getAnnotatedStackString(mOppositeData.mStack, STACK_OFFSET, in toString() 328 sb.append(getAnnotatedStackString(mStack, STACK_OFFSET, in toString() 330 getTo(mStack, mAlreadyHeld) + 1, " | ")); in toString() 344 int to = Violation.getTo(v.mStack, v.mAlreadyHeld); in handleViolation() [all …]
|
/aosp12/packages/apps/Launcher3/tests/src/com/android/launcher3/util/ |
H A D | TraceHelperForTest.java | 25 private final ThreadLocal<LinkedList<TraceInfo>> mStack = field in TraceHelperForTest 50 LinkedList<TraceInfo> stack = mStack.get(); in beginSection() 66 LinkedList<TraceInfo> stack = mStack.get(); in endSection() 83 LinkedList<TraceInfo> stack = mStack.get(); in beginFlagsOverride() 94 LinkedList<TraceInfo> stack = mStack.get(); in endFlagsOverride()
|
/aosp12/frameworks/rs/ |
H A D | rsDebugHelper.h | 35 mStack.update(2); in DebugHelper() 41 ALOGV("%s", mStack.toString().string()); in dump() 48 CallStack mStack;
|
/aosp12/packages/apps/DocumentsUI/src/com/android/documentsui/picker/ |
H A D | CreatePickedDocumentTask.java | 45 private final DocumentStack mStack; field in CreatePickedDocumentTask 63 mStack = stack; in CreatePickedDocumentTask() 77 DocumentInfo cwd = mStack.peek(); in run() 82 mLastAccessed.setLastAccessed(mOwner, mStack); in run()
|
H A D | SetLastAccessedStackTask.java | 27 private final DocumentStack mStack; field in SetLastAccessedStackTask 38 mStack = stack; in SetLastAccessedStackTask() 44 mLastAccessed.setLastAccessed(mOwner, mStack); in run()
|
/aosp12/build/make/tools/product_config/src/com/android/build/config/ |
H A D | FlattenConfig.java | 43 private final Set<Str> mStack = new HashSet(); field in FlattenConfig 119 if (mStack.contains(filename)) { in forEachStatement() 125 mStack.add(filename); in forEachStatement() 164 mStack.remove(filename); in forEachStatement()
|
/aosp12/frameworks/base/core/java/android/os/ |
H A D | Parcel.java | 218 private RuntimeException mStack; field in Parcel 464 res.mStack = new RuntimeException(); in obtain() 476 if (DEBUG_RECYCLE) mStack = null; in recycle() 3549 res.mStack = new RuntimeException(); in obtain() 3558 mStack = new RuntimeException(); in Parcel() 3595 if (mStack != null) { in finalize() 3596 Log.w(TAG, "Client did not call Parcel.recycle()", mStack); in finalize()
|
/aosp12/packages/apps/Messaging/build/gcheckstyle/ |
H A D | google-style-checker_deploy.jar | META-INF/
META-INF/MANIFEST.MF
build-data.properties
com/
com ... |
/aosp12/frameworks/base/boot/hiddenapi/ |
H A D | hiddenapi-max-target-o.txt | 41184 Landroid/os/Parcel;->mStack:Ljava/lang/RuntimeException;
|