Searched refs:hour (Results 151 - 175 of 315) sorted by relevance

1234567891011>>

/macosx-10.10/CPANInternal-159.1/DateTime-Format-W3CDTF-0.06/lib/DateTime/Format/
H A DW3CDTF.pm22 my @fields = qw/ year month day hour minute second fraction time_zone /;
47 # if (defined($p{hour}) and defined($p{minute}) and defined($p{second})) {
48 # if ($p{hour} eq '24') {
50 # $p{hour} = '00';
53 # die "Cannot use hour value '24' with non-zero minutes and seconds\n";
82 $dt->hour, $dt->minute, $dt->second
/macosx-10.10/ICU-531.30/icuSources/i18n/unicode/
H A Dtimezone.h509 * typically one hour.
764 * (i.e., one hour) if this time zone observes Daylight Saving
891 * @param hour Receives parsed hour field
896 static UBool parseCustomID(const UnicodeString& id, int32_t& sign, int32_t& hour,
914 * @param hour offset hours
921 static UnicodeString& formatCustomID(int32_t hour, int32_t min, int32_t sec,
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/ecma/Date/
H A D15.9.5.30-1.js24 ECMA Section: 15.9.5.30 Date.prototype.setHours(hour [, min [, sec [, ms ]]] )
32 2. Call ToNumber(hour).
51 writeHeaderToLog( SECTION + " Date.prototype.setHours( hour [, min, sec, ms] )");
203 function SetHours( t, hour, min, sec, ms ) {
205 var HOUR = Number(hour);
H A D15.9.5.31-1.js24 ECMA Section: 15.9.5.31 Date.prototype.setUTCHours(hour [, min [, sec [, ms ]]] )
31 2.Call ToNumber(hour).
47 writeHeaderToLog( SECTION + " Date.prototype.setUTCHours(hour [, min [, sec [, ms ]]] )");
201 function SetUTCHours( t, hour, min, sec, ms ) {
203 var HOUR = Number(hour);
/macosx-10.10/Security-57031.1.35/Security/authd/
H A Dcredential.c47 str = CFStringCreateWithFormat(kCFAllocatorDefault, NULL, CFSTR("credential: right=%s, shared=%i, creation=%01i:%01i:%01i, valid=%i"), cred->name, cred->shared, date.hour,date.minute,(int32_t)date.second, cred->valid);
49 str = CFStringCreateWithFormat(kCFAllocatorDefault, NULL, CFSTR("credential: uid=%i, name=%s, shared=%i, creation=%01i:%01i:%01i valid=%i"), cred->uid, cred->name, cred->shared, date.hour,date.minute,(int32_t)date.second, cred->valid);
/macosx-10.10/Security-57031.1.35/Security/include/security_ocspd/
H A DocspdUtils.cpp113 greg.hour = atoi( szTemp );
269 (int)greg.year, greg.month, greg.day, greg.hour,
/macosx-10.10/Security-57031.1.35/Security/libsecurity_ocspd/common/
H A DocspdUtils.cpp113 greg.hour = atoi( szTemp );
269 (int)greg.year, greg.month, greg.day, greg.hour,
/macosx-10.10/ntp-92/ntpd/
H A Drefclock_palisade.c532 pp->hour = secint / 3600;
545 up->unit, mb(0) & 0xff, event, pp->hour, pp->minute,
614 pp->hour = mb(11);
621 up->unit, mb(0) & 0xff, event, pp->hour, pp->minute,
757 pp->hour = mb(12);
764 printf("TSIP_decode: unit %d: %02X #%d %02d:%02d:%02d.%06ld %02d/%02d/%04d ",up->unit, mb(0) & 0xff, event, pp->hour, pp->minute, pp->second, pp->nsec, mb(14), mb(13), pp->year);
913 up->unit, pp->year, pp->day, pp->hour, pp->minute,
924 pp->year,pp->day,pp->hour,pp->minute, pp->second,pp->nsec);
H A Drefclock_acts.c483 &mjd, &pp->year, &month, &day, &pp->hour,
515 &mjd, &pp->day, &pp->hour, &pp->minute,
539 &pp->second, &pp->year, &month, &day, &pp->hour,
565 &synchar, &pp->day, &pp->hour, &pp->minute,
585 &pp->hour, &pp->minute, &pp->second, &pp->nsec,
H A Drefclock_nmea.c660 pp->hour = ((dp[0] - '0') * 10) + dp[1] - '0';
683 * minute and hour fields appopriately
690 if (pp->hour == 0)
691 pp->hour = 23;
697 if (pp->hour > 23 || pp->minute > 59 ||
700 DPRINTF(1, ("NMEA hour/min/sec/nsec range %02d:%02d:%02d.%09ld\n",
701 pp->hour, pp->minute, pp->second, pp->nsec));
H A Drefclock_pst.c25 * The DIPswitches should be set for 9600 bps line speed, 24-hour day-
43 * a = AM/PM indicator (' ' for 24-hour mode)
46 * s = daylight-saving indicator (' ' for 24-hour mode)
240 &ampmchar, &pp->hour, &pp->minute, &pp->second, &pp->nsec,
H A Drefclock_tpro.c187 &pp->hour, &pp->minute, &pp->second, &pp->nsec)
H A Drefclock_tt560.c217 &pp->day, &pp->hour, &pp->minute, &pp->second, &pp->usec)
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/ecma/
H A Djsref.js540 function MakeTime( hour, min, sec, ms ) {
541 if ( isNaN( hour ) || isNaN( min ) || isNaN( sec ) || isNaN( ms ) ) {
545 hour = ToInteger(hour);
550 return( (hour*msPerHour) + (min*msPerMinute) +
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/ecma_2/
H A Djsref.js501 function MakeTime( hour, min, sec, ms ) {
502 if ( isNaN( hour ) || isNaN( min ) || isNaN( sec ) || isNaN( ms ) ) {
506 hour = ToInteger(hour);
511 return( (hour*msPerHour) + (min*msPerMinute) +
/macosx-10.10/tcl-105/tcl_ext/tclvfs/tclvfs/library/
H A Dzipvfs.tcl259 set hour [expr { ($time >> 11) & 0x1F }]
268 while {$hour > 23} {incr hour -24}
271 while {$mon > 12} {incr hour -12}
275 $year $mon $mday $hour $min $sec]
/macosx-10.10/CPANInternal-159.1/DateTime-Format-Pg-0.16007/lib/DateTime/Format/
H A DPg.pm213 params => [ qw( hour minute second nanosecond time_zone) ],
229 params => [ qw( year month day hour minute second nanosecond time_zone era) ],
238 params => [ qw( day month hour minute second nanosecond year time_zone era ) ],
247 params => [ qw( month day hour minute second nanosecond year time_zone era ) ],
257 params => [ qw( month day year hour minute second nanosecond time_zone era ) ],
266 params => [ qw( day month year hour minute second nanosecond time_zone era ) ],
344 # regular hour notation
564 my ($year, $mon, $day, $sgn, $hour, $min, $sec, $frc, $ago) = $string =~ m{
572 (?:([-+])?([0-9]\d|[1-9]\d{2,}(?=:)|\d+(?=\s+hour))(?:\s+hours?)?\s*)?
593 $min += 60 * $hour i
[all...]
/macosx-10.10/Security-57031.1.35/Security/include/security_smime/
H A Dcmssiginfo.c94 long year, month, mday, hour, minute, second, hourOff, minOff; local
110 CAPTURE(hour,string+6,loser);
111 if (hour > 23) goto loser;
138 gdate.hour = hour;
186 d[6] = HIDIGIT(gdate.hour);
187 d[7] = LODIGIT(gdate.hour);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_smime/lib/
H A Dcmssiginfo.c94 long year, month, mday, hour, minute, second, hourOff, minOff; local
110 CAPTURE(hour,string+6,loser);
111 if (hour > 23) goto loser;
138 gdate.hour = hour;
186 d[6] = HIDIGIT(gdate.hour);
187 d[7] = LODIGIT(gdate.hour);
/macosx-10.10/msdosfs-209.1.1/
H A Dmsdosfs.py209 def __init__(self, month=1, day=1, year=2000, hour=0, minute=0, second=0.0):
210 """Timestamp(month, day, year, hour, minute, second) -> timestamp
217 self.hour = hour
229 hour = (_time >> 11) & 31
237 assert(0 <= hour < 32)
242 return klass(month, day, year, hour, minute, seconds+ms/1000.0)
250 assert(0 <= self.hour < 32)
257 timestamp = self.hour << 11
265 return fmt.format(self.__class__.__name__, self.year, self.month, self.day, self.hour, sel
[all...]
/macosx-10.10/PowerManagement-494.1.2/pmconfigd/
H A DRepeatingAutoWake.c154 int hour, minute; local
155 CFCalendarDecomposeAbsoluteTime(_gregorian(), CFAbsoluteTimeGetCurrent(), "Hm", &hour, &minute); local
157 secondsToday = 60 * (hour*60 + minute);
/macosx-10.10/ruby-106/ruby/test/rss/
H A Dtest_itunes.rb181 def _assert_itunes_duration(hour, minute, second, value,
187 assert_equal(hour, duration.hour)
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_x509_tp/lib/
H A DtpTime.c171 gd.hour = x;
/macosx-10.10/libxslt-13/libxslt/libexslt/
H A Ddate.c90 unsigned int hour :5; /* 0 <= hour <= 23 */ member in struct:_exsltDateValDate
103 double sec; /* sec stores min and hour also */
167 hour and min structure vals are unsigned, so normal macros give
171 ((dt->hour <=23 ) && (dt->min <= 59) && \
486 unsigned int hour = 0; /* use temp var in case str is not xs:time */ local
489 PARSE_2_DIGITS(hour, cur, VALID_HOUR, ret);
498 dt->hour = hour;
520 dt->hour, d
[all...]
/macosx-10.10/ntp-92/include/
H A Dntp_refclock.h192 int hour; /* hour of day */ member in struct:refclockproc
193 int minute; /* minute of hour */

Completed in 373 milliseconds

1234567891011>>