Searched refs:newLoc (Results 1 - 14 of 14) sorted by relevance

/macosx-10.10/ICU-531.30/icuSources/test/intltest/
H A Daliastst.cpp60 Locale newLoc(_LOCALE_ALIAS[i][1]);
62 logln(UnicodeString(newLoc.getName())+" is not available. Skipping!");
65 logln("\nold locale:%s new locale:%s",oldLoc.getName(),newLoc.getName());
67 Calendar* c2 = Calendar::createInstance(newLoc, status);
72 if (strcmp(newLoc.getName(), l1)!=0) {
73 errln("CalendarTest: newLoc!=l1: newLoc= "+UnicodeString(newLoc.getName()) +" l1= "+UnicodeString(l1));
79 errln("CalendarTest: c1!=c2. newLoc= "+UnicodeString(newLoc
[all...]
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDFamily/
H A DIOHIDPointing.h65 IOGPoint * newLoc,
H A DIOHIDPointing.cpp110 IOGPoint * newLoc,
138 super::dispatchAbsolutePointerEvent(newLoc, bounds, buttonState, inRange, tipPressure, tipPressureMin, tipPressureMax, 90, timeStamp);
108 dispatchAbsolutePointerEvent( AbsoluteTime timeStamp, IOGPoint * newLoc, IOGBounds * bounds, UInt32 buttonState, bool inRange, SInt32 tipPressure, SInt32 tipPressureMin, SInt32 tipPressureMax, IOOptionBits options) argument
H A DIOHIDEventService.cpp1715 IOGPoint newLoc;
1717 newLoc.x = x;
1718 newLoc.y = y;
1720 _pointingNub->dispatchAbsolutePointerEvent(timeStamp, &newLoc, bounds, buttonState, inRange, tipPressure, tipPressureMin, tipPressureMax, options);
1819 IOGPoint newLoc; local
1821 newLoc.x = x;
1822 newLoc.y = y;
1824 //IOHIDSystem::scaleLocationToCurrentScreen(&newLoc, bounds);
1826 tabletData.tablet.x = newLoc.x;
1827 tabletData.tablet.y = newLoc
[all...]
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDSystem/IOKit/hidsystem/
H A DIOHIPointing.h45 /* at */ IOGPoint * newLoc,
72 /* at */ IOGPoint * newLoc,
157 virtual void dispatchAbsolutePointerEvent(IOGPoint * newLoc,
240 /* at */ IOGPoint * newLoc,
H A DIOHIDSystem.h308 void setCursorPosition(IOGPoint * newLoc, bool external, OSObject * sender=0);
394 /* at */ IOGPoint * newLoc,
464 /* at */ IOGPoint * newLoc,
604 /* at */ IOGPoint * newLoc,
707 IOGPoint * newLoc,
/macosx-10.10/ICU-531.30/icuSources/test/cintltst/
H A Dcloctst.c2784 const char* newLoc = LOCALE_ALIAS[i][1]; local
2792 if(!isLocaleAvailable(resIndex, newLoc)){
2796 c2 = ucal_open(NULL, -1, newLoc, UCAL_GREGORIAN, &status);
2798 if (strcmp(newLoc,l1)!=0 || strcmp(l1,l2)!=0 || status!=U_ZERO_ERROR) {
2799 log_err("The locales are not equal!.Old: %s, New: %s \n", oldLoc, newLoc);
2820 const char* newLoc = LOCALE_ALIAS[i][1]; local
2826 if(!isLocaleAvailable(resIndex, newLoc)){
2830 df2 = udat_open(UDAT_FULL, UDAT_FULL,newLoc, NULL, 0, NULL, -1, &status);
2841 if (strcmp(newLoc,l1)!=0 || strcmp(l1,l2)!=0) {
2842 log_err("The locales are not equal!.Old: %s, New: %s \n", oldLoc, newLoc);
2863 const char* newLoc = LOCALE_ALIAS[i][1]; local
2987 const char* newLoc = LOCALE_ALIAS[i][1]; local
3034 const char* newLoc = LOCALE_ALIAS[i][1]; local
3078 const char* newLoc = LOCALE_ALIAS[i][1]; local
[all...]
/macosx-10.10/tcl-105/tcl_ext/trf/trf/generic/
H A Dregistry.c1852 int newLoc;
1930 newLoc = trans->seekState.upLoc + offset;
1932 if (newLoc % trans->seekState.used.numBytesTransform) {
1943 if (newLoc < 0) {
1951 if ((newLoc < trans->seekState.upBufStartLoc) ||
1952 (trans->seekState.upBufEndLoc <= newLoc)) {
1962 newDownLoc = trans->seekState.downZero + TRF_DOWN_CONVERT (trans, newLoc);
1973 trans->seekState.upLoc = newLoc;
1974 trans->seekState.upBufStartLoc = newLoc;
1975 trans->seekState.upBufEndLoc = newLoc;
1838 int newLoc; local
[all...]
/macosx-10.10/tcl-105/tcl/tcl/generic/
H A DtclIORChan.c1446 Tcl_WideInt newLoc;
1488 if (Tcl_GetWideIntFromObj(rcPtr->interp, resObj, &newLoc) != TCL_OK) {
1493 if (newLoc < Tcl_LongAsWide(0)) {
1504 return newLoc;
1507 newLoc = -1;
2986 Tcl_WideInt newLoc;
2988 if (Tcl_GetWideIntFromObj(interp, resObj, &newLoc) == TCL_OK) {
2989 if (newLoc < Tcl_LongAsWide(0)) {
2993 paramPtr->seek.offset = newLoc;
1438 Tcl_WideInt newLoc; local
2961 Tcl_WideInt newLoc; local
H A DtclIOCmd.c599 Tcl_WideInt newLoc;
615 newLoc = Tcl_Tell(chan);
627 Tcl_SetObjResult(interp, Tcl_NewWideIntObj(newLoc));
592 Tcl_WideInt newLoc; local
/macosx-10.10/tcl-105/tcl/tcl/unix/
H A DtclUnixChan.c532 Tcl_WideInt oldLoc, newLoc;
548 newLoc = TclOSseek(fsPtr->fd, (Tcl_SeekOffset) offset, mode);
554 if (newLoc > Tcl_LongAsWide(INT_MAX)) {
559 *errorCodePtr = (newLoc == Tcl_LongAsWide(-1)) ? errno : 0;
561 return (int) Tcl_WideAsLong(newLoc);
594 Tcl_WideInt newLoc;
596 newLoc = TclOSseek(fsPtr->fd, (Tcl_SeekOffset) offset, mode);
598 *errorCodePtr = (newLoc == -1) ? errno : 0;
599 return newLoc;
527 Tcl_WideInt oldLoc, newLoc; local
588 Tcl_WideInt newLoc; local
/macosx-10.10/tcl-105/tcl84/tcl/unix/
H A DtclUnixChan.c617 Tcl_WideInt oldLoc, newLoc;
631 newLoc = TclOSseek(fsPtr->fd, (Tcl_SeekOffset) offset, mode);
636 if (newLoc > Tcl_LongAsWide(INT_MAX)) {
641 *errorCodePtr = (newLoc == Tcl_LongAsWide(-1)) ? errno : 0;
643 return (int) Tcl_WideAsLong(newLoc);
677 Tcl_WideInt newLoc;
679 newLoc = TclOSseek(fsPtr->fd, (Tcl_SeekOffset) offset, mode);
681 *errorCodePtr = (newLoc == -1) ? errno : 0;
682 return newLoc;
612 Tcl_WideInt oldLoc, newLoc; local
671 Tcl_WideInt newLoc; local
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDSystem/
H A DIOHIDSystem.cpp1236 IOGPoint newLoc = {0, 0}; local
1237 self->absolutePointerEvent(0, &newLoc, &bounds, false, 0, 0, ts, service);
3444 /* at */ IOGPoint * newLoc,
3453 self->absolutePointerEvent(buttons, newLoc, bounds, proximity,
3459 /* at */ IOGPoint * newLoc,
3466 absolutePointerEvent(buttons, newLoc, bounds, proximity,
3472 /* at */ IOGPoint * newLoc,
3483 args.arg1 = (void *)newLoc;
3498 IOGPoint * newLoc = (IOGPoint *) ((IOHIDCmdGateActionArgs *)args)->arg1; local
3507 self->absolutePointerEventGated(buttons, newLoc, bound
3441 _absolutePointerEvent( IOHIDSystem * self, int buttons, IOGPoint * newLoc, IOGBounds * bounds, bool proximity, int pressure, int stylusAngle, AbsoluteTime ts, OSObject * sender, void * refcon __unused) argument
3457 absolutePointerEvent( int buttons, IOGPoint * newLoc, IOGBounds * bounds, bool proximity, int pressure, int stylusAngle, AbsoluteTime ts) argument
3470 absolutePointerEvent( int buttons, IOGPoint * newLoc, IOGBounds * bounds, bool proximity, int pressure, int stylusAngle, AbsoluteTime ts, OSObject * sender) argument
3560 IOFixedPoint64 newLoc; local
5268 setCursorPosition(IOGPoint * newLoc, bool external, OSObject * sender) argument
[all...]
H A DIOHIPointing.cpp1008 void IOHIPointing::dispatchAbsolutePointerEvent(IOGPoint * newLoc, argument
1056 dx = newLoc->x - _previousLocation.x;
1057 dy = newLoc->y - _previousLocation.y;
1066 _previousLocation.x = newLoc->x;
1067 _previousLocation.y = newLoc->y;
1087 newLoc,
2222 /* at */ IOGPoint * newLoc,
2235 newLoc,

Completed in 613 milliseconds