Searched defs:done (Results 101 - 125 of 574) sorted by relevance

1234567891011>>

/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/mbcs/
H A DBIG5Tool.java280 boolean done = false; field in class:BIG5Tool.iteratedChar
287 done = false;
292 done = true;
311 it.done = true;
336 return (it.done == false);
H A DEUCTool.java280 boolean done = false; field in class:EUCTool.iteratedChar
287 done = false;
292 done = true;
313 it.done = true;
359 return (it.done == false);
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/
H A DLabelInfo.java36 private boolean done = false; field in class:LabelInfo
147 * Mark a given label as done.
153 create(label).done = true;
157 * Resets the "done" status of a given label.
165 info.done = false;
170 * Resets the "done" status of all given labels.
182 * Checks whether this label is marked as done.
186 * @return <code>true</code> if this label is marked as done
190 return info == null ? false : info.done;
/external/linux-kselftest/tools/testing/selftests/timers/
H A Dthreadtest.c47 int done = 0; variable
68 done = 1;
95 while (!done) {
120 while (!done) {
185 if (done) {
193 done = 1;
/external/pdfium/third_party/agg23/
H A Dagg_conv_adaptor_vcgen.h87 bool done = false; local
88 while(!done) {
131 done = true;
/external/python/cpython2/Demo/rpc/
H A Dxdr.py101 def done(self): member in class:Unpacker
/external/python/cpython2/Modules/_ctypes/libffi/src/x86/
H A Dwin64.S64 jmp done
68 done: label
/external/python/cpython2/Parser/
H A Dtokenizer.h24 int done; /* E_OK normally, E_EOF at EOF, otherwise error code */ member in struct:tok_state
25 /* NB If done != E_OK, cur must be == inp!!! */
/external/python/cpython2/Python/
H A Dthread_os2.h157 int done = 0; local
175 while (!done) {
194 done = 1;
/external/python/cpython2/Tools/webchecker/
H A Dwsgui.py55 self.message("[done]")
222 done = 0 variable in class:AppArray
225 while not self.done:
233 self.done = 1
/external/selinux/restorecond/
H A Drestorecond.c80 static void done(void) { function
161 atexit( done );
/external/skia/src/core/
H A DSkTMultiMap.h110 if (!fIter.done()) {
115 bool done() const { function in class:SkTMultiMap::ConstIter
116 return fIter.done();
130 if (!fIter.done()) {
/external/sonivox/arm-wt-22k/host_src/
H A Deas_wave.c302 EAS_BOOL done; local
324 done = EAS_FALSE;
325 while (!done)
333 done = EAS_TRUE;
337 done = EAS_TRUE;
346 done = EAS_TRUE;
350 done = EAS_TRUE;
359 done = EAS_TRUE;
375 done = EAS_TRUE;
386 done
[all...]
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_dlssynth.c386 EAS_BOOL done = EAS_FALSE; local
428 done = WT_CheckSampleEnd(pWTVoice, &intFrame, EAS_FALSE);
443 done = EAS_TRUE;
445 return done;
/external/spirv-llvm/lib/SPIRV/
H A DSPIRVMDBuilder.h105 ParentT &done(MDNode **Ptr = nullptr) { function in struct:SPIRV::SPIRVMDBuilder::MDWrapper
/external/swiftshader/third_party/LLVM/lib/Target/Sparc/
H A DDelaySlotFiller.cpp157 bool done = false; local
159 while (!done) {
160 done = (I == MBB.begin());
162 if (!done)
/external/syslinux/com32/elflink/ldlinux/
H A Dcli.c132 bool done = false; local
156 while (!done) {
222 done = true;
/external/syslinux/com32/elflink/
H A Dtest_com32.c181 int done = 0; local
201 done = process_command(command);
203 } while (!done);
/external/syslinux/core/fs/pxe/
H A Dftp.c40 bool first_line, done; local
81 done = false;
85 if (done) {
116 done = true;
118 done = false;
122 done = false;
H A Disr.c148 bool done = false; local
150 while (!done) {
159 done = true;
172 done = true;
177 done = true;
/external/syslinux/libinstaller/
H A Dsyslxcom.c63 ssize_t done = 0; local
78 done += rv;
83 return done;
90 ssize_t done = 0; local
105 done += rv;
110 return done;
/external/tcpdump/
H A Dprint-dvmrp.c168 register int metric, done; local
208 done = metric & 0x80;
213 } while (!done);
/external/toybox/toys/pending/
H A Darping.c83 static void done(int sig) function
175 if (toys.optflags & FLAG_f) done(0);
192 if (!TT.count) done(0);
196 ((TT.time_out)*1000))) done(0);
281 signal(SIGINT, done);
/external/unicode/
H A DCVTUTF7.C91 int shifted = 0, needshift = 0, done = 0; local
108 if (!(done = (source >= sourceEnd)))
110 needshift = (!done && ((r > 0x7f) || mustshift[r]));
154 if (verbose || ((!done) && (invbase64[r] >=0 || r == SHIFT_OUT)))
164 if (!needshift && !done)
171 while (!done);
184 int shifted = 0, first = 0, wroteone = 0, base64EOF, base64value, done; local
196 if (!(done = (source >= sourceEnd)))
200 /* We're done with a base64 string if we hit EOF, it's not a valid
203 base64EOF = done || (
[all...]
/external/v8/src/arm/
H A Dcodegen-arm.cc399 Label one_byte, done; local
406 __ jmp(&done);
410 __ bind(&done);

Completed in 1057 milliseconds

1234567891011>>