Home
last modified time | relevance | path

Searched refs:upper (Results 151 - 175 of 497) sorted by relevance

12345678910>>...20

/third_party/skia/tools/
H A Dbuild_workaround_header.py46 write(indent + macro + '(' + w.upper() + ',')
/third_party/python/Lib/test/test_importlib/extension/
H A Dtest_case_sensitivity.py17 bad_name = good_name.upper()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DCalendar.java1992 throw new IllegalArgumentException("millis value greater than upper bounds for a Calendar : " + millis); in setTimeInMillis()
5591 long upper = base; in getPreviousZoneTransitionTime()
5593 int offsetU = tz.getOffset(upper); in getPreviousZoneTransitionTime()
5598 return findPreviousZoneTransitionTime(tz, offsetU, upper, lower); in getPreviousZoneTransitionTime()
5615 * @param upperOffset The zone offset at <code>upper</code>
5616 * @param upper The upper bound, inclusive.
5620 private static Long findPreviousZoneTransitionTime(TimeZone tz, int upperOffset, long upper, long lower) { in findPreviousZoneTransitionTime() argument
5626 long uunits = upper/unit; in findPreviousZoneTransitionTime()
5636 mid = (upper in findPreviousZoneTransitionTime()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DCalendar.java1913 throw new IllegalArgumentException("millis value greater than upper bounds for a Calendar : " + millis); in setTimeInMillis()
5337 long upper = base; in getPreviousZoneTransitionTime()
5339 int offsetU = tz.getOffset(upper); in getPreviousZoneTransitionTime()
5344 return findPreviousZoneTransitionTime(tz, offsetU, upper, lower); in getPreviousZoneTransitionTime()
5361 * @param upperOffset The zone offset at <code>upper</code>
5362 * @param upper The upper bound, inclusive.
5366 private static Long findPreviousZoneTransitionTime(TimeZone tz, int upperOffset, long upper, long lower) { in findPreviousZoneTransitionTime() argument
5372 long uunits = upper/unit; in findPreviousZoneTransitionTime()
5382 mid = (upper in findPreviousZoneTransitionTime()
[all...]
/test/testfwk/xdevice/src/xdevice/_core/config/
H A Dconfig_manager.py108 v = v.upper()
156 cfg.update({ConfigConst.tag_enable: "ON" if enable.upper() == "ON" else "OFF"})
192 level = level.upper()
/third_party/icu/tools/colprobe/
H A Dstrengthprobe.cpp381 int32_t upper = 0, lower = 0, equal = 0; in isUpperFirst() local
387 upper++; in isUpperFirst()
398 if(upper == 0 && equal == 0) { in isUpperFirst()
/third_party/lame/libmp3lame/
H A Dgain_analysis.c418 uint32_t upper; in analyzeResult() local
428 upper = (uint32_t) ceil(elems * (1. - RMS_PERCENTILE)); in analyzeResult()
432 if (sum >= upper) { in analyzeResult()
/third_party/node/deps/v8/src/bigint/
H A Dtostring.cc87 digit_t upper = (remainder << kHalfDigitBits) | (d >> kHalfDigitBits); in DivideByMagic() local
88 digit_t u_result = upper / chunk_divisor; in DivideByMagic()
89 remainder = upper % chunk_divisor; in DivideByMagic()
/third_party/python/Lib/
H A Dbase64.py219 s = s.upper()
275 return binascii.hexlify(s).upper()
290 s = s.upper()
/test/testfwk/developer_test/src/core/command/
H A Dparameter.py63 item = item.upper()
/third_party/googletest/googletest/test/
H A Dgoogletest-throw-on-failure-test.py61 env_var = env_var.upper()
/third_party/mbedtls/scripts/
H A Decp_comb_table.py203 '-DCURVE_ID=MBEDTLS_ECP_DP_%s' % curve.upper(),
/third_party/node/deps/v8/tools/cppgc/
H A Dgen_cmake_test.py24 CMAKE_TARGET_SOURCES = TARGET.upper() + '_SOURCES'
/third_party/node/src/
H A Djs_native_api_types.h159 uint64_t upper; member
/third_party/nghttp2/
H A Dgentokenlookup.py5 for c in k.upper():
/third_party/skia/third_party/externals/angle2/src/tests/restricted_traces/
H A Dsync_restricted_traces_to_cipd.py80 logging.basicConfig(level=args.log.upper())
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dgen-arabic-joining-list.py74 print (" case HB_SCRIPT_{}:".format (script.upper ()))
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/Utils/
H A DAArch64BaseInfo.cpp130 std::string UpperName = Name.upper(); in parseGenericRegister()
/third_party/skia/third_party/externals/icu/scripts/
H A Dmake_data_assembly.py78 split = [binascii.hexlify(input_data[i:i + 4][::step]).decode('ascii').upper().lstrip('0')
/third_party/markupsafe/
H A D__init__.py215 upper = _simple_escaping_wrapper(str.upper) variable in Markup
/third_party/mesa3d/src/freedreno/ir3/
H A Dir3_nir_lower_64b.c30 * the upper 32bits and let the other nir passes clean up the mess.
121 nir_ssa_def *upper = nir_build_load_kernel_input( in lower_64b_intrinsics() local
124 return nir_pack_64_2x32_split(b, def, upper); in lower_64b_intrinsics()
/third_party/mesa3d/src/vulkan/util/
H A Dvk_cmd_queue_gen.py411 return "VK_%s" % to_underscore(name).upper()
587 guard = os.path.basename(args.out_h).replace('.', '_').upper()
/third_party/python/Tools/scripts/
H A Dreindent.py88 if not a.upper() in ('CRLF', 'LF'):
91 spec_newline = dict(CRLF='\r\n', LF='\n')[a.upper()]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
H A Dgenerate_gl_dispatch_table.py88 return " PFNGL" + entry_point.upper() + "PROC " + first_lower(entry_point) + " = nullptr;"
188 return ' ' + name + ' = &gl' + name[0].upper() + name[1:] + 'NULL;'
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
H A Dgen_angle_format_table.py220 bitness = bits[channels[0].upper()]
225 if bits[channel.upper()] != bitness:

Completed in 25 milliseconds

12345678910>>...20