Searched refs:date (Results 1 - 25 of 90) sorted by relevance

1234

/haiku-fatelf/src/bin/coreutils/man/
H A Ddate.x2 date \- print or set the system date and time
7 The --date=STRING is a mostly free format human readable date string
9 even "next Thursday". A date string may contain items indicating
10 calendar date, time of day, time zone, day of week, relative time,
11 relative date, and numbers. An empty string indicates the beginning
12 of the day. The date string format is more complex than is easily
/haiku-fatelf/headers/private/shared/
H A DHoliday.h30 Returns the date for easter sunday for the \c year.
45 BDate date; local
47 date.SetDate(year, 4, day - 31);
49 date.SetDate(year, 3, day);
50 return date;
55 Returns the date for ascension day for the \c year.
60 BDate date = EasterSunday(year); local
61 date.AddDays(39);
62 return date;
67 Returns the date fo
72 BDate date = EasterSunday(year); local
[all...]
/haiku-fatelf/src/preferences/time/
H A DBaseView.cpp74 BDate date = dateTime.Date(); local
77 day = date.Day();
81 year = date.Year();
85 month = date.Month();
88 date.SetDate(year, month, day);
89 dateTime.SetDate(date);
102 BDate date = BDate::CurrentDate(B_LOCAL_TIME); local
103 fMessage.AddInt32("day", date.Day());
104 fMessage.AddInt32("year", date.Year());
105 fMessage.AddInt32("month", date
[all...]
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/
H A Dexecute.sh21 START_DATE=`date`
22 START_HOUR=`date +%H`
23 START_MIN=`date +%M`
24 START_SEC=`date +%S`
50 END_DATE=`date`
51 END_HOUR=`date +%H`
52 END_MIN=`date +%M`
53 END_SEC=`date +%S`
87 END_DATE=`date`
88 END_HOUR=`date
[all...]
/haiku-fatelf/headers/private/net/
H A DHttpTime.h27 BHttpTime(time_t date);
32 void SetDate(time_t date);
/haiku-fatelf/src/bin/rcs/
H A Drcstime.c44 time2date(unixtime,date)
46 char date[datesize];
49 VOID sprintf(date,
71 faterror("unknown date/time: %s", source);
76 * Parse a free-format date in SOURCE, convert it
94 /* Convert an RCS internal format date to time_t. */
125 date2str(date, datebuf)
126 char const date[datesize];
129 register char const *p = date;
136 + (date[
[all...]
H A Drcsrev.c127 /* Given a pointer s to a dotted number (date or revision number),
261 normalizeyear(date, year)
262 char const *date;
265 if (isdigit(date[0]) && isdigit(date[1]) && !isdigit(date[2])) {
268 year[2] = date[0];
269 year[3] = date[1];
273 return date;
278 cantfindbranch(revno, date, autho
866 char date[20]; local
[all...]
H A Drcsfreeze.sh31 DATE=`date` || exit
/haiku-fatelf/src/bin/gdb/include/nlm/
H A Dppc-ext.h35 /* File creation date in standard Unix time format (seconds since
37 unsigned char date[4]; member in struct:nlm32_powerpc_external_prefix_header
/haiku-fatelf/src/kits/network/libnetapi/
H A DHttpTime.cpp36 BHttpTime::BHttpTime(time_t date) argument
38 fDate(date),
64 BHttpTime::SetDate(time_t date) argument
66 fDate = date;
/haiku-fatelf/headers/os/support/
H A DDateTime.h101 static bool IsValid(const BDate& date);
108 bool SetDate(const BDate& date);
121 int32 Difference(const BDate& date) const;
148 bool operator!=(const BDate& date) const;
149 bool operator==(const BDate& date) const;
151 bool operator<(const BDate& date) const;
152 bool operator<=(const BDate& date) const;
154 bool operator>(const BDate& date) const;
155 bool operator>=(const BDate& date) const;
173 BDateTime(const BDate &date, cons
[all...]
/haiku-fatelf/src/apps/deskbar/
H A DCalendarMenuWindow.cpp205 BDate date = fCalendarView->Date(); local
206 date.AddMonths(kMonthDownMessage == message->what ? -1 : 1);
207 _UpdateDate(date);
214 BDate date = fCalendarView->Date(); local
215 date.AddYears(kYearDownMessage == message->what ? -1 : 1);
216 _UpdateDate(date);
228 CalendarMenuWindow::_UpdateDate(const BDate& date) argument
230 if (!date.IsValid())
233 fCalendarView->SetDate(date);
236 text << date
[all...]
H A DCalendarMenuWindow.h32 void _UpdateDate(const BDate& date);
/haiku-fatelf/src/apps/webpositive/support/
H A DDateTime.h101 bool IsValid(const BDate& date) const;
108 bool SetDate(const BDate& date);
120 int32 Difference(const BDate& date) const;
146 bool operator!=(const BDate& date) const;
147 bool operator==(const BDate& date) const;
149 bool operator<(const BDate& date) const;
150 bool operator<=(const BDate& date) const;
152 bool operator>(const BDate& date) const;
153 bool operator>=(const BDate& date) const;
171 BDateTime(const BDate &date, cons
[all...]
H A DDateTime.cpp474 Please note that a date before 1.1.4713 BC, a date with year 0 and a date
476 date is invalid, the date is not set and IsValid() returns false. Also note
533 Returns true if the date is valid, otherwise false.
535 Please note that a date before 1.1.4713 BC, a date with year 0 and a date
549 BDate::IsValid(const BDate& date) cons
615 SetDate(const BDate& date) argument
1041 BDate date; local
1214 BDateTime(const BDate& date, const BTime& time) argument
1281 SetDateTime(const BDate& date, const BTime& time) argument
1312 SetDate(const BDate& date) argument
[all...]
/haiku-fatelf/src/libs/print/libgutenprint/scripts/
H A Dmkchlog30 my %logmsgs = (); # Index by date, time, and author
229 } elsif (! $in_header && $_ =~ /^date: /) {
231 my ($date, $time, $author, $state, $plus, $minus);
233 $date = $stuff[1];
240 $date = $stuff[1];
274 my $datetimeauthor = "$date $time $author $junkbody $currentfile $revision $symbols";
305 my ($date, $time, $author, $junk, $file, $revision, @symbols);
310 my ($date, $time, $author, $emailsuffix, $prevmsg, $revinfo, $deltainfo) = @_;
316 print "$date$time\t<$author$emailsuffix>\n\n";
338 ($date,
[all...]
/haiku-fatelf/src/kits/support/
H A DDateTime.cpp479 Please note that a date before 1.1.4713 BC, a date with year 0 and a date
481 date is invalid, the date is not set and IsValid() returns false. Also note
538 Returns true if the date is valid, otherwise false.
540 Please note that a date before 1.1.4713 BC, a date with year 0 and a date
554 BDate::IsValid(const BDate& date) argument
623 SetDate(const BDate& date) argument
1060 BDate date; local
1235 BDateTime(const BDate& date, const BTime& time) argument
1302 SetDateTime(const BDate& date, const BTime& time) argument
1333 SetDate(const BDate& date) argument
[all...]
/haiku-fatelf/src/tests/kits/net/netperf/
H A Dsnapshot_script87 echo Netperf snapshot script started at `date` >&2
122 echo Starting 56x4 TCP_STREAM tests at `date` >&2
138 echo Starting 32x4 TCP_STREAM tests at `date` >&2
152 echo Starting 1,1 TCP_RR tests at `date` >&2
165 echo Starting 1,1 UDP_RR tests at `date` >&2
180 echo Starting 512,4 UDP_RR tests at `date` >&2
191 echo Starting 32x4 UDP_STREAM tests at `date` >&2
205 echo Starting 32x1 UDP_STREAM tests at `date` >&2
220 echo Tests completed at `date` >&2
/haiku-fatelf/src/tools/docbook/libxslt/libexslt/
H A Ddate.c2 * date.c: Implementation of the EXSLT -- Dates and Times module
5 * http://www.exslt.org/date/date.html
15 * date-format
17 * format-date
18 * parse-date
64 * types of date and/or time (from schema datatypes)
110 exsltDateValDate date; member in union:_exsltDateVal::__anon6098
192 * @dt: pointer to a date structure
370 * @dt: pointer to a date structur
682 exsltDateFreeDate(exsltDateValPtr date) argument
[all...]
/haiku-fatelf/src/apps/processcontroller/
H A DIconMenuItem.cpp171 struct tm* date = gmtime(&kernelTime); local
172 old_version = (date->tm_year < 101 || (date->tm_year == 101 && date->tm_mon < 10));
/haiku-fatelf/src/bin/unzip/
H A Dunzipstb.c34 pVersion->date);
/haiku-fatelf/src/tests/system/libroot/os/
H A DParseDateTest.cpp50 const char* date; member in struct:test
116 for (int32 i = 0; kDates[i].date; i++) {
118 time_t result = parsedate_etc(kDates[i].date, now, &flags);
138 printf("\"%s\" = %ld (%s) -> %s", kDates[i].date, result,
/haiku-fatelf/src/tools/docbook/libxml2/
H A Dxmlschemastypes.c121 xmlSchemaValDate date; member in union:_xmlSchemaVal::__anon6089
328 * TODO: Always keep those structs up-to-date with the originals.
469 xmlSchemaTypeDateDef = xmlSchemaInitBasicType("date",
1163 dt->type,dt->value.date.year,dt->value.date.mon, \
1164 dt->value.date.day,dt->value.date.hour,dt->value.date.min, \
1165 dt->value.date.sec); \
1166 if (dt->value.date
[all...]
/haiku-fatelf/src/kits/shared/
H A DCalendarView.cpp419 BDate date(fDate);
420 date.AddMonths(-1);
421 SetDate(date);
429 BDate date(fDate);
430 date.AddMonths(1);
431 SetDate(date);
544 BCalendarView::SetDate(const BDate& date) argument
546 if (!date.IsValid())
549 if (fDate == date)
552 if (fDate.Year() == date
[all...]
/haiku-fatelf/src/bin/bfs_tools/lib/
H A Dmakefile112 @zip -y `basename $(NAME)`-`date +%Y-%m-%d`.zip *.[ch]* *.rsrc makefile History ToDo test/*.[ch]* test/makefile

Completed in 292 milliseconds

1234