/aosp_15_r20/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/ |
D | plugin.def | 36 /* Called before GCC exits. */ 42 /* Called at start of GCC Garbage Collection. */ 48 /* Called at end of GGC. */ 57 /* Called during attribute registration. */ 60 /* Called before processing a translation unit. */ 63 /* Called during pragma registration. */ 66 /* Called before first pass from all_passes. */ 69 /* Called after last pass from all_passes. */ 72 /* Called before first ipa pass. */ 75 /* Called after last ipa pass. */ [all …]
|
/aosp_15_r20/external/clang/unittests/ASTMatchers/ |
H A D | ASTMatchersInternalTest.cpp | 124 VerifyStartOfTranslationUnit() : Called(false) {} in VerifyStartOfTranslationUnit() 126 EXPECT_TRUE(Called); in run() 128 void onStartOfTranslationUnit() override { Called = true; } in onStartOfTranslationUnit() 129 bool Called; member in clang::ast_matchers::VerifyStartOfTranslationUnit 139 EXPECT_TRUE(VerifyCallback.Called); in TEST() 141 VerifyCallback.Called = false; in TEST() 145 EXPECT_TRUE(VerifyCallback.Called); in TEST() 150 VerifyEndOfTranslationUnit() : Called(false) {} in VerifyEndOfTranslationUnit() 152 EXPECT_FALSE(Called); in run() 154 void onEndOfTranslationUnit() override { Called = true; } in onEndOfTranslationUnit() [all …]
|
/aosp_15_r20/external/python/cpython3/Doc/library/ |
D | asyncio-llapi-index.rst | 429 - Called when a connection is made. 432 - Called when the connection is lost or closed. 435 - Called when the transport's buffer goes over the high water mark. 438 - Called when the transport's buffer drains below the low water mark. 447 - Called when some data is received. 450 - Called when an EOF is received. 459 - Called to allocate a new receive buffer. 462 - Called when the buffer was updated with the received data. 465 - Called when an EOF is received. 475 - Called when a datagram is received. [all …]
|
D | pyexpat.rst | 305 Called when the XML declaration is parsed. The XML declaration is the 316 Called when Expat begins parsing the document type declaration (``<!DOCTYPE 326 Called when Expat is done parsing the document type declaration. This requires 332 Called once for each element type declaration. *name* is the name of the 338 Called for each declared attribute for an element type. If an attribute list 352 Called for the start of every element. *name* is a string containing the 361 Called for the end of every element. 366 Called for every processing instruction. 371 Called for character data. This will be called for normal character data, CDATA 380 Called for unparsed (NDATA) entity declarations. This is only present for [all …]
|
D | asyncore.rst | 121 Called when the asynchronous loop detects that a :meth:`read` call on the 127 Called when the asynchronous loop detects that a writable socket can be 138 Called when there is out of band (OOB) data for a socket connection. This 144 Called when the active opener's socket actually makes a connection. Might 151 Called when the socket is closed. 156 Called when an exception is raised and not otherwise handled. The default 162 Called on listening channels (passive openers) when a connection can be 172 Called on listening channels (passive openers) when a connection has been 183 Called each time around the asynchronous loop to determine whether a 191 Called each time around the asynchronous loop to determine whether a
|
D | asyncio-protocol.rst | 493 Called when a connection is made. 501 Called when the connection is lost or closed. 518 Called when the transport's buffer goes over the high watermark. 522 Called when the transport's buffer drains below the low watermark. 545 Called when some data is received. *data* is a non-empty bytes 562 Called when the other end signals it won't send any more data 608 Called to allocate a new receive buffer. 620 Called when the buffer was updated with the received data. 656 Called when a datagram is received. *data* is a bytes object containing 662 Called when a previous send or receive operation raises an [all …]
|
/aosp_15_r20/external/cronet/base/ |
H A D | check_unittest.cc | 235 auto Called = [&]() { in TEST() local 246 CHECK(Called()) << NotCalled(); in TEST() 247 CHECK_EQ(Called(), Called()) << NotCalled(); in TEST() 248 PCHECK(Called()) << NotCalled(); in TEST() 250 DCHECK(Called()) << NotCalled(); in TEST() 251 DCHECK_EQ(Called(), Called()) << NotCalled(); in TEST() 252 DPCHECK(Called()) << NotCalled(); in TEST()
|
/aosp_15_r20/external/python/cpython2/Doc/library/ |
D | pyexpat.rst | 333 Called when the XML declaration is parsed. The XML declaration is the 347 Called when Expat begins parsing the document type declaration (``<!DOCTYPE 357 Called when Expat is done parsing the document type declaration. This requires 363 Called once for each element type declaration. *name* is the name of the 369 Called for each declared attribute for an element type. If an attribute list 383 Called for the start of every element. *name* is a string containing the 390 Called for the end of every element. 395 Called for every processing instruction. 400 Called for character data. This will be called for normal character data, CDATA 409 Called for unparsed (NDATA) entity declarations. This is only present for [all …]
|
D | asyncore.rst | 107 Called when the asynchronous loop detects that a :meth:`read` call on the 113 Called when the asynchronous loop detects that a writable socket can be 124 Called when there is out of band (OOB) data for a socket connection. This 130 Called when the active opener's socket actually makes a connection. Might 137 Called when the socket is closed. 142 Called when an exception is raised and not otherwise handled. The default 148 Called on listening channels (passive openers) when a connection can be 155 Called each time around the asynchronous loop to determine whether a 163 Called each time around the asynchronous loop to determine whether a
|
/aosp_15_r20/external/rust/android-crates-io/crates/tower/src/util/ |
D | oneshot.rs | 29 Called { 43 Self::Called { fut } in called() 63 State::Called { .. } => f.debug_tuple("State::Called").field(&"S::Future").finish(), in fmt() 96 StateProj::Called { fut } => { in poll()
|
/aosp_15_r20/external/rust/android-crates-io/crates/tower/src/retry/ |
D | future.rs | 32 Called { 59 state: State::Called { future }, in new() 76 StateProj::Called { future } => { in poll() 116 this.state.set(State::Called { in poll()
|
/aosp_15_r20/external/cronet/base/android/java/src/org/chromium/base/metrics/ |
H A D | forwarding_synchronization.md | 26 mDelegate.record(sample); // Called with a read lock 48 mDelegate.record(sample); // Called with a read lock 68 mDelegate.record(sample); // Called with a read lock 80 mDelegate.record(sample); // Called with a *write* lock
|
/aosp_15_r20/external/rust/android-crates-io/crates/tower/src/load_shed/ |
D | future.rs | 26 Called { 37 state: ResponseState::Called { fut }, in called() 57 ResponseStateProj::Called { fut } => { in poll()
|
/aosp_15_r20/external/rust/android-crates-io/crates/hyper/src/service/ |
D | oneshot.rs | 38 Called { 61 StateProj::Called { fut } => { in poll() 69 me.state.set(State::Called { fut: svc.call(req) }); in poll()
|
/aosp_15_r20/art/test/956-methodhandles/ |
H A D | expected-stdout.txt | 30 Called accept with foo 33 Called accept with bar 38 Called and then with hello there
|
/aosp_15_r20/hardware/interfaces/wifi/1.0/ |
H A D | IWifiEventCallback.hal | 21 * Called in response to a call to start indicating that the operation 27 * Called in response to a call to stop indicating that the operation 34 * Called when the Wi-Fi system failed in a way that caused it be disabled.
|
H A D | IWifiStaIfaceEventCallback.hal | 29 * Called for each received beacon/probe response for a scan with the 42 * Called when the |StaBackgroundScanBucketParameters.eventReportScheme| flags 53 * Called when the RSSI of the currently connected access point goes beyond the
|
/aosp_15_r20/external/rust/android-crates-io/crates/tower/src/hedge/ |
D | delay.rs | 47 Called { 60 Self::Called { fut } in called() 120 StateProj::Called { fut } => { in poll()
|
/aosp_15_r20/external/cronet/base/message_loop/ |
H A D | message_pump_apple.mm | 392 // Called from the run loop. 411 // Called from the run loop. 420 // Called by MessagePumpCFRunLoopBase::RunWorkSource and RunDelayedWorkTimer. 481 // Called from the run loop. 490 // Called by MessagePumpCFRunLoopBase::RunNestingDeferredWorkSource. 515 // Called before the run loop goes to sleep or exits, or processes sources. 529 // Called from the run loop. 555 // Called from the run loop. 569 // Called from the run loop. 586 // Called from the run loop. [all …]
|
/aosp_15_r20/hardware/interfaces/audio/2.0/ |
H A D | IStream.hal | 232 * Called by the framework to start a stream operating in mmap mode. 243 * Called by the framework to stop a stream operating in mmap mode. 253 * Called by the framework to retrieve information on the mmap buffer used for audio 270 * Called by the framework to read current read/write position in the mmap buffer 284 * Called by the framework to deinitialize the stream and free up
|
/aosp_15_r20/hardware/interfaces/audio/7.0/ |
H A D | IStream.hal | 184 * Called by the framework to start a stream operating in mmap mode. 195 * Called by the framework to stop a stream operating in mmap mode. 205 * Called by the framework to retrieve information on the mmap buffer used for audio 223 * Called by the framework to read current read/write position in the mmap buffer 237 * Called by the framework to deinitialize the stream and free up
|
/aosp_15_r20/external/clang/test/Analysis/ |
H A D | ObjCRetSigs.m | 15 printf("Called MyBase -length;\n"); 22 printf("Called MySub -length;\n");
|
/aosp_15_r20/hardware/interfaces/broadcastradio/1.1/ |
H A D | ITunerCallback.hal | 46 * Called by the HAL when background scan feature becomes available or not. 54 * Called by the HAL when background scan initiated by startBackgroundScan 65 * Called each time the internally cached program list changes. HAL may not
|
/aosp_15_r20/external/coreboot/payloads/libpayload/curses/PDCurses/ |
H A D | IMPLEMNT | 151 Called from PDC_return_key_modifiers(). If your platform needs to do 157 Called by mouse_set(), mouse_on(), and mouse_off() -- all the functions 177 results, FALSE otherwise. Called from can_change_color(). 225 Called from _restore_mode() in kernel.c, this function does the actual 230 Called from _save_mode() in kernel.c, this function saves the actual 243 Frees the memory for SP allocated by PDC_scr_open(). Called by 268 Called from curs_set(). Changes the appearance of the cursor -- 0 turns
|
/aosp_15_r20/external/llvm/lib/CodeGen/ |
H A D | MachineRegisterInfo.cpp | 499 const Function *Called = getCalledFunction(MI); in isNoReturnDef() local 500 return !(Called == nullptr || !Called->hasFnAttribute(Attribute::NoReturn) || in isNoReturnDef() 501 !Called->hasFnAttribute(Attribute::NoUnwind)); in isNoReturnDef()
|