/external/clang/unittests/ASTMatchers/ |
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 …]
|
/external/clang/test/Analysis/ |
D | ObjCRetSigs.m | 15 printf("Called MyBase -length;\n"); 22 printf("Called MySub -length;\n");
|
/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
|
D | xml.sax.handler.rst | 166 Called by the parser to give the application a locator for locating the origin 396 Called when the parser encounters a recoverable error. If this method does not 404 Called when the parser encounters an error it cannot recover from; parsing is 410 Called when the parser presents minor warning information to the application.
|
D | functools.rst | 145 ... print 'Called example function' 149 Called example function
|
D | framework.rst | 187 Called early in the event loop to handle modeless dialog events. The default 195 Called by the main event loop when no events are available. The null-event is 222 Called after the window is resized. Override if more needs to be done than
|
D | asynchat.rst | 81 Called with *data* holding an arbitrary amount of received data. The 94 Called when the incoming data stream matches the termination condition set
|
D | socketserver.rst | 331 Called by the server's constructor to activate the server. The default behavior 338 Called by the server's constructor to bind the socket to the desired address. 364 Called before the :meth:`handle` method to perform any initialization actions 383 Called after the :meth:`handle` method to perform any clean-up actions
|
/external/python/cpython3/Doc/library/ |
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 | 116 Called when the asynchronous loop detects that a :meth:`read` call on the 122 Called when the asynchronous loop detects that a writable socket can be 133 Called when there is out of band (OOB) data for a socket connection. This 139 Called when the active opener's socket actually makes a connection. Might 146 Called when the socket is closed. 151 Called when an exception is raised and not otherwise handled. The default 157 Called on listening channels (passive openers) when a connection can be 167 Called on listening channels (passive openers) when a connection has been 178 Called each time around the asynchronous loop to determine whether a 186 Called each time around the asynchronous loop to determine whether a
|
D | asyncio-protocol.rst | 331 Called when a connection is made. 339 Called when the connection is lost or closed. 355 Called when the child process writes data into its stdout or stderr pipe. 361 Called when one of the pipes communicating with the child process 366 Called when the child process has exited. 376 Called when some data is received. *data* is a non-empty bytes object 420 Called when a datagram is received. *data* is a bytes object containing 426 Called when a previous send or receive operation raises an 443 Called when the transport's buffer goes over the high-water mark. 447 Called when the transport's buffer drains below the low-water mark.
|
D | xml.sax.handler.rst | 167 Called by the parser to give the application a locator for locating the origin 397 Called when the parser encounters a recoverable error. If this method does not 405 Called when the parser encounters an error it cannot recover from; parsing is 411 Called when the parser presents minor warning information to the application.
|
D | asynchat.rst | 90 Called with *data* holding an arbitrary amount of received data. The 103 Called when the incoming data stream matches the termination condition set
|
D | socketserver.rst | 340 Called by the server's constructor to activate the server. The default behavior 347 Called by the server's constructor to bind the socket to the desired address. 378 Called before the :meth:`handle` method to perform any initialization actions 397 Called after the :meth:`handle` method to perform any clean-up actions
|
/external/tcpdump/tests/ |
D | radius-v.out | 8 Called-Station-Id Attribute (30), length: 19, Value: 00-19-06-EA-B8-8C 31 Called-Station-Id Attribute (30), length: 19, Value: 00-19-06-EA-B8-8C
|
/external/llvm/lib/CodeGen/ |
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()
|
/external/python/cpython3/Doc/reference/ |
D | datamodel.rst | 1114 Called to create a new instance of class *cls*. :meth:`__new__` is a static 1143 Called after the instance has been created (by :meth:`__new__`), but before 1162 Called when the instance is about to be destroyed. This is also called a 1217 Called by the :func:`repr` built-in function to compute the "official" string 1237 Called by :func:`str(object) <str>` and the built-in functions 1256 Called by :func:`bytes` to compute a byte-string representation of an 1267 Called by the :func:`format` built-in function, 1338 Called by built-in function :func:`hash` and for operations on members of 1417 Called to implement truth value testing and the built-in operation 1438 Called when an attribute lookup has not found the attribute in the usual places [all …]
|
/external/python/cpython2/Doc/reference/ |
D | datamodel.rst | 1198 Called to create a new instance of class *cls*. :meth:`__new__` is a static 1227 Called after the instance has been created (by :meth:`__new__`), but before 1246 Called when the instance is about to be destroyed. This is also called a 1302 Called by the :func:`repr` built-in function and by string conversions (reverse 1328 Called by the :func:`str` built-in function and by the :keyword:`print` 1385 Called by comparison operations if rich comparison (see above) is not 1408 Called by built-in function :func:`hash` and for operations on members of 1453 Called to implement truth value testing and the built-in operation ``bool()``; 1465 Called to implement :func:`unicode` built-in; should return a Unicode object. 1481 Called when an attribute lookup has not found the attribute in the usual places [all …]
|
/external/google-breakpad/src/testing/test/ |
D | gmock_output_test_golden.txt | 27 Called 2 times, but only 1 WillOnce() is specified - returning default value. 285 Called 2 times, but only 1 WillOnce() is specified - taking default action specified at:
|
/external/perfetto/protos/perfetto/ipc/ |
D | producer_port.proto | 28 // Called once only after establishing the connection with the Service.
|
/external/libxml2/os400/libxmlrpg/ |
D | parser.rpgle | 493 * Called when the document start being processed. 502 * Called when the document end has been detected. 513 * Called when an opening tag has been processed. 523 * Called when the end of an element has been detected. 547 * Called when an entity reference is detected. 602 * Called when a pcdata block has been parsed.
|
/external/googletest/googlemock/test/ |
D | gmock_output_test_golden.txt | 27 Called 2 times, but only 1 WillOnce() is specified - returning default value. 285 Called 2 times, but only 1 WillOnce() is specified - taking default action specified at:
|
/external/v8/testing/gmock/test/ |
D | gmock_output_test_golden.txt | 27 Called 2 times, but only 1 WillOnce() is specified - returning default value. 285 Called 2 times, but only 1 WillOnce() is specified - taking default action specified at:
|
/external/python/cpython2/Doc/c-api/ |
D | object.rst | 152 Python expression ``repr(o)``. Called by the :func:`repr` built-in function and 162 Python expression ``str(o)``. Called by the :func:`str` built-in function and 180 the Python expression ``unicode(o)``. Called by the :func:`unicode` built-in
|