/third_party/libexif/doc/ |
D | Makefile.am | 27 DOXYGEN_STAMPS += $(HTML_APIDOC_DIR).stamp 28 $(HTML_APIDOC_DIR).stamp: Doxyfile $(top_builddir)/libexif/libexif.la 33 $(HTML_APIDOC_DIR).tar.gz: $(HTML_APIDOC_DIR).stamp 39 DOXYGEN_STAMPS += $(HTML_APIDOC_INTERNALS_DIR).stamp 40 $(HTML_APIDOC_INTERNALS_DIR).stamp: Doxyfile-internals $(top_builddir)/libexif/libexif.la 45 $(HTML_APIDOC_INTERNALS_DIR).tar.gz: $(HTML_APIDOC_INTERNALS_DIR).stamp 49 install-apidocs-internals: $(HTML_APIDOC_INTERNALS_DIR).stamp 64 install-apidocs: $(HTML_APIDOC_DIR).stamp
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/quickchecking/src/ |
D | fuzzers.rs | 165 fn make_unique(&mut self, stamp: usize); in make_unique() 171 fn make_unique(&mut self, stamp: usize) { in make_unique() 173 DeclarationC::FunctionDecl(ref mut d) => d.make_unique(stamp), in make_unique() 174 DeclarationC::FunctionPtrDecl(ref mut d) => d.make_unique(stamp), in make_unique() 175 DeclarationC::StructDecl(ref mut d) => d.make_unique(stamp), in make_unique() 176 DeclarationC::UnionDecl(ref mut d) => d.make_unique(stamp), in make_unique() 177 DeclarationC::VariableDecl(ref mut d) => d.make_unique(stamp), in make_unique() 350 fn make_unique(&mut self, stamp: usize) { in make_unique() 351 self.ident_id += &format!("_{}", stamp); in make_unique() 387 fn make_unique(&mut self, stamp: usize) { in make_unique() [all …]
|
/third_party/curl/lib/ |
D | hsts.c | 308 struct tm stamp; in hsts_push() local 316 result = Curl_gmtime((time_t)sts->expires, &stamp); in hsts_push() 321 stamp.tm_year + 1900, stamp.tm_mon + 1, stamp.tm_mday, in hsts_push() 322 stamp.tm_hour, stamp.tm_min, stamp.tm_sec); in hsts_push() 338 struct tm stamp; in hsts_out() local 340 CURLcode result = Curl_gmtime((time_t)sts->expires, &stamp); in hsts_out() 345 stamp.tm_year + 1900, stamp.tm_mon + 1, stamp.tm_mday, in hsts_out() 346 stamp.tm_hour, stamp.tm_min, stamp.tm_sec); in hsts_out()
|
D | altsvc.c | 255 struct tm stamp; in altsvc_out() local 260 CURLcode result = Curl_gmtime(as->expires, &stamp); in altsvc_out() 290 stamp.tm_year + 1900, stamp.tm_mon + 1, stamp.tm_mday, in altsvc_out() 291 stamp.tm_hour, stamp.tm_min, stamp.tm_sec, in altsvc_out()
|
/third_party/skia/modules/skresources/src/ |
D | SkResources.cpp | 54 fWindow[1].frame = fDecoder->nextImage(&fWindow[1].stamp); in advance() 61 if (t < fWindow[0].stamp) { in getFrame() 64 fWindow[0].stamp = fWindow[1].stamp = 0; in getFrame() 68 while (!fEof && t >= fWindow[1].stamp) { in getFrame() 72 SkASSERT(fWindow[0].stamp <= t && (fEof || t < fWindow[1].stamp)); in getFrame() 81 double stamp = 0; member
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
D | Calendar.java | 1336 private transient int stamp[]; field in Calendar 1649 for (j = 0; j < stamp.length; j++) { in recalculateStamp() 1653 for (i = 0; i < stamp.length; i++) { in recalculateStamp() 1654 if (stamp[i] > nextStamp && stamp[i] < currentValue) { in recalculateStamp() 1655 currentValue = stamp[i]; in recalculateStamp() 1661 stamp[index] = ++nextStamp; in recalculateStamp() 1681 stamp = new int[fields.length]; in initInternal() 2006 fields[i] = stamp[i] = 0; // UNSET == 0 in setTimeInMillis() 2046 return (stamp[field] > UNSET) ? fields[field] : defaultValue; in internalGet() 2065 stamp[field] = nextStamp++; in set() [all …]
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
D | Calendar.java | 1276 private transient int stamp[]; field in Calendar 1582 for (j = 0; j < stamp.length; j++) { in recalculateStamp() 1586 for (i = 0; i < stamp.length; i++) { in recalculateStamp() 1587 if (stamp[i] > nextStamp && stamp[i] < currentValue) { in recalculateStamp() 1588 currentValue = stamp[i]; in recalculateStamp() 1594 stamp[index] = ++nextStamp; in recalculateStamp() 1614 stamp = new int[fields.length]; in initInternal() 1927 fields[i] = stamp[i] = 0; // UNSET == 0 in setTimeInMillis() 1964 return (stamp[field] > UNSET) ? fields[field] : defaultValue; in internalGet() 1982 stamp[field] = nextStamp++; in set() [all …]
|
/third_party/gn/patches/ |
D | fd9f2036f26d83f9fcfe93042fb952e5a7fe2167.patch | 53 " || obj/foo/generate.stamp\n" 57 - "build obj/foo/gen_obj.stamp: stamp obj/BUILD_DIR/gen_obj.generated.o" 58 + "build obj/foo/gen_obj.stamp: stamp obj/out/Debug/gen_obj.generated.o" 61 " || obj/foo/generate.stamp\n"; 77 // obj/foo/gen_obj.stamp
|
/third_party/alsa-utils/include/ |
D | Makefile.am | 3 version.h: stamp-vh 6 stamp-vh: $(top_builddir)/configure.ac 22 echo timestamp > stamp-vh)
|
/third_party/python/Doc/includes/ |
D | tzinfo_examples.py | 25 stamp = (dt - datetime(1970, 1, 1, tzinfo=self)) // SECOND 26 args = _time.localtime(stamp)[:6] 29 fold = (args == _time.localtime(stamp - dst_diff)) 52 stamp = _time.mktime(tt) 53 tt = _time.localtime(stamp)
|
/third_party/curl/src/ |
D | tool_progress.c | 146 struct timeval stamp; member 161 static struct timeval stamp; in progress_meter() local 170 diff = tvdiff(now, stamp); in progress_meter() 194 stamp = now; in progress_meter() 234 speedstore[i].stamp = now; in progress_meter() 248 deltams = tvdiff(now, speedstore[speedindex].stamp); in progress_meter()
|
D | tool_filetime.c | 37 curl_off_t *stamp) in getfiletime() argument 62 *stamp = (converted - CURL_OFF_T_C(116444736000000000)) / 10000000; in getfiletime() 81 *stamp = (curl_off_t)statbuf.st_mtime; in getfiletime()
|
/third_party/popt/ |
D | .gitignore | 35 stamp-h 36 stamp-h1 37 stamp-h.in
|
/third_party/libexif/ |
D | .gitignore | 56 stamp-h 57 stamp-h1 58 stamp-h.in
|
/third_party/alsa-lib/include/ |
D | Makefile.am | 67 DISTCLEANFILES = stamp-vh version.h alsa asoundlib.h 75 version.h: stamp-vh alsa_link 82 stamp-vh: $(top_builddir)/configure.ac 100 echo timestamp > stamp-vh)
|
/third_party/mesa3d/src/mesa/state_tracker/ |
D | st_manager.c | 172 if (stdraw && stdraw->stamp != st->draw_stamp) { in st_context_validate() 177 st->draw_stamp = stdraw->stamp; in st_context_validate() 180 if (stread && stread->stamp != st->read_stamp) { in st_context_validate() 187 st->read_stamp = stread->stamp; in st_context_validate() 230 new_stamp = p_atomic_read(&stfb->iface->stamp); in st_framebuffer_validate() 243 new_stamp = p_atomic_read(&stfb->iface->stamp); in st_framebuffer_validate() 288 ++stfb->stamp; in st_framebuffer_validate() 320 stfb->stamp++; in st_framebuffer_update_attachments() 644 stfb->iface_stamp = p_atomic_read(&stfbi->stamp) - 1; in st_framebuffer_create() 656 stfb->stamp = 0; in st_framebuffer_create() [all …]
|
/third_party/skia/gn/ |
D | push_to_android.py | 12 host, serial, stamp = sys.argv[1:] variable 22 with open(stamp, 'w'):
|
/third_party/skia/third_party/externals/dawn/generator/ |
D | BUILD.gn | 37 _stamp_file = "${dawn_gen_root}/removed_stale_autogen_files.stamp" 50 "--stamp", 61 # Output a stamp file so we don't re-run this action on every build.
|
/third_party/f2fs-tools/ |
D | .gitignore | 44 stamp-h 45 stamp-h1
|
/third_party/skia/gn/toolchain/ |
D | BUILD.gn | 61 stamp = "$shell echo >" 64 stamp = "touch" 228 tool("stamp") { 229 command = "$stamp {{output}}" 230 description = "stamp {{output}}" 378 tool("stamp") { 379 command = "$stamp {{output}}" 380 description = "stamp {{output}}"
|
/third_party/curl/packages/vms/ |
D | clean_gnv_curl.com | 200 $ file = "lcl_root:[]stamp-h1." 203 $ file = "lcl_root:[...]stamp-h1." 206 $ file = "lcl_root:[...]stamp-h2." 209 $ file = "lcl_root:[...]stamp-h3."
|
/third_party/skia/third_party/externals/harfbuzz/ |
D | git.mk | 297 po/stamp-it \ 298 po/stamp-po \ 316 stamp-h1 \ 359 $(filter %_vala.stamp,$(DIST_COMMON)) \
|
/third_party/skia/third_party/externals/libwebp/ |
D | .gitignore | 20 /stamp-h1 31 src/webp/stamp-h1
|
/third_party/alsa-utils/ |
D | .gitignore | 58 include/stamp-* 67 po/stamp-po
|
/third_party/alsa-lib/ |
D | .gitignore | 32 include/stamp-h1 33 include/stamp-vh
|