HomeSort by relevance Sort by last modified time
    Searched refs:done (Results 176 - 200 of 1367) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/ltrace/
param.c 54 void (*done)(struct param_enum *))
64 param->u.pack.done = done;
111 return param->u.pack.done(context);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
IsoFile.java 82 boolean done = false;
83 while (!done) {
90 done = true;
93 done = true;
  /external/iproute2/tc/
m_pedit.c 314 goto done;
319 goto done;
324 goto done;
328 done:
330 printf("parse_cmd done argc %d %s offset %d length %d\n",argc,*argv,tkey->off,len);
363 goto done;
368 goto done;
373 goto done;
378 done:
430 goto done;
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/gen/
nftw.c 101 goto done;
109 done:
  /bionic/libc/upstream-openbsd/lib/libc/string/
bcopy.c 68 goto done;
83 * Try to align operands. This cannot be done
122 done:
  /development/ndk/sources/android/libportable/arch-mips/
filefd.c 42 * intercepted to correct signal numbers. This is done using this table
124 goto done;
198 if (rv != 0) goto done;
211 done:
251 goto done;
259 goto done;
272 goto done;
280 goto done;
324 done:
  /external/chromium_org/content/test/data/indexeddb/
bug_109187.js 20 done();
database_test.js 26 done();
  /external/chromium_org/third_party/WebKit/PerformanceTests/Interactive/resources/
window-resize.js 26 done: onTestDone
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsOp.cpp 20 bool done = true; local
22 if (const SkOpAngle* last = segment->activeAngle(*tIndex, tIndex, endIndex, &done,
36 if (done) {
70 if (!segment->done(angle)) {
158 if (!unsortable && current->done()) {
161 SkASSERT(unsortable || !current->done());
190 || !current->done(SkMin32(index, endIndex))));
197 if (!current->done(min)) {
  /external/dnsmasq/src/
util.c 492 ssize_t n, done; local
494 for (done = 0; done < size; done += n)
498 n = read(fd, &packet[done], (size_t)(size - done));
500 n = write(fd, &packet[done], (size_t)(size - done));
  /external/llvm/include/llvm/Support/
CommandLine.h 1192 void done() { function in class:llvm::cl::opt
1361 void done() { function in class:llvm::cl::list
    [all...]
  /external/chromium_org/chrome/browser/chromeos/device/
input_service_proxy_browsertest.cc 122 void OnGetDevices(const base::Closure& done,
125 done.Run();
128 void OnGetKeyboard(const base::Closure& done,
134 done.Run();
137 void OnGetMouse(const base::Closure& done,
141 done.Run();
  /external/chromium_org/chrome/browser/extensions/api/omnibox/
omnibox_api_browsertest.cc 48 EXPECT_TRUE(autocomplete_controller->done());
70 EXPECT_TRUE(autocomplete_controller->done());
182 EXPECT_TRUE(autocomplete_controller->done());
189 EXPECT_TRUE(autocomplete_controller->done());
197 EXPECT_TRUE(autocomplete_controller->done());
233 EXPECT_TRUE(autocomplete_controller->done());
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/
injected_script_loader.js 21 * @param {function(Object.<string,string>)} done A function called when all
25 cvox.InjectedScriptLoader.fetchCode = function(files, done) {
49 done(code);
  /external/chromium_org/components/invalidation/
sync_system_resources.cc 223 invalidation::WriteKeyCallback* done) {
238 done));
242 invalidation::ReadKeyCallback* done) {
244 RunAndDeleteReadKeyCallback(done, cached_state_);
248 invalidation::DeleteKeyCallback* done) {
253 void SyncStorage::ReadAllKeys(invalidation::ReadAllKeysCallback* done) {
  /external/chromium_org/third_party/WebKit/PerformanceTests/inspector/
heap-snapshot-performance-test.js 63 HeapProfilerAgent.clearProfiles(done);
67 function done()
70 timer.done(testName);
  /external/chromium_org/third_party/libjingle/source/talk/session/tunnel/
tunnelsessionclient_unittest.cc 162 bool done = false; local
163 WriteData(&done);
164 if (done) {
192 void WriteData(bool* done) {
201 *done = false;
203 *done = true;
  /external/chromium_org/third_party/skia/experimental/Networking/
SkSockets.cpp 102 h.done = false;
104 while (!h.done && fConnected && !failure) {
137 memcpy(&h.done, packet, sizeof(bool));
145 //SkDebugf("read packet(done:%d, bytes:%d) from fd:%d in %d tries\n",
146 // h.done, h.bytes, fSockfd, attempts);
188 h.done = (size - bytesWrittenInTransfer <= CONTENT_SIZE);
189 h.bytes = (h.done) ? size - bytesWrittenInTransfer : CONTENT_SIZE;
191 memcpy(packet, &h.done, sizeof(bool));
228 //SkDebugf("wrote to packet(done:%d, bytes:%d) to fd:%d in %d tries\n",
229 // h.done, h.bytes, i, attempts)
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkTDynamicHash.h 39 bool done() const { function in class:SkTDynamicHash::Iter
44 SkASSERT(!this->done());
50 } while (!this->done() && (this->current() == Empty() || this->current() == Deleted()));
66 bool done() const { function in class:SkTDynamicHash::ConstIter
71 SkASSERT(!this->done());
77 } while (!this->done() && (this->current() == Empty() || this->current() == Deleted()));
167 // O(1) checks, always done.
  /external/chromium_org/third_party/webrtc/tools/rtcbot/test/
simple_offer_answer.js 19 function createPeerConnection(done) {
20 this.createPeerConnection(done, test.fail);
49 test.done();
  /external/chromium_org/v8/test/mjsunit/es6/
generators-relocation.js 9 function assertIteratorResult(value, done, result) {
10 assertEquals({value: value, done: done}, result);
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractListeningExecutorService.java 72 // done before submitting more of them. This interleaving
153 boolean done = false;
169 done = true;
172 if (!done) {
188 boolean done = false;
226 done = true;
229 if (!done) {
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
JSR166TestCase.java 317 * Extra checks that get done for all test cases.
    [all...]
  /bootable/recovery/updater/
install.c 120 goto done;
125 goto done;
129 goto done;
133 goto done;
158 goto done;
164 goto done;
179 done:
201 goto done;
212 done:
229 goto done;
    [all...]

Completed in 3648 milliseconds

1 2 3 4 5 6 78 91011>>