/frameworks/base/packages/SystemUI/src/com/android/systemui/log/table/ |
D | TableChange.kt | 41 this.columnPrefix = columnPrefix.take(MAX_STRING_LENGTH) 42 this.columnName = columnName.take(MAX_STRING_LENGTH) 43 this.str = str?.take(MAX_STRING_LENGTH) 49 this.columnPrefix = columnPrefix.take(MAX_STRING_LENGTH) in reset() 50 this.columnName = columnName.take(MAX_STRING_LENGTH) in reset() 61 str = value?.take(MAX_STRING_LENGTH) in set()
|
/frameworks/compile/slang/tests/F_reduce_general_bad_function/ |
D | reduce_general_bad_function.rscript | 16 // initializer must take exactly 1 parameter 20 // initializer must take exactly 1 parameter 24 // initializer cannot take special parameter 28 // initializer must take exactly 1 parameter 32 // initializer must take exactly 1 parameter 36 // initializer must take pointer parameter 72 // accumulator must take at least 2 parameters 76 // accumulator must take at least 2 parameters 84 // accumulator and initializer must take pointers to same type 141 // combiner must take exactly 2 parameters [all …]
|
D | stderr.txt.expect | 1 …pragma rs reduce(init0)' (reduce_general_bad_function.rscript:17:12) must take exactly 1 parameter… 2 …pragma rs reduce(init2)' (reduce_general_bad_function.rscript:21:12) must take exactly 1 parameter… 3 …reduce(init_special1)' (reduce_general_bad_function.rscript:25:12) cannot take special parameter '… 4 … reduce(init2_special1)' (reduce_general_bad_function.rscript:29:12) must take exactly 1 parameter… 5 … reduce(init2_special0)' (reduce_general_bad_function.rscript:33:12) must take exactly 1 parameter… 12 …ragma rs reduce(accum0)' (reduce_general_bad_function.rscript:73:12) must take at least 2 paramete… 13 …ragma rs reduce(accum1)' (reduce_general_bad_function.rscript:77:12) must take at least 2 paramete… 25 …ragma rs reduce(comb0)' (reduce_general_bad_function.rscript:142:12) must take exactly 2 parameter… 26 …ragma rs reduce(comb1)' (reduce_general_bad_function.rscript:146:12) must take exactly 2 parameter… 27 …ragma rs reduce(comb3)' (reduce_general_bad_function.rscript:150:12) must take exactly 2 parameter… [all …]
|
/frameworks/base/core/java/android/os/ |
D | TestLooperManager.java | 187 final MessageExecution take = mExecuteQueue.take(); in run() local 188 if (take.m != null) { in run() 189 processMessage(take); in run()
|
/frameworks/compile/slang/tests/F_reduce_general_bad_halter/ |
D | reduce_general_bad_halter.rscript | 24 // halter must take exactly 1 parameter 28 // halter must take exactly 1 parameter 32 // halter cannot take special parameter 36 // halter and accumulator must take pointers to same type
|
D | stderr.txt.expect | 3 …'#pragma rs reduce(halt0)' (reduce_general_bad_halter.rscript:25:12) must take exactly 1 parameter… 4 …'#pragma rs reduce(halt2)' (reduce_general_bad_halter.rscript:29:12) must take exactly 1 parameter… 5 …rs reduce(halt_special)' (reduce_general_bad_halter.rscript:33:12) cannot take special parameter '…
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/inputmethod/domain/interactor/ |
D | InputMethodInteractor.kt | 24 import kotlinx.coroutines.flow.take in <lambda>() 44 .take(2) // Short-circuit if we find at least 2 matching IMEs. in <lambda>()
|
/frameworks/base/core/java/android/view/ |
D | DragAndDropPermissions.java | 97 public boolean take(IBinder activityToken) { in take() method in DragAndDropPermissions 103 mDragAndDropPermissions.take(activityToken); in take()
|
/frameworks/base/packages/SettingsLib/Spa/spa/src/com/android/settingslib/spa/framework/util/ |
D | Flows.kt | 28 import kotlinx.coroutines.flow.take in <lambda>() 55 combine(otherFlow.take(1)) { value, _ -> value } in waitFirst()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/pipeline/domain/interactor/ |
D | RestoreReconciliationInteractor.kt | 17 import kotlinx.coroutines.flow.take in <lambda>() 48 autoAddRepository.autoAddedTiles(data.userId).take(1).map { tiles -> in <lambda>()
|
D | AutoAddInteractor.kt | 41 import kotlinx.coroutines.flow.take in <lambda>() 105 autoAddSignal.filterIsInstance<AutoAddSignal.Add>().take(1) in <lambda>()
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | ParallelPackageParser.java | 84 public ParseResult take() { in take() method in ParallelPackageParser 89 return mQueue.take(); in take()
|
/frameworks/native/services/vr/bufferhubd/ |
D | producer_queue_channel.cpp | 139 return {status.take()}; in OnCreateConsumerQueue() 191 buffer_handles.push_back(status.take()); in OnProducerQueueAllocateBuffers() 227 auto buffer_handle = status.take(); in AllocateBuffer() 239 auto producer_channel = producer_channel_status.take(); in AllocateBuffer()
|
/frameworks/compile/libbcc/tests/debuginfo/target-tests/driver-simple/ |
D | ACTIVITY.java.template | 40 // to take appropriate action when the activity loses focus 48 // to take appropriate action when the activity loses focus
|
/frameworks/base/core/java/com/android/internal/inputmethod/ |
D | IInputContentUriToken.aidl | 25 void take(); in take() method
|
/frameworks/compile/libbcc/tests/debuginfo/target-tests/driver-simple-exit/ |
D | ACTIVITY.java.template | 44 // to take appropriate action when the activity loses focus 52 // to take appropriate action when the activity loses focus
|
/frameworks/compile/libbcc/tests/debuginfo/target-tests/driver-int-param/ |
D | ACTIVITY.java.template | 44 // to take appropriate action when the activity loses focus 52 // to take appropriate action when the activity loses focus
|
/frameworks/base/core/java/com/android/internal/view/ |
D | IDragAndDropPermissions.aidl | 26 void take(IBinder activityToken); in take() method
|
/frameworks/base/apct-tests/perftests/packagemanager/src/android/os/ |
D | PackageParsingPerfTest.kt | 136 repeat(apks.size) { parser.take() } in <lambda>() 149 repeat(apks.size) { parser.take() } in <lambda>() 172 fun take() = queue.poll(QUEUE_POLL_TIMEOUT_SECONDS, TimeUnit.SECONDS) in <lambda>() method in android.os.PackageParsingPerfTest.ParallelParser
|
/frameworks/av/media/audio/aconfig/ |
D | audio_framework.aconfig | 50 "take effect" 112 "take effect"
|
/frameworks/base/core/java/android/speech/tts/ |
D | SynthesisPlaybackQueueItem.java | 123 while ((buffer = take()) != null) { in run() 286 private byte[] take() throws InterruptedException { in take() method in SynthesisPlaybackQueueItem
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/base/logging/ |
D | QSTileLogger.kt | 120 str3 = data.toString().take(DATA_MAX_LENGTH) in logUserActionPipeline() 156 str2 = data.toString().take(DATA_MAX_LENGTH) in logStateUpdate()
|
/frameworks/av/media/libstagefright/webm/include/webm/ |
D | LinkedBlockingQueue.h | 67 T take() { in take() function
|
/frameworks/base/tests/Camera2Tests/SmartCamera/ |
D | README.txt | 24 Then take the given Install path (out/target/.../SmartCamera.apk) 42 The application tries to take good pictures for you automatically when in the
|
/frameworks/base/test-runner/src/android/test/ |
D | LoaderTestCase.java | 92 result = queue.take(); in getLoaderResultSynchronously()
|