Searched refs:ampm (Results 1 - 21 of 21) sorted by relevance

/macosx-10.9.5/CPANInternal-140/DateTime-Format-Builder/examples/
H A DSimple.pm7 params => [qw( year month mday hours mins secs fsecs ampm )],
19 params => [qw( month mday year hours mins secs fsecs ampm )],
/macosx-10.9.5/CPANInternal-140/DateTime-Format-Builder-0.80/examples/
H A DSimple.pm7 params => [qw( year month mday hours mins secs fsecs ampm )],
19 params => [qw( month mday year hours mins secs fsecs ampm )],
/macosx-10.9.5/tcl-102/tcl_ext/expect/expect/
H A Dexp_strf.c190 static char *ampm[] = { "AM", "PM", }; local
306 strcpy(tbuf, ampm[0]);
308 strcpy(tbuf, ampm[1]);
/macosx-10.9.5/CPANInternal-140/TimeDate/lib/Date/
H A DParse.pm66 my %ampm = (
101 $merid = $ampm{$5} if $5;
108 $merid = $ampm{$2};
113 $merid = $ampm{$1};
/macosx-10.9.5/Heimdal-323.92.1/lib/roken/
H A Dstrftime.c89 static const char *ampm[] = { variable
115 return ampm[hour / 12];
H A Dstrptime.c94 static const char *ampm[] = { variable
340 ret = match_string (&buf, ampm);
/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/iwidgets/generic/
H A Dtimefield.itk92 common _civilianFields {hour minute second ampm}
666 if {$_cfield == "ampm"} {
679 if {$_cfield == "ampm"} {
777 # ampm 9
789 ampm {
799 error "bad field: \"$field\", must be hour, minute, second or ampm"
818 # civilian => {hour minute second ampm}
849 # ampm 9,10
863 set _cfield ampm
894 _setField ampm
[all...]
/macosx-10.9.5/bash-92/bash-3.2/lib/sh/
H A Dstrftime.c179 static const char *ampm[] = { "AM", "PM", }; local
377 strcpy(tbuf, ampm[0]);
379 strcpy(tbuf, ampm[1]);
/macosx-10.9.5/ruby-104/ruby/ext/date/
H A Ddate_strftime.c77 static const char ampm[][3] = { "AM", "PM", }; local
348 tp = ampm[0];
350 tp = ampm[1];
/macosx-10.9.5/tcsh-65/tcsh/
H A Dtc.prompt.c241 char ampm = 'a'; local
250 ampm = 'p';
279 Strbuf_append1(&buf, attributes | ampm);
/macosx-10.9.5/CPANInternal-140/DateTime-Format-Strptime/lib/DateTime/Format/
H A DStrptime.pm256 $minute, $ampm, $second, $week_sun_0,
292 ampm = $ampm
324 or ( $self->{parser} =~ /\$ampm\b/ and $ampm eq '' )
582 "You must specify am or pm for 12 hour clocks ($hour_12|$ampm).")
584 if ( $hour_12 && ( !$ampm ) );
586 if ( lc $ampm eq lc $Pm ) {
591 "Your am/pm value ($ampm) does not match your hour ($hour_24)")
596 elsif ( lc $ampm e
[all...]
/macosx-10.9.5/CPANInternal-140/DateTime-Format-Strptime-1.04/lib/DateTime/Format/
H A DStrptime.pm248 $minute, $ampm, $second, $week_sun_0,
282 ampm = $ampm
314 ($self->{parser}=~/\$ampm\b/ and $ampm eq '') or
464 $self->local_croak("You must specify am or pm for 12 hour clocks ($hour_12|$ampm).") and return undef if ($hour_12 && (! $ampm));
465 if ($ampm=~/p/i) {
469 $self->local_croak("Your am/pm value ($ampm) does not match your hour ($hour_24)") and return undef if $hour_24 and $hour_24 < 12;
470 } elsif ($ampm
[all...]
/macosx-10.9.5/CPANInternal-140/DateTime-Format-Strptime-1.52/lib/DateTime/Format/
H A DStrptime.pm256 $minute, $ampm, $second, $week_sun_0,
292 ampm = $ampm
324 or ( $self->{parser} =~ /\$ampm\b/ and $ampm eq '' )
580 "You must specify am or pm for 12 hour clocks ($hour_12|$ampm).")
582 if ( $hour_12 && ( !$ampm ) );
584 if ( lc $ampm eq lc $Pm ) {
589 "Your am/pm value ($ampm) does not match your hour ($hour_24)")
594 elsif ( lc $ampm e
[all...]
/macosx-10.9.5/CF-855.17/
H A DCFDateFormatter.c451 CFStringRef ampm[2]; local
452 ampm[0] = NULL;
453 ampm[1] = NULL;
456 ampm[0] = formatter->_property._AMSymbol;
458 ampm[0] = formatter->_property._CustomAMSymbol;
461 ampm[1] = formatter->_property._PMSymbol;
463 ampm[1] = formatter->_property._CustomPMSymbol;
466 CFStringRef sym = ampm[i];
/macosx-10.9.5/emacs-92/emacs/src/
H A Dstrftime.c556 # define ampm \ macro
562 # define ap_len STRLEN (ampm)
569 # define ampm (L_("AMPM") + 2 * (tp->tm_hour > 11)) macro
1173 cpy (ap_len, ampm);
/macosx-10.9.5/gnudiff-19/diffutils/lib/
H A Dstrftime.c503 # define ampm \ macro
509 # define ap_len STRLEN (ampm)
516 # define ampm (L_("AMPM") + 2 * (tp->tm_hour > 11)) macro
1089 cpy (ap_len, ampm);
/macosx-10.9.5/ruby-104/ruby/
H A Dstrftime.c194 static const char ampm[][3] = { "AM", "PM", }; local
388 tp = ampm[0];
390 tp = ampm[1];
/macosx-10.9.5/emacs-92/emacs/lisp/calc/
H A Dcalc-forms.el732 (let ((ampm (math-match-substring math-pd-str 6)))
744 (if (equal ampm "")
747 (setq ampm (upcase (aref ampm 0)))
748 (if (memq ampm '(?N ?M))
750 (if (eq ampm ?M) (setq hour 0))
755 (if (eq (= ampm ?A) (= hour 12))
/macosx-10.9.5/vim-53/runtime/syntax/
H A Ddtml.vim117 syn keyword dtmlMethod ampm AMPMMinutes appendChild appendData appendHeader asin atan atan2 contained
H A Dtcsh.vim51 syn keyword tcshShellVar contained afsuser ampm argv autocorrect autoexpand autolist autologout backslash_quote catalog cdpath color colorcat command complete continue continue_args correct cwd dextract dirsfile dirstack dspmbyte dunique echo echo_style edit ellipsis fignore filec gid group histchars histdup histfile histlit history home ignoreeof implicitcd inputmode killdup killring listflags listjobs listlinks listmax listmaxrows loginsh logout mail matchbeep nobeep noclobber noding noglob nokanji nonomatch nostat notify oid owd path printexitvalue prompt prompt2 prompt3 promptchars pushdtohome pushdsilent recexact recognize_only_executables rmstar rprompt savedirs savehist sched shell shlvl status symlinks tcsh term time tperiod tty uid user verbose version visiblebell watch who wordchars
/macosx-10.9.5/emacs-92/emacs/lisp/textmodes/
H A Dorg.el14989 (ampm (if (match-end 4) (downcase (match-string 4 s))))
14990 (am-p (equal ampm "am"))
14991 (h1 (cond ((not ampm) h)

Completed in 322 milliseconds