HomeSort by relevance Sort by last modified time
    Searched defs:done (Results 101 - 125 of 949) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/re2/util/
strutil.cc 73 // We can increment the last character in the string and be done
78 bool done = false; local
81 while (!done && index >= 0) {
87 done = true;
90 if (!done) {
  /external/chromium_org/tools/gn/
parser.h 55 bool done() const { return at_end() || has_error(); } function in class:Parser
tokenizer.h 68 bool done() const { return at_end() || has_error(); } function in class:Tokenizer
  /external/e2fsprogs/lib/ext2fs/
expanddir.c 22 int done; member in struct:expand_dir_struct
55 es->done = 1;
75 if (es->done)
99 es.done = 0;
108 if (!es.done)
unlink.c 27 int done; member in struct:link_struct
63 ls->done++;
89 ls.done = 0;
97 return (ls.done) ? 0 : EXT2_ET_DIR_NO_SPACE;
  /external/expat/examples/
elements.c 48 int done; local
54 done = len < sizeof(buf);
55 if (XML_Parse(parser, buf, len, done) == XML_STATUS_ERROR) {
62 } while (!done);
outline.c 84 int done; local
92 done = feof(stdin);
94 if (XML_Parse(p, Buff, len, done) == XML_STATUS_ERROR) {
101 if (done)
  /external/guava/guava/src/com/google/common/util/concurrent/
ListenableFutureTask.java 28 * provide an overrideable {@link FutureTask#done() done()} method. For similar
85 protected void done() { method in class:ListenableFutureTask
  /external/icu4c/common/unicode/
caniter.h 105 * the iteration is done.
166 UBool done; member in class:CanonicalIterator
  /external/icu4c/i18n/
csrmbcs.h 37 UBool done; member in class:IteratedChar
  /external/libffi/src/sparc/
v8.S 65 bz done
69 be,a done
73 be,a done
80 bne done
85 done: label
v9.S 86 brz,pn %i4, done
90 be,a,pt %icc, done
94 be,a,pn %icc, done
98 be,a,pn %icc, done
105 bne,pt %icc, done
110 done: ret label
  /external/qemu/distrib/sdl-1.2.15/test/
loopwave.c 57 static int done = 0; variable
60 done = 1;
106 while ( ! done && (SDL_GetAudioStatus() == SDL_AUDIO_PLAYING) )
testjoystick.c 17 int i, done; local
42 done = 0;
43 while ( ! done ) {
91 done = 1;
  /external/regex-re2/util/
strutil.cc 73 // We can increment the last character in the string and be done
78 bool done = false; local
81 while (!done && index >= 0) {
87 done = true;
90 if (!done) {
  /external/webp/src/dsp/
yuv.c 27 static int done = 0; variable
35 if (done) {
64 done = 1;
  /frameworks/base/cmds/backup/
backup.cpp 67 bool done; local
70 while (reader.ReadNextHeader(&done, &type) == 0) {
71 if (done) {
  /frameworks/native/opengl/tests/gl_perfapp/jni/
gl_code.cpp 31 bool done; variable
46 ALOGI("done\n");
51 done = true;
70 if (!done) {
72 done = false;
94 if (! done) {
  /sdk/dumpeventlog/src/com/android/dumpeventlog/
DumpEventLog.java 69 public void done() throws IOException { method in class:DumpEventLog.LogWriter
98 // them from ADB may not be done getting the first list.
146 writer.done();
  /bionic/libc/upstream-netbsd/libc/isc/
ev_streams.c 50 static void done(evContext opaqueCtx, evStream *str);
182 * Either 'old' is the only item on the done list, or it's
183 * not on the done list. If the former, then we unlink it
250 /* Add a stream to Done list and deselect the FD. */
252 done(evContext opaqueCtx, evStream *str) { function
288 done(opaqueCtx, str);
315 done(opaqueCtx, str);
  /external/chromium_org/base/process/
process_iterator_freebsd.cc 20 bool done = false; local
29 done = true;
43 done = true;
49 done = true;
52 } while (!done && (try_num++ < max_tries));
54 if (!done) {
process_iterator_mac.cc 27 bool done = false; local
36 done = true;
51 done = true;
57 done = true;
60 } while (!done && (try_num++ < max_tries));
62 if (!done) {
123 // Done
process_iterator_openbsd.cc 22 bool done = false; local
31 done = true;
45 done = true;
51 done = true;
54 } while (!done && (try_num++ < max_tries));
56 if (!done) {
117 // Done
  /external/chromium_org/chrome/browser/download/
download_danger_prompt.cc 31 const OnDone& done);
62 const OnDone& done)
66 done_(done) {
169 OnDone done = done_; local
175 if (!done.is_null())
176 done.Run(action);
186 const OnDone& done) {
188 item, web_contents, show_context, done);
189 // |prompt| will be deleted when the dialog is done.
  /external/chromium_org/chrome/browser/sync/
retry_verifier.h 42 bool done() const { return done_; } function in class:browser_sync::RetryVerifier
43 bool Succeeded() const { return done() && success_; }

Completed in 585 milliseconds

1 2 3 45 6 7 8 91011>>