/third_party/node/test/parallel/ |
H A D | test-icu-env.js | 94 isSet(zones.map((TZ) => runEnvOutside({ TZ }, 'new Date(333333333333).toString()'))), 98 isSet(zones.map((TZ) => runEnvOutside({ TZ }, 'new Date(333333333333).toLocaleString()'))), 102 locales.map((LANG) => runEnvOutside({ LANG, TZ: 'Europe/Zurich' }, 'new Date(333333333333).toString()')), 123 locales.map((LANG) => runEnvOutside({ LANG, TZ: 'Europe/Zurich' }, 'new Date(333333333333).toLocaleString()')), 153 (LANG) => runEnvOutside({ LANG, TZ: 'Europe/Zurich' }, 'new Intl.DateTimeFormat().format(333333333333)') 227 // process.env.TZ is not intercepted in Workers 230 isSet(zones.map((TZ) => runEnvInside({ TZ }, () [all...] |
/third_party/tzdata/ |
H A D | tzselect.ksh | 2 # Ask the user about the time zone, and output the resulting TZ value to stdout. 370 fmt = "TZ='\''%s'\'' date +'\''%d %%Y %%m %%d %%H:%%M %%a %%b\t%s'\''\n" 404 'Please select a continent, ocean, "coord", "TZ", "time", or "now".' 441 "TZ - I want to specify the timezone using a POSIX.1-2017 TZ string." \ 464 TZ) 465 # Ask the user for a POSIX.1-2017 TZ string. Check that it conforms. 487 'of the TZ environment variable.' 554 old_minute=`TZ=UTC0 date +"$minute_format"` 564 new_minute=`TZ [all...] |
H A D | checknow.awk | 14 if ($0 ~ /^TZ/) {
|
H A D | Makefile | 56 # The POSIXRULES macro controls interpretation of POSIX-2017.1-like TZ 57 # settings like TZ='EET-2EEST' that lack DST transition rules. 277 # DST transitions for POSIX.1-2017-style TZ strings lacking them, 281 # It also mishandles settings like TZ='EET-2EEST' for eastern Europe, 547 # When comparing .tzs files, use GNU diff's -F'^TZ=' option if supported. 549 DIFF_TZS= diff -u$$(! diff -u -F'^TZ=' - - <>/dev/null >&0 2>&1 \ 550 || echo ' -F^TZ=') 747 date=$$(TZ=$(leaplist_TZ) stat -c%y leap-seconds.list) && \ 779 # TZ='right/Australia/Adelaide' got you localtime with leap seconds, 824 sed 's,^TZ [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
H A D | AArch64ExpandImm.cpp | 274 unsigned TZ = countTrailingZeros(Imm); in expandMOVImmSimple() local 275 Shift = (TZ / 16) * 16; in expandMOVImmSimple()
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/ |
H A D | nv50_formats.c | 135 ZX(B, Z16_UNORM, Z16_UNORM, R, R, R, xx, UNORM, Z16, TZ), 136 ZX(A, Z32_FLOAT, Z32_FLOAT, R, R, R, xx, FLOAT, ZF32, TZ), 137 ZX(A, Z24X8_UNORM, Z24_X8_UNORM, R, R, R, xx, UNORM, X8Z24, TZ), 138 SZ(A, X8Z24_UNORM, S8_Z24_UNORM, G, G, G, xx, UNORM, Z24S8, TZ), 139 ZS(A, Z24_UNORM_S8_UINT, Z24_S8_UNORM, R, R, R, xx, UNORM, S8Z24, TZ), 140 SZ(A, S8_UINT_Z24_UNORM, S8_Z24_UNORM, G, G, G, xx, UNORM, Z24S8, TZ), 141 ZS(A, Z32_FLOAT_S8X24_UINT, Z32_S8_X24_FLOAT, R, R, R, xx, FLOAT, ZF32_X24S8, TZ),
|
/third_party/jerryscript/tools/ |
H A D | run-tests.py | 413 ret_test |= run_check(test_cmd, env=dict(TZ='UTC')) 481 ret_test |= run_check(test_cmd, env=dict(TZ='America/Los_Angeles'))
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/MCTargetDesc/ |
H A D | ARMAddressingModes.h | 135 unsigned TZ = countTrailingZeros(Imm); in getSOImmValRotate() local 139 unsigned RotAmt = TZ & ~1; in getSOImmValRotate()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
H A D | HexagonISelDAGToDAG.cpp | 1126 uint32_t TZ = countTrailingZeros(Mask); in ppAddrRewriteAndSrl() local 1127 uint32_t M1 = countTrailingOnes(Mask >> TZ); in ppAddrRewriteAndSrl() 1130 if (TZ + M1 + LZ != 32) in ppAddrRewriteAndSrl() 1133 if (TZ > 2) in ppAddrRewriteAndSrl() 1143 // TZ = D-C, so D = TZ+C. in ppAddrRewriteAndSrl() 1144 SDValue D = DAG.getConstant(TZ+CV, dl, VT); in ppAddrRewriteAndSrl() 1145 SDValue DC = DAG.getConstant(TZ, dl, VT); in ppAddrRewriteAndSrl()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | ScalarEvolution.cpp | 1618 uint32_t TZ = BitWidth; in extractConstantWithoutWrapping() local 1619 for (unsigned I = 1, E = WholeAddExpr->getNumOperands(); I < E && TZ; ++I) in extractConstantWithoutWrapping() 1620 TZ = std::min(TZ, SE.GetMinTrailingZeros(WholeAddExpr->getOperand(I))); in extractConstantWithoutWrapping() 1621 if (TZ) { in extractConstantWithoutWrapping() 1624 return TZ < BitWidth ? C.trunc(TZ).zext(BitWidth) : C; in extractConstantWithoutWrapping() 1637 const uint32_t TZ = SE.GetMinTrailingZeros(Step); in extractConstantWithoutWrapping() local 1638 if (TZ) in extractConstantWithoutWrapping() 1639 return TZ < BitWidt in extractConstantWithoutWrapping() [all...] |
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | well_known_types_test.py | 267 class TZ(datetime.tzinfo): class 279 dt = datetime.datetime(1970, 1, 1, 1, tzinfo=TZ())
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Interpreter/ |
H A D | Execution.cpp | 405 #define MASK_VECTOR_NANS_T(X,Y, TZ, FLAG) \ 409 if (X.AggregateVal[_i].TZ##Val != X.AggregateVal[_i].TZ##Val || \ 410 Y.AggregateVal[_i].TZ##Val != Y.AggregateVal[_i].TZ##Val) \
|
/third_party/alsa-utils/alsa-info/ |
H A D | alsa-info.sh | 416 TSTAMP=$(LANG=C TZ=UTC date)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/AsmParser/ |
H A D | ARMAsmParser.cpp | 275 unsigned TZ = countTrailingZeros(ITState.Mask); in forwardITPosition() local 276 if (++ITState.CurPosition == 5 - TZ && ITState.IsExplicit) in forwardITPosition() 285 unsigned TZ = countTrailingZeros(ITState.Mask); in rewindImplicitITPosition() local 287 NewMask |= ITState.Mask & (0xC << TZ); in rewindImplicitITPosition() 288 NewMask |= 0x2 << TZ; in rewindImplicitITPosition() 333 unsigned TZ = countTrailingZeros(ITState.Mask); in extendImplicitITBlock() local 336 NewMask |= ITState.Mask & (0xE << TZ); in extendImplicitITBlock() 338 NewMask |= (Cond != ITState.Cond) << TZ; in extendImplicitITBlock() 340 NewMask |= 1 << (TZ - 1); in extendImplicitITBlock() 372 unsigned TZ in forwardVPTPosition() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
H A D | ARMISelDAGToDAG.cpp | 404 unsigned TZ = countTrailingZeros(And_imm); in PreprocessISelDAG() local 405 if (TZ != 1 && TZ != 2) in PreprocessISelDAG() 416 And_imm >>= TZ; in PreprocessISelDAG() local 444 CurDAG->getConstant(Srl_imm + TZ, SDLoc(Srl), in PreprocessISelDAG() 450 N1, CurDAG->getConstant(TZ, SDLoc(Srl), MVT::i32)); in PreprocessISelDAG()
|
/third_party/libphonenumber/javascript/i18n/phonenumbers/ |
H A D | demo-compiled.js | 58 253:["DJ"],254:["KE"],255:["TZ"],256:["UG"],257:["BI"],258:["MZ"],260:["ZM"],261:["MG"],262:["RE","YT"],263:["ZW"],264:["NA"],265:["MW"],266:["LS"],267:["BW"],268:["SZ"],269:["KM"],290:["SH","TA"],291:["ER"],297:["AW"],298:["FO"],299:["GL"],350:["GI"],351:["PT"],352:["LU"],353:["IE"],354:["IS"],355:["AL"],356:["MT"],357:["CY"],358:["FI","AX"],359:["BG"],370:["LT"],371:["LV"],372:["EE"],373:["MD"],374:["AM"],375:["BY"],376:["AD"],377:["MC"],378:["SM"],380:["UA"],381:["RS"],382:["ME"],383:["XK"],385:["HR"], 432 "$1 $2 $3",["[23568]|4(?:0[02-48]|[1-47-9])|7[1-9]","[23568]|4(?:0[2-48]|[1-47-9])|(?:400|7)[1-9]"],"0$1"],[,"(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[49]"],"0$1"],[,"(\\d{2})(\\d{4})(\\d{4,5})","$1 $2 $3",["7"],"0$1"]],,[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]],[,,"50[0-46-9]\\d{6}",,,,"500123456",,,[9]],,,[,,,,,,,,,[-1]]],TZ:[,[,,"(?:[25-8]\\d|41|90)\\d{7}",,,,,,,[9]],[,,"2[2-8]\\d{7}",,,,"222345678"],[,,"77[2-9]\\d{6}|(?:6[125-9]|7[13-689])\\d{7}",,,,"621234567"],[,,"80[08]\\d{6}",,,,"800123456"],[,,"90\\d{7}", 433 ,,,"900123456"],[,,"8(?:40|6[01])\\d{6}",,,,"840123456"],[,,,,,,,,,[-1]],[,,"41\\d{7}",,,,"412345678"],"TZ",255,"00[056]","0",,,"0",,,,[[,"(\\d{3})(\\d{2})(\\d{4})","$1 $2 $3",["[89]"],"0$1"],[,"(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[24]"],"0$1"],[,"(\\d{2})(\\d{7})","$1 $2",["5"]],[,"(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[67]"],"0$1"]],,[,,,,,,,,,[-1]],,,[,,"(?:8(?:[04]0|6[01])|90\\d)\\d{6}"],[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]]],UA:[,[,,"[89]\\d{9}|[3-9]\\d{8}",,,,,,,[9,10],[5,6,7]],[,,"(?:3[1-8]|4[13-8]|5[1-7]|6[12459])\\d{7}", 647 ,,,"100"],[,,"1(?:65|9(?:1\\d|50|85|98))",,,,"165"],[,,,,,,,,,[-1]],,[,,,,,,,,,[-1]]],TZ:[,[,,"[149]\\d\\d(?:\\d{2})?",,,,,,,[3,5]],,,[,,"1(?:1[0-79]|9[09])|999",,,,"110",,,[3]],[,,,,,,,,,[-1]],,,,"TZ",,,,,,,,,,,,,,,,,,[,,"11[0-245]|999",,,,"110",,,[3]],,[,,"1(?:1\\d|9[09])|46400|999",,,,"110"],[,,,,,,,,,[-1]],[,,"464\\d\\d",,,,"46400",,,[5]],,[,,"464\\d\\d",,,,"46400",,,[5]]],UA:[,[,,"[189]\\d{2,5}",,,,,,,[3,4,5,6]],,,[,,"1(?:0[1-3]|1(?:2|6\\d{3}))",,,,"101",,,[3,6]],[,,,,,,,,,[-1]],,,,"UA",,,,,
|
/third_party/python/Lib/test/ |
H A D | datetimetester.py | 4911 # Note that offset in TZ variable has the opposite sign to that 5703 # $ TZ=Australia/Lord_Howe date -r 1428158700 5705 # $ TZ=Australia/Lord_Howe date -r 1428160500 6177 TZ = os.environ.get('TZ') 6178 os.environ['TZ'] = self.zonename 6204 if TZ is None: 6205 del os.environ['TZ'] 6207 os.environ['TZ'] = TZ [all...] |