/external/clang/test/SemaTemplate/ |
recovery-crash.cpp | 3 // Clang used to crash trying to recover while adding 'this->' before Work(x); 6 static void Work(int); // expected-note{{must qualify identifier}} 11 Work(x); // expected-error{{use of undeclared identifier}}
|
/external/chromium_org/chrome/browser/extensions/api/sockets_tcp_server/ |
sockets_tcp_server_api.h | 40 virtual void Work() OVERRIDE; 59 virtual void Work() OVERRIDE; 78 virtual void Work() OVERRIDE; 98 virtual void Work() OVERRIDE; 118 virtual void Work() OVERRIDE; 136 virtual void Work() OVERRIDE; 154 virtual void Work() OVERRIDE; 173 virtual void Work() OVERRIDE;
|
sockets_tcp_server_api.cc | 87 void SocketsTcpServerCreateFunction::Work() { 112 void SocketsTcpServerUpdateFunction::Work() { 140 void SocketsTcpServerSetPausedFunction::Work() { 175 void SocketsTcpServerListenFunction::Work() { 219 void SocketsTcpServerDisconnectFunction::Work() { 240 void SocketsTcpServerCloseFunction::Work() { 261 void SocketsTcpServerGetInfoFunction::Work() { 281 void SocketsTcpServerGetSocketsFunction::Work() {
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
mount_stream.h | 25 class Work { 27 explicit Work(MountStream* mount) : mount_(mount) {} 28 virtual ~Work() {} 30 // Called by adding work the queue, val should be safe to ignore. 33 // Called as a completion of work in Start. Value of val depend on 47 // Enqueue a work object onto this MountStream's thread 48 void EnqueueWork(Work* work); 52 static PP_CompletionCallback GetStartCompletion(Work* work); [all...] |
mount_stream.cc | 15 MountStream::Work* work = static_cast<MountStream::Work*>(work_ptr); local 18 if (!work->Start(val)) 19 delete work; 23 MountStream::Work* work = static_cast<MountStream::Work*>(work_ptr); local 25 work->Run(val); 26 delete work; [all...] |
mount_node_tcp.cc | 26 class TCPWork : public MountStream::Work { 29 : MountStream::Work(emitter->stream()->mount_stream()), 96 // If we did send, then Q more work. 166 class TCPAcceptWork : public MountStream::Work { 170 : MountStream::Work(stream), 222 class TCPConnectWork : public MountStream::Work { 226 : MountStream::Work(stream), 370 MountStream::Work* work = new TCPAcceptWork(mount_stream(), emitter_); local 371 mount_stream()->EnqueueWork(work); 375 MountStream::Work* work = new TCPConnectWork(mount_stream(), emitter_); local 380 MountStream::Work* work = new TCPRecvWork(emitter_); local [all...] |
/external/chromium_org/chrome/browser/extensions/api/serial/ |
serial_api.h | 51 virtual void Work() OVERRIDE; 98 virtual void Work() OVERRIDE; 115 virtual void Work() OVERRIDE; 132 virtual void Work() OVERRIDE; 150 virtual void Work() OVERRIDE; 167 virtual void Work() OVERRIDE; 200 virtual void Work() OVERRIDE; 218 virtual void Work() OVERRIDE; 236 virtual void Work() OVERRIDE;
|
serial_api.cc | 84 void SerialGetDevicesFunction::Work() { 195 void SerialUpdateFunction::Work() { 216 void SerialDisconnectFunction::Work() { 272 void SerialFlushFunction::Work() { 296 void SerialSetPausedFunction::Work() { 325 void SerialGetInfoFunction::Work() { 346 void SerialGetConnectionsFunction::Work() { 377 void SerialGetControlSignalsFunction::Work() { 404 void SerialSetControlSignalsFunction::Work() {
|
/external/chromium_org/chrome/browser/extensions/api/sockets_tcp/ |
sockets_tcp_api.h | 50 virtual void Work() OVERRIDE; 68 virtual void Work() OVERRIDE; 86 virtual void Work() OVERRIDE; 106 virtual void Work() OVERRIDE; 124 virtual void Work() OVERRIDE; 166 virtual void Work() OVERRIDE; 205 virtual void Work() OVERRIDE; 222 virtual void Work() OVERRIDE; 239 virtual void Work() OVERRIDE;
|
sockets_tcp_api.cc | 118 void SocketsTcpCreateFunction::Work() { 141 void SocketsTcpUpdateFunction::Work() { 169 void SocketsTcpSetPausedFunction::Work() { 197 void SocketsTcpSetKeepAliveFunction::Work() { 223 void SocketsTcpSetNoDelayFunction::Work() { 317 void SocketsTcpDisconnectFunction::Work() { 386 void SocketsTcpCloseFunction::Work() { 407 void SocketsTcpGetInfoFunction::Work() { 427 void SocketsTcpGetSocketsFunction::Work() {
|
/external/chromium_org/chrome/browser/extensions/api/sockets_udp/ |
sockets_udp_api.h | 52 virtual void Work() OVERRIDE; 70 virtual void Work() OVERRIDE; 88 virtual void Work() OVERRIDE; 106 virtual void Work() OVERRIDE; 150 virtual void Work() OVERRIDE; 167 virtual void Work() OVERRIDE; 184 virtual void Work() OVERRIDE; 198 virtual void Work() OVERRIDE; 215 virtual void Work() OVERRIDE; 234 virtual void Work() OVERRIDE [all...] |
sockets_udp_api.cc | 100 void SocketsUdpCreateFunction::Work() { 123 void SocketsUdpUpdateFunction::Work() { 151 void SocketsUdpSetPausedFunction::Work() { 187 void SocketsUdpBindFunction::Work() { 302 void SocketsUdpCloseFunction::Work() { 324 void SocketsUdpGetInfoFunction::Work() { 344 void SocketsUdpGetSocketsFunction::Work() { 370 void SocketsUdpJoinGroupFunction::Work() { 402 void SocketsUdpLeaveGroupFunction::Work() { 436 void SocketsUdpSetMulticastTimeToLiveFunction::Work() { [all...] |
/external/chromium_org/chrome/browser/extensions/api/ |
api_function.h | 23 // do essentially all their work on a thread other than the UI thread. 29 // Like Prepare(). A useful place to put common work in an ApiFunction 33 // Set up for work (e.g., validate arguments). Guaranteed to happen on UI 37 // Do actual work. Guaranteed to happen on the thread specified in 39 virtual void Work(); 41 // Start the asynchronous work. Guraranteed to happen on requested thread. 44 // Notify AsyncIOApiFunction that the work is completed 62 // If you don't want your Work() method to happen on the IO thread, then set
|
api_function.cc | 46 void AsyncApiFunction::Work() { 50 Work(); 68 "You have specified that AsyncApiFunction::Work() should happen on "
|
/external/chromium_org/chrome/browser/extensions/api/socket/ |
socket_api.h | 146 virtual void Work() OVERRIDE; 169 virtual void Work() OVERRIDE; 210 virtual void Work() OVERRIDE; 225 virtual void Work() OVERRIDE; 244 virtual void Work() OVERRIDE; 366 virtual void Work() OVERRIDE; 383 virtual void Work() OVERRIDE; 400 virtual void Work() OVERRIDE; 431 virtual void Work() OVERRIDE; 448 virtual void Work() OVERRIDE [all...] |
socket_api.cc | 157 void SocketCreateFunction::Work() { 176 void SocketDestroyFunction::Work() { 256 void SocketDisconnectFunction::Work() { 272 void SocketBindFunction::Work() { 313 void SocketListenFunction::Work() { 573 void SocketSetKeepAliveFunction::Work() { 597 void SocketSetNoDelayFunction::Work() { 617 void SocketGetInfoFunction::Work() { 712 void SocketJoinGroupFunction::Work() { 756 void SocketLeaveGroupFunction::Work() { [all...] |
/external/chromium_org/chrome/browser/extensions/api/braille_display_private/ |
braille_display_private_api.h | 88 virtual void Work() OVERRIDE; 101 virtual void Work() OVERRIDE;
|
/external/stressapptest/src/ |
worker.h | 38 // This file must work with autoconf on its public version, 224 // Spawn the worker thread, by running Work(). 237 virtual bool Work(); 301 // This function dictates whether the main work loop 303 // All work loops should be of the form: 305 // // work. 315 // These are functions used by the various work loops. 398 // Work around style guide ban on sizeof(int). 414 virtual bool Work(); 430 // These are functions used by the various work loops [all...] |
/device/asus/grouper/keymaster/ |
NOTICE | 78 "Work" shall mean the work of authorship, whether in Source or 80 copyright notice that is included in or attached to the work 83 "Derivative Works" shall mean any work, whether in Source or Object 84 form, that is based on (or derived from) the Work and for which the 86 represent, as a whole, an original work of authorship. For the purposes 89 the Work and Derivative Works thereof. 91 "Contribution" shall mean any work of authorship, including 92 the original version of the Work and any modifications or additions 93 to that Work or Derivative Works thereof, that is intentionall [all...] |
/device/asus/grouper/self-extractors/nvidia/staging/keymaster/ |
NOTICE | 78 "Work" shall mean the work of authorship, whether in Source or 80 copyright notice that is included in or attached to the work 83 "Derivative Works" shall mean any work, whether in Source or Object 84 form, that is based on (or derived from) the Work and for which the 86 represent, as a whole, an original work of authorship. For the purposes 89 the Work and Derivative Works thereof. 91 "Contribution" shall mean any work of authorship, including 92 the original version of the Work and any modifications or additions 93 to that Work or Derivative Works thereof, that is intentionall [all...] |
/device/asus/tilapia/self-extractors/nvidia/staging/keymaster/ |
NOTICE | 78 "Work" shall mean the work of authorship, whether in Source or 80 copyright notice that is included in or attached to the work 83 "Derivative Works" shall mean any work, whether in Source or Object 84 form, that is based on (or derived from) the Work and for which the 86 represent, as a whole, an original work of authorship. For the purposes 89 the Work and Derivative Works thereof. 91 "Contribution" shall mean any work of authorship, including 92 the original version of the Work and any modifications or additions 93 to that Work or Derivative Works thereof, that is intentionall [all...] |
/external/chromium_org/chrome/browser/extensions/api/dial/ |
dial_api.h | 82 virtual void Work() OVERRIDE;
|
/external/clang/test/SemaCXX/ |
qualified-id-lookup.cpp | 143 void Work() {} 147 Z(foo::X()).Work();
|
/external/llvm/include/llvm/Analysis/ |
DominatorInternals.h | 115 SmallVector<typename GraphT::NodeType*, 32> Work; 119 Work.push_back(VIn); 121 while (!Work.empty()) { 122 typename GraphT::NodeType* V = Work.back(); 129 Work.push_back(VAncestor); 132 Work.pop_back();
|
/external/chromium_org/chrome/browser/extensions/api/bluetooth/ |
bluetooth_api.h | 186 virtual void Work() OVERRIDE; 204 virtual void Work() OVERRIDE;
|