HomeSort by relevance Sort by last modified time
    Searched refs:Work (Results 1 - 25 of 32) sorted by null

1 2

  /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/serial/
serial_api.h 49 virtual void Work() OVERRIDE;
65 virtual void Work() OVERRIDE;
91 virtual void Work() OVERRIDE;
109 virtual void Work() OVERRIDE;
127 virtual void Work() OVERRIDE;
147 virtual void Work() OVERRIDE;
166 virtual void Work() OVERRIDE;
186 virtual void Work() OVERRIDE;
serial_api.cc 60 void SerialGetPortsFunction::Work() {
108 Work();
111 void SerialOpenFunction::Work() {
175 void SerialCloseFunction::Work() {
211 void SerialReadFunction::Work() {
256 void SerialWriteFunction::Work() {
288 void SerialFlushFunction::Work() {
320 void SerialGetControlSignalsFunction::Work() {
360 void SerialSetControlSignalsFunction::Work() {
  /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 80 virtual void Work() OVERRIDE;
103 virtual void Work() OVERRIDE;
144 virtual void Work() OVERRIDE;
159 virtual void Work() OVERRIDE;
178 virtual void Work() OVERRIDE;
300 virtual void Work() OVERRIDE;
317 virtual void Work() OVERRIDE;
334 virtual void Work() OVERRIDE;
365 virtual void Work() OVERRIDE;
382 virtual void Work() OVERRIDE
    [all...]
socket_api.cc 145 void SocketCreateFunction::Work() {
164 void SocketDestroyFunction::Work() {
244 void SocketDisconnectFunction::Work() {
260 void SocketBindFunction::Work() {
301 void SocketListenFunction::Work() {
561 void SocketSetKeepAliveFunction::Work() {
585 void SocketSetNoDelayFunction::Work() {
605 void SocketGetInfoFunction::Work() {
699 void SocketJoinGroupFunction::Work() {
743 void SocketLeaveGroupFunction::Work() {
    [all...]
  /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...]
worker.cc 56 // This file must work with autoconf on its public version,
96 // Work around the sad fact that there are two (gnu, xsi) incompatible
381 Work();
387 // Thread work loop. Execute until marked finished.
388 bool WorkerThread::Work() {
535 // Memory fill work loop. Execute until alloted pages filled.
536 bool FillThread::Work() {
    [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;
dial_api.cc 160 void DialDiscoverNowFunction::Work() {
  /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;
bluetooth_api.cc 442 void BluetoothReadFunction::Work() {
494 void BluetoothWriteFunction::Work() {
  /frameworks/ex/variablespeed/jni/
Android.mk 20 # TODO: Work out if the log and android libs are needed.
  /external/clang/test/Analysis/
misc-ps-region-store.cpp 194 bar_->Work();
  /external/llvm/lib/CodeGen/
MachineLICM.cpp 166 /// dirty work.
282 /// that is safe to hoist, this instruction is called to do the dirty work.
607 /// dirty work.
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
HttpsURLConnectionTest.java 4 * this work for additional information regarding copyright ownership.
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
HttpsURLConnectionTest.java 4 * this work for additional information regarding copyright ownership.
    [all...]
  /external/chromium_org/ppapi/native_client/tests/ppapi_browser/
progress_event_listener.js 7 // Work around how JS binds 'this'.
  /external/chromium_org/ppapi/native_client/tools/browser_tester/browserdata/
nacltest.js 82 // Work around how JS binds 'this'
84 // It is assumed RPC will work unless proven otherwise.
503 // Work around how JS binds 'this'
680 // Work around how JS binds 'this'
839 // Work around how JS binds 'this'

Completed in 679 milliseconds

1 2