Searched refs:west (Results 1 - 25 of 28) sorted by relevance

12

/macosx-10.9.5/ksh-20/ksh/src/lib/libast/tm/
H A Dtmtime.c38 tmtime(register Tm_t* tm, int west) argument
40 return tmxsec(tmxtime(tm, west));
H A Dtmxtime.c37 * if west==TM_LOCALZONE then the local timezone is used
38 * otherwise west is the number of minutes west
46 tmxtime(register Tm_t* tm, int west) argument
80 if (west != TM_UTCZONE && !(tm_info.flags & TM_UTC))
86 if (west == TM_LOCALZONE)
88 t += tm_info.zone->west * 60;
95 now = tmxsec(tmxtime(tm, tm_info.zone->west));
105 t += west * 60;
113 now = tmxsec(tmxtime(tm, tm_info.zone->west));
[all...]
H A Dtmxmake.c75 if ((o = 60 * tm->tm_zone->west) && x > o)
118 now = tmxsec(tmxtime(&te, tm->tm_zone->west));
H A Dtmzone.c59 if ((*name == '+' || *name == '-') && (fixed.west = tmgoff(name, &e, TM_LOCALZONE)) != TM_LOCALZONE && !*e)
H A Dtminit.c122 * return minutes west of GMT for local time clock
284 local.west = n;
347 if (zp->west == n && zp->dst == m)
H A Dtmxfmt.c584 case 'z': /* time zone west offset */
588 tm = tmxtm(tm, tmxtime(tm, tm->tm_zone->west + (tm->tm_isdst ? tm->tm_zone->dst : 0)), zp);
592 cp = tmpoff(cp, ep - cp, "", (flags & TM_UTC) ? 0 : tm->tm_zone->west + (tm->tm_isdst ? tm->tm_zone->dst : 0), pad == '_' ? -24 * 60 : 24 * 60);
598 tm = tmxtm(tm, tmxtime(tm, tm->tm_zone->west + (tm->tm_isdst ? tm->tm_zone->dst : 0)), zp);
H A Dtmxscan.c387 set.zone = zp->west + m;
H A Dtmxdate.c1519 zone = tm->tm_zone->west;
1533 zone = zp->west + dst;
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/diagrams/
H A Dnavigation.tcl31 set mycorner west
127 variable mycorner west ; # attribute 'with' default
H A Ddirection.tcl209 east {angle 0 opposite west }
213 west {angle 180 opposite east }
227 w west left west \u2190 west
233 b south bottom south l west
H A Dbasic.tcl344 set west [geo::between $northwest $southwest 0.5]
357 west [diagram::point at {*}$west] \
403 west [diagram::point at $xnw $yew] \
451 west [diagram::point at $rm 0] \
505 west [diagram::point at -$ra 0] \
568 set west [geo::p -$hw 0]
572 set northwest [geo::between $north $west 0.5]
574 set southwest [geo::between $south $west 0.5]
576 set poly [list {*}$north {*}$east {*}$south {*}$west]
[all...]
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DAutoscrollController.cpp298 bool west = m_panScrollStartPos.x() > (lastKnownMousePosition.x() + ScrollView::noPanScrollRadius);
302 if (m_autoscrollType == AutoscrollForPan && (east || west || north || south))
308 else if (west)
315 else if (west)
321 else if (west)
/macosx-10.9.5/ruby-104/ruby/benchmark/
H A Dbm_so_meteor_contest.rb23 @@rotation_even_adder = { :west => -1, :east => 1, :nw => -7, :ne => -6, :sw => 5, :se => 6 }
24 @@rotation_odd_adder = { :west => -1, :east => 1, :nw => -6, :ne => -5, :sw => 6, :se => 7 }
150 east += 1 if ( direction == :sw || direction == :nw || direction == :west )
186 @@flip_converter = { :west => :west, :east => :east, :nw => :sw, :ne => :se, :sw => :nw, :se => :ne }
187 @@rotate_converter = { :west => :nw, :east => :se, :nw => :ne, :ne => :east, :sw => :west, :se => :sw }
550 Piece.new( [ :se, :se, :se, :west ], 9),
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/plotchart/
H A Dplotannot.tcl15 set BalloonDir(north-west) {0 0 1 -2 -2 1 0}
21 set BalloonDir(south-west) {6 1 0 -2 2 0 -1}
22 set BalloonDir(west) {7 0 1 -3 0 0 -1}
27 set TextDir(west) w
29 set TextDir(north-west) nw
37 set TextDir(south-west) nw
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/examples/diagrams/
H A Ddraw_heater.tcl10 if { $dir == "west" } {
59 bracket west 30 [getpos W $b] [getpos W $d]
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/include/
H A Dtm.h111 short west; /* minutes west of GMT */ member in struct:__anon9287
112 short dst; /* add to tz.west for DST */
/macosx-10.9.5/groff-38/groff/src/preproc/pic/
H A Dobject.h53 virtual position west();
H A Dpic.y1398 { $$ = &object::west; }
1420 { $$ = &object::west; }
1432 { $$ = &object::west; }
1450 { $$ = &object::west; }
H A Dobject.cpp329 position object::west() function in class:object
672 position west() { return position(cent.x - dim.x/2.0, cent.y); } function in class:rectangle_object
1211 position west() { return (en.x - strt.x) < 0 ? en : strt; } function in class:line_object
1524 position west();
1571 position arc_object::west() function in class:arc_object
H A Dpic.cpp5262 { yyval.crn = &object::west; }
5306 { yyval.crn = &object::west; }
5330 { yyval.crn = &object::west; }
5366 { yyval.crn = &object::west; }
/macosx-10.9.5/ksh-20/ksh/src/lib/libcmd/
H A Ddate.c138 " [+z?time zone \aSHHMM\a west of GMT offset where S is"
186 " minutes west of \bUTC\b, and savings time minutes offset. Blank"
400 sfprintf(sfstdout, "%3s %4s %4s %4d %4d\n", s, *listzones->standard ? listzones->standard : "-", listzones->daylight ? listzones->daylight : "-", listzones->west, listzones->dst);
/macosx-10.9.5/CPANInternal-140/Net-DNS/lib/Net/DNS/RR/
H A DLOC.pm336 negative numbers represent south latitude or west longitude.
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/port/
H A Dlc.tab7 iso8859-1 latin1|west-europe 1252
/macosx-10.9.5/emacs-92/emacs/lisp/calendar/
H A Dsolar.el113 sufficient), + east, - west, such as -73.9 for New York City, or the value
114 can be a vector [degrees minutes east/west] such as [73 55 west] for New
120 (vector :value [0 0 west]
125 (const west))))
211 "Enter longitude (decimal fraction; + east, - west): ")))
844 "Enter longitude (decimal fraction; + east, - west): ")))
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dratpoison.vim48 syn match ratpoisonGravityArg "\<\(w\|west\)\>" contained

Completed in 249 milliseconds

12