Home
last modified time | relevance | path

Searched refs:date (Results 1 – 25 of 122) sorted by relevance

12345

/hardware/google/gfxstream/guest/mesa/bin/
Dgen_calendar_entries.py80 def _calculate_release_start(major: str, minor: str) -> datetime.date:
85 quarter = datetime.date.fromisoformat(f'20{major}-0{[1, 4, 7, 10][int(minor)]}-01')
104 date = _calculate_release_start(major, minor)
112 … writer.writerow([f'{major}.{minor}', date.isoformat(), f'{major}.{minor}.0-rc1', args.manager])
114 date = date + datetime.timedelta(days=7)
115 writer.writerow([None, date.isoformat(), f'{major}.{minor}.0-rc{row}', args.manager])
116 date = date + datetime.timedelta(days=7)
117 …writer.writerow([None, date.isoformat(), f'{major}.{minor}.0-rc4', args.manager, OR_FINAL.format(f…
122 def _calculate_next_release_date(next_is_zero: bool) -> datetime.date:
128 date = datetime.date.today()
[all …]
Dgen_calendar_entries_test.py84 def _patch_date(date: datetime.date) -> typing.Iterator[None]: argument
86 mdate.today = mock.Mock(return_value=date)
94 date = datetime.date(2021, 1, 6)
95 with TestNextReleaseDate._patch_date(date):
106 date = gen_calendar_entries._calculate_next_release_date(is_zero)
107 assert date.day == expected
113 date = datetime.date(2021, 1, 5)
114 with TestNextReleaseDate._patch_date(date):
125 date = gen_calendar_entries._calculate_next_release_date(is_zero)
126 assert date.day == expected
[all …]
Dgen_release_notes.py348 today = datetime.date.today()
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/
DinstallRelease22 date=`date +%Y%m%d`
24 install=$promo/$date
44 echo "svn add $date"
DMakefile167 SPECDATE = $(shell echo `date -u "+%Y-%m-%d %TZ"`)
468 DATE_YEAR = $(shell date +%Y)
/hardware/google/gfxstream/guest/mesa/src/c11/impl/
Dtime.c60 ULARGE_INTEGER date; in c23_timespec_get() local
64 date.HighPart = ft.dwHighDateTime; in c23_timespec_get()
65 date.LowPart = ft.dwLowDateTime; in c23_timespec_get()
66 ticks = (LONGLONG)(date.QuadPart - _TIMESPEC_IMPL_UNIX_EPOCH_IN_TICKS); in c23_timespec_get()
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/
Dgenspec.py16 from datetime import date, timedelta
27 today = date.today()
/hardware/qcom/bt/libbt-vendor/
Dgen-buildcfg.sh15 DATE=`/usr/bin/env date`
/hardware/broadcom/libbt/
Dgen-buildcfg.sh15 DATE=`/usr/bin/env date`
/hardware/google/gfxstream/guest/mesa/src/util/
Dlibdrm.h69 char *date; /**< User-space buffer to hold date */ member
/hardware/google/pixel/mm/
Dinit.mm.logging.sh14 log_time=`date '+%m-%d-%H-%M-%S'`
/hardware/qcom/sm7150/gps/pla/
DAndroid.mk16 -Wno-error=date-time
/hardware/qcom/sm8150p/gps/pla/
DAndroid.mk16 -Wno-error=date-time
/hardware/qcom/sm7250/gps/
DAndroid.mk19 -Wno-error=date-time
DAndroid.bp48 "-Wno-error=date-time",
/hardware/qcom/sm8150/gps/
DAndroid.mk19 -Wno-error=date-time
DAndroid.bp50 "-Wno-error=date-time",
/hardware/qcom/gps/msm8909w_3100/utils/platform_lib_abstractions/loc_pla/src/
DAndroid.mk17 -Wno-error=date-time
/hardware/qcom/sm7150/gps/build/
Dtarget_specific_features.mk16 -Wno-error=date-time
/hardware/qcom/sm8150p/gps/build/
Dtarget_specific_features.mk16 -Wno-error=date-time
/hardware/google/gfxstream/guest/mesa/src/util/blake3/
Dmeson.build17 # An up-to-date version of Meson, not using the VS backend is needed.
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/appendices/
DVK_GOOGLE_display_timing.adoc50 that is shipped with the official Khronos SDK, and is being kept up-to-date
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/chapters/VK_EXT_display_control/
Dswapchain_counters.adoc47 If a counter is not available because the swapchain is out of date, the
/hardware/interfaces/audio/common/all-versions/
DcopyHAL.sh140 * Copyright (C) $(date +"%Y") The Android Open Source Project
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/xml/
DREADME.adoc145 Bring up to date with changes in file paths and build tools.
187 Bring documentation up to date with Makefile targets (default is now

12345