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

1 2 3 4 5 6

  /external/dhcpcd/mk/
cc.mk 8 _CSTD_SH= if test -n "${CSTD}"; then echo "-std=${CSTD}"; else echo ""; fi
18 _CC_FLAGS_SH= if ! test -d .git; then echo ""; else for f in ${_CCFLAGS}; do \
20 then printf "%s" "$$f "; fi \
25 _GGDB_SH= if test "${DEBUG}" = "yes"; then echo "-ggdb -DDEBUG"; else echo ""; fi
man.mk 4 _MANPREFIX_SH= if [ -n "${PREFIX}" ]; then echo "${PREFIX}"; else echo "/usr/share"; fi
prog.mk 13 _RPATH_SH= if test "${PREFIX}" = "" -o "${PREIX}" = "/"; then \
23 _DYNLINK_SH= if test "${PREFIX}" = "" -o "${PREFIX}" = "/" && test -e /libexec/ld.elf_so; then \
  /external/qemu/distrib/sdl-1.2.12/src/timer/riscos/
SDL_systimer.c 86 Uint32 now,then,elapsed; local
103 then = SDL_GetTicks();
116 elapsed = (now-then);
117 then = now;
  /external/zlib/contrib/pascal/
example.pas 39 if err <> Z_OK then
71 if StrComp(PChar(uncompr), hello) <> 0 then
93 if zfile = NIL then
99 if gzputs(zfile, 'ello') <> 4 then
105 if gzprintf(zfile, ', %s!', 'hello') <> 8 then
111 if gzputs(zfile, ', hello!') <> 8 then
121 if zfile = NIL then
129 if gzread(zfile, uncompr, uncomprLen) <> len then
134 if StrComp(PChar(uncompr), hello) <> 0 then
143 if (pos <> 6) or (gztell(zfile) <> pos) then
    [all...]
  /external/genext2fs/
Config.mk 8 if [ $$num_blocks -lt 20480 ]; then extra_blocks=3072; \
  /external/qemu/distrib/sdl-1.2.12/src/timer/unix/
SDL_systimer.c 102 Uint32 then, now, elapsed;
110 then = SDL_GetTicks();
122 elapsed = (now-then);
123 then = now;
  /external/webkit/LayoutTests/fast/dom/Geolocation/resources/
permission-denied-stops-watches.js 4 // to be requested, then deny it.
24 // Update the mock Geolocation service to report a new position, then
  /external/zlib/contrib/delphi/
ZLib.pas 268 if code < 0 then
275 if code < 0 then
282 if code < 0 then
335 if OutEstimate = 0 then
380 if DCheck(inflate(strm, Z_FINISH)) <> Z_STREAM_END then
400 if Assigned(FOnProgress) then FOnProgress(Sender);
423 if FStrm.Position <> FStrmPos then FStrm.Position := FStrmPos;
431 if FZRec.avail_out < sizeof(FBuffer) then
448 if FStrm.Position <> FStrmPos then FStrm.Position := FStrmPos;
452 if FZRec.avail_out = 0 then
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacenc/Tools/
doit.mk 68 @if test ! -d $@; then \
74 @if test ! -d $@; then \
78 @if test ! -d $@; then \
  /development/ndk/tests/prebuilt-library/jni/
Android.mk 3 # Define BUILD_FOO=1 to rebuild libfoo.so from scratch, then
  /frameworks/base/libs/ui/
Android.mk 47 # If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework
  /bionic/libc/arch-arm/bionic/
clone.S 65 @ to the C __thread_entry function which does some setup and then
117 # then either exit or error
  /build/core/tasks/
sdk-addon.mk 16 # If they didn't define PRODUCT_SDK_ADDON_NAME, then we won't define
41 # Files that are built and then copied into the sdk-addon
88 $(hide) if [ -n "$(PRIVATE_DOCS_DIR)" ] ; then \
  /external/chromium/net/data/proxy_resolver_v8_unittest/
passthrough.js 14 // non-alphanumeric character with a dot, then fix up the oddly placed dots.
  /bootable/recovery/updater/
Android.mk 47 # extension libs to a temp file, then copy that to the ".list" file if
49 # file then uses the .list as a prerequisite, so it is only rebuilt
  /external/webkit/SunSpider/tests/sunspider-0.9/
date-format-xparb.js 305 var then = (7 - jan1.getDay() + 4);
306 document.write(then);
307 return String.leftPad(((now - then) / 7) + 1, 2, "0");
  /external/webkit/SunSpider/tests/sunspider-0.9.1/
date-format-xparb.js 305 var then = (7 - jan1.getDay() + 4);
306 document.write(then);
307 return String.leftPad(((now - then) / 7) + 1, 2, "0");
  /external/chromium/third_party/icu/source/test/cintltst/
cdtdptst.c 197 UChar *pattern=NULL, *now=NULL, *then=NULL; local
214 else then=myDateFormat(format, date2);
215 log_verbose("%s\n", austrdup(then) );
  /external/icu4c/test/cintltst/
cdtdptst.c 197 UChar *pattern=NULL, *now=NULL, *then=NULL; local
214 else then=myDateFormat(format, date2);
215 log_verbose("%s\n", austrdup(then) );
  /cts/tests/SignatureTest/
Android.mk 52 if [ ! -f $(fake_resource_check) ]; then \
85 then mkdir -p $(FAKE_RESOURCE_DIR); \
  /device/sample/apps/SampleEmailPolicy/
Android.mk 18 # system to create "MyDeviceEmailPolicy.apk". You must then add this to the appropriate product.mk
  /ndk/build/core/
check-cygwin-make.mk 29 # (e.g. /cygdrive/c/cygwin/usr/bin/make), then strip the
  /external/libpng/contrib/gregbook/
rpng2-x.c 590 * that the file is a PNG image), then loop through the file and continue
645 struct timeval now, then; local
648 if (gettimeofday(&then, NULL) == 0) {
649 then.tv_sec += loop_interval;
676 if (now.tv_sec < then.tv_sec ||
677 (now.tv_sec == then.tv_sec && now.tv_usec < then.tv_usec))
680 long seconds_to_go = then.tv_sec - now.tv_sec;
706 if (now.tv_sec >= then.tv_sec)
708 seconds_to_go = then.tv_sec - now.tv_sec
    [all...]
  /development/build/
Android.mk 36 $(hide) if [ ! -f $(PRIVATE_FRAMEWORK_RES_PACKAGE) ]; then \

Completed in 662 milliseconds

1 2 3 4 5 6