HomeSort by relevance Sort by last modified time
    Searched refs:wideValue (Results 1 - 3 of 3) sorted by null

  /external/cldr/tools/java/org/unicode/cldr/test/
CheckDates.java 329 String wideValue = getCldrFileToCheck().getWinningValueWithBailey(pathToWide);
330 if (wideValue != null && isTooMuchWiderThan(value, wideValue)) {
336 wideValue);
345 String wideValueStripped = stripPrefix(wideValue);
391 String wideValue = getCldrFileToCheck().getWinningValueWithBailey(pathToWide);
392 if (wideValue != null && isTooMuchWiderThan(value, wideValue)) {
398 wideValue);
    [all...]
  /external/python/cpython2/Modules/
_tkinter.c 1106 Tcl_WideInt wideValue;
1116 (unsigned char *)(void *)&wideValue,
1117 sizeof(wideValue),
1124 return Tcl_NewWideIntObj(wideValue);
    [all...]
  /external/python/cpython3/Modules/
_tkinter.c 997 Tcl_WideInt wideValue;
1007 (unsigned char *)(void *)&wideValue,
1008 sizeof(wideValue),
1011 return Tcl_NewWideIntObj(wideValue);
1129 Tcl_WideInt wideValue;
1130 if (Tcl_GetWideIntFromObj(Tkapp_Interp(tkapp), value, &wideValue) == TCL_OK) {
1131 if (sizeof(wideValue) <= SIZEOF_LONG_LONG)
1132 return PyLong_FromLongLong(wideValue);
1133 return _PyLong_FromByteArray((unsigned char *)(void *)&wideValue,
1134 sizeof(wideValue),
    [all...]

Completed in 286 milliseconds