Home
last modified time | relevance | path

Searched refs:Called (Results 1 – 25 of 207) sorted by relevance

123456789

/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/
Dplugin.def36 /* 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 DASTMatchersInternalTest.cpp124 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/
Dasyncio-llapi-index.rst429 - 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 …]
Dpyexpat.rst305 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 …]
Dasyncore.rst121 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
Dasyncio-protocol.rst493 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 Dcheck_unittest.cc235 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/
Dpyexpat.rst333 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 …]
Dasyncore.rst107 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/
Doneshot.rs29 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/
Dfuture.rs32 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 Dforwarding_synchronization.md26 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/
Dfuture.rs26 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/
Doneshot.rs38 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 Dexpected-stdout.txt30 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 DIWifiEventCallback.hal21 * 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 DIWifiStaIfaceEventCallback.hal29 * 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/
Ddelay.rs47 Called {
60 Self::Called { fut } in called()
120 StateProj::Called { fut } => { in poll()
/aosp_15_r20/external/cronet/base/message_loop/
H A Dmessage_pump_apple.mm392 // 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 DIStream.hal232 * 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 DIStream.hal184 * 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 DObjCRetSigs.m15 printf("Called MyBase -length;\n");
22 printf("Called MySub -length;\n");
/aosp_15_r20/hardware/interfaces/broadcastradio/1.1/
H A DITunerCallback.hal46 * 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 DIMPLEMNT151 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 DMachineRegisterInfo.cpp499 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()

123456789