/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/util/kotlin/ |
D | FlowUtilTests.kt | 141 stop.emit(Unit) in <lambda>() 208 emit(1) in <lambda>() 224 emit(1) in <lambda>() 225 samplee.emit(1) in <lambda>() 226 emit(2) in <lambda>() 227 samplee.emit(2) in <lambda>() 228 samplee.emit(3) in <lambda>() 229 emit(3) in <lambda>() 230 emit(4) in <lambda>() 253 emit(1) in <lambda>() [all …]
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/display/domain/interactor/ |
D | ConnectedDisplayInteractorTest.kt | 58 fakeDisplayRepository.emit(emptySet()) in <lambda>() 68 fakeDisplayRepository.emit(emptySet()) in <lambda>() 78 fakeDisplayRepository.emit(setOf(display(type = TYPE_INTERNAL))) in <lambda>() 88 fakeDisplayRepository.emit(setOf(display(type = TYPE_EXTERNAL))) in <lambda>() 98 fakeDisplayRepository.emit( in <lambda>() 110 fakeDisplayRepository.emit( in <lambda>() 122 fakeDisplayRepository.emit( in <lambda>() 144 suspend fun emit(value: Set<Display>) = flow.emit(value) in <lambda>() method in com.android.systemui.display.domain.interactor.ConnectedDisplayInteractorTest.FakeDisplayRepository
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/events/ |
D | SystemEventCoordinatorTest.kt | 81 connectedDisplayInteractor.emit(CONNECTED) in startObserving_propagatesConnectedDisplayStatusEvents() 82 connectedDisplayInteractor.emit(CONNECTED) in startObserving_propagatesConnectedDisplayStatusEvents() 92 connectedDisplayInteractor.emit(CONNECTED) in stopObserving_doesNotPropagateConnectedDisplayStatusEvents() 98 connectedDisplayInteractor.emit(CONNECTED) in stopObserving_doesNotPropagateConnectedDisplayStatusEvents() 105 suspend fun emit(value: ConnectedDisplayInteractor.State) = flow.emit(value) method in com.android.systemui.statusbar.events.SystemEventCoordinatorTest.FakeConnectedDisplayInteractor
|
/frameworks/native/opengl/tools/glgen/src/ |
D | GenerateGL.java | 34 private static void emit(int version, boolean ext, boolean pack, in emit() method in GenerateGL 161 emit(0, false, false, in main() 163 emit(0, true, false, in main() 165 emit(1, false, false, in main() 167 emit(1, true, false, in main() 169 emit(1, true, true, in main()
|
/frameworks/compile/mclinker/include/mcld/ |
D | Linker.h | 51 bool emit(FileOutputBuffer& pOutput); 55 bool emit(const Module& pModule, const std::string& pPath); 58 bool emit(const Module& pModule, int pFileDescriptor);
|
/frameworks/compile/mclinker/lib/LD/ |
D | MsgHandler.cpp | 20 emit(); in ~MsgHandler() 23 bool MsgHandler::emit() { in emit() function in mcld::MsgHandler 25 return m_Engine.emit(); in emit()
|
D | DebugString.cpp | 86 void DebugString::emit(MemoryRegion& pRegion) { in emit() function in mcld::DebugString 87 return m_StringTable.emit(pRegion); in emit()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/log/table/ |
D | LogDiffsForTableTest.kt | 119 emit(bool) in boolean_logsUpdates() 166 emit(bool) in boolean_doesNotLogIfSameValue() 237 flow.emit(true) in boolean_worksForStateFlows() 244 flow.emit(false) in boolean_worksForStateFlows() 252 flow.emit(false) in boolean_worksForStateFlows() 317 emit(int) in intNullable_logsNull() 368 emit(int) in int_logsUpdates() 415 emit(bool) in int_doesNotLogIfSameValue() 491 flow.emit(2222) in int_worksForStateFlows() 498 flow.emit(3333) in int_worksForStateFlows() [all …]
|
/frameworks/compile/slang/ |
D | RSCCOptions.td | 52 def emit_asm : Flag<["-"], "emit-asm">, 55 def emit_llvm : Flag<["-"], "emit-llvm">, 56 HelpText<"Build ASTs then convert to LLVM, emit .ll file">; 57 def emit_bc : Flag<["-"], "emit-bc">, 58 HelpText<"Build ASTs then convert to LLVM, emit .bc file">; 59 def emit_nothing : Flag<["-"], "emit-nothing">, 60 HelpText<"Build ASTs then convert to LLVM, but emit nothing">; 105 def MP : Flag<["-"], "MP">, HelpText<"Also emit phony target for dependency files">; 108 def emit_dep : Flag<["-"], "emit-dep">, Alias<M>;
|
/frameworks/base/services/core/java/com/android/server/display/utils/ |
D | Plog.java | 105 emit("[PLOG " + mId + "] " + message); in write() 113 protected abstract void emit(String message); in emit() method in Plog 137 protected void emit(String message) { in emit() method in Plog.SystemPlog
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/kotlin/ |
D | Flow.kt | 48 emit(transform(previousValue as T, newVal)) in <lambda>() 64 onStart { emit(initialValue) }.pairwiseBy(transform) in pairwiseBy() 80 onStart { emit(getInitialValue()) }.pairwiseBy(transform) in pairwiseBy() 115 ): Flow<R> = (if (emitFirstEvent) onStart { emit(emptySet()) } else this) in pairwise() 163 emit(transform(it, sampled as B)) in setChanges()
|
/frameworks/compile/mclinker/include/mcld/Target/ |
D | ELFDynamic.h | 42 virtual size_t emit(uint8_t* pAddress) const = 0; 74 inline size_t emit(uint8_t* pAddress) const; 105 inline size_t emit(uint8_t* pAddress) const; 154 void emit(const LDSection& pSection, MemoryRegion& pRegion) const;
|
D | ELFDynamic.tcc | 25 size_t Entry<32, true>::emit(uint8_t* pAddress) const { in emit() function in Entry 47 size_t Entry<64, true>::emit(uint8_t* pAddress) const { in emit() function in Entry
|
D | ELFAttribute.h | 64 size_t emit(MemoryRegion& pRegion) const; 96 size_t emit(char* pBuf) const;
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
D | PhoneStatusBarPolicyTest.kt | 231 fakeConnectedDisplayStateProvider.emit(State.CONNECTED) in connectedDisplay_connected_iconShown() 243 fakeConnectedDisplayStateProvider.emit(State.DISCONNECTED) in connectedDisplay_disconnected_iconHidden() 254 fakeConnectedDisplayStateProvider.emit(State.CONNECTED) in connectedDisplay_disconnectedThenConnected_iconShown() 255 fakeConnectedDisplayStateProvider.emit(State.DISCONNECTED) in connectedDisplay_disconnectedThenConnected_iconShown() 256 fakeConnectedDisplayStateProvider.emit(State.CONNECTED) in connectedDisplay_disconnectedThenConnected_iconShown() 271 fakeConnectedDisplayStateProvider.emit(State.CONNECTED_SECURE) in connectedDisplay_connectSecureDisplay_iconShown() 320 suspend fun emit(value: State) = flow.emit(value) method in com.android.systemui.statusbar.phone.PhoneStatusBarPolicyTest.FakeConnectedDisplayStateProvider
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/domain/interactor/ |
D | WindowManagerLockscreenVisibilityInteractorTest.kt | 130 lockscreenSurfaceVisibilityFlow.emit(lockscreenSpecificSurfaceVisibility) in surfaceBehindVisibility_switchesToCorrectFlow() 179 primaryBouncerSurfaceVisibilityFlow.emit(bouncerSpecificVisibility) in surfaceBehindVisibility_switchesToCorrectFlow() 234 surfaceBehindIsAnimatingFlow.emit(true) in testUsingGoingAwayAnimation_duringTransitionToGone() 253 surfaceBehindIsAnimatingFlow.emit(false) in testUsingGoingAwayAnimation_duringTransitionToGone() 296 surfaceBehindIsAnimatingFlow.emit(true) in testNotUsingGoingAwayAnimation_evenWhenAnimating_ifStateIsNotGone() 334 surfaceBehindIsAnimatingFlow.emit(false) in testNotUsingGoingAwayAnimation_evenWhenAnimating_ifStateIsNotGone()
|
/frameworks/compile/mclinker/unittests/ |
D | LinkerTest.cpp | 61 linker.emit(module, "./test.so"); in TEST_F() 120 linker.emit(module, "libplasma.so"); ///< -o libplasma.so in TEST_F() 179 linker.emit(module1, "libplasma.once.so"); ///< -o libplasma.so in TEST_F() 223 linker.emit(module2, "libplasma.twice.so"); ///< -o libplasma.exe in TEST_F() 277 linker.emit(module1, "libplasma.once.so"); ///< -o libplasma.so in TEST_F() 326 linker.emit(module2, "libplasma.twice.so"); ///< -o libplasma.exe in TEST_F() 497 linker.emit(module, "libgotplt.so"); ///< -o libgotplt.so in TEST_F()
|
/frameworks/compile/mclinker/lib/Core/ |
D | Linker.cpp | 242 bool Linker::emit(FileOutputBuffer& pOutput) { in emit() function in mcld::Linker 255 bool Linker::emit(const Module& pModule, const std::string& pPath) { in emit() function in mcld::Linker 284 result = emit(*output); in emit() 289 bool Linker::emit(const Module& pModule, int pFileDescriptor) { in emit() function in mcld::Linker 297 return emit(*output); in emit()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/domain/interactor/ |
D | CredentialInteractor.kt | 92 emit(CredentialStatus.Success.Verified(checkNotNull(hat))) in isStealthModeActive() 101 emit( in isStealthModeActive() 112 emit(CredentialStatus.Fail.Error("")) in isStealthModeActive() 118 emit(CredentialStatus.Fail.Error()) in isStealthModeActive() 121 emit( in isStealthModeActive()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyboard/backlight/ui/viewmodel/ |
D | BacklightDialogViewModel.kt | 62 emit(it) in timeout() 64 emit(emitAfterTimeout) in timeout()
|
/frameworks/native/opengl/tools/glgen2/registry/ |
D | reg.py | 169 self.emit = False 406 def beginFeature(self, interface, emit): argument 407 self.emit = emit 560 def beginFeature(self, interface, emit): argument 562 OutputGenerator.beginFeature(self, interface, emit) 574 if (self.emit): 1012 fi.emit = (regEmitVersions.match(fi.number) != None) 1014 if (not fi.emit): 1070 ei.emit = True 1102 emit = self.emitFeatures = f.emit [all …]
|
/frameworks/compile/mclinker/lib/Target/ |
D | ELFAttribute.cpp | 137 size_t ELFAttribute::emit(MemoryRegion& pRegion) const { in emit() function in mcld::ELFAttribute 152 total_size += (*subsec_it)->emit(buffer + total_size); in emit() 299 size_t ELFAttribute::Subsection::emit(char* pBuf) const { in emit() function in mcld::ELFAttribute::Subsection 331 uint32_t subsubsection_length = m_AttrData.emit(buffer); in emit()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/domain/interactor/ |
D | UdfpsKeyguardInteractor.kt | 73 .onStart { emit(0f) } in <lambda>() 86 .onStart { emit(0f) } in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/data/repository/ |
D | TrustRepository.kt | 142 emit( in <lambda>() 154 .onStart { emit(false) } in <lambda>() 170 .onStart { emit(false) } in <lambda>()
|
/frameworks/compile/mclinker/lib/Target/Mips/ |
D | MipsGOT.h | 41 virtual uint64_t emit(MemoryRegion& pRegion) = 0; 230 virtual uint64_t emit(MemoryRegion& pRegion); 248 virtual uint64_t emit(MemoryRegion& pRegion);
|