/external/harfbuzz_ng/test/api/ |
test-version.c | 35 unsigned int major, minor, micro; local 38 hb_version (&major, &minor, µ); 42 g_assert_cmpint (micro, ==, HB_VERSION_MICRO); 44 s = g_strdup_printf ("%u.%u.%u", major, minor, micro); 49 g_assert (HB_VERSION_ATLEAST (major, minor, micro)); 51 g_assert (HB_VERSION_ATLEAST (major-1, minor, micro)); 53 g_assert (HB_VERSION_ATLEAST (major, minor-1, micro)); 54 if (micro) 55 g_assert (HB_VERSION_ATLEAST (major, minor, micro-1)); 56 g_assert (!HB_VERSION_ATLEAST (major+1, minor, micro)); [all...] |
/external/harfbuzz_ng/src/ |
hb-version.h | 45 #define HB_VERSION_ATLEAST(major,minor,micro) \ 46 ((major)*10000+(minor)*100+(micro) <= \ 53 unsigned int *micro); 61 unsigned int micro);
|
hb-version.h.in | 45 #define HB_VERSION_ATLEAST(major,minor,micro) \ 46 ((major)*10000+(minor)*100+(micro) <= \ 53 unsigned int *micro); 61 unsigned int micro);
|
/external/python/cpython2/PC/VS7.1/ |
field3.py | 17 major, minor, micro, level, serial = sys.version_info 26 print " * PY_MICRO_VERSION = %d" % micro 31 field3 = micro * 1000 + levelnum * 10 + serial 33 print " * and %d*1000 + %d*10 + %d = %d" % (micro, levelnum, serial, field3)
|
/external/python/cpython2/PC/VS8.0/ |
field3.py | 17 major, minor, micro, level, serial = sys.version_info 26 print(" * PY_MICRO_VERSION = %d" % micro) 31 field3 = micro * 1000 + levelnum * 10 + serial 33 print(" * and %d*1000 + %d*10 + %d = %d" % (micro, levelnum, serial, field3))
|
/external/python/cpython2/PC/VS9.0/ |
field3.py | 17 major, minor, micro, level, serial = sys.version_info 26 print(" * PY_MICRO_VERSION = %d" % micro) 31 field3 = micro * 1000 + levelnum * 10 + serial 33 print(" * and %d*1000 + %d*10 + %d = %d" % (micro, levelnum, serial, field3))
|
/external/python/cpython2/PCbuild/ |
field3.py | 17 major, minor, micro, level, serial = sys.version_info 26 print(" * PY_MICRO_VERSION = %d" % micro) 31 field3 = micro * 1000 + levelnum * 10 + serial 33 print(" * and %d*1000 + %d*10 + %d = %d" % (micro, levelnum, serial, field3))
|
/external/python/cpython3/PCbuild/ |
field3.py | 17 major, minor, micro, level, serial = sys.version_info 26 print(" * PY_MICRO_VERSION = %d" % micro) 31 field3 = micro * 1000 + levelnum * 10 + serial 33 print(" * and %d*1000 + %d*10 + %d = %d" % (micro, levelnum, serial, field3))
|
/external/skia/third_party/harfbuzz/ |
hb-version.h | 45 #define HB_VERSION_ATLEAST(major,minor,micro) \ 46 ((major)*10000+(minor)*100+(micro) <= \ 53 unsigned int *micro); 61 unsigned int micro);
|
/external/skqp/third_party/harfbuzz/ |
hb-version.h | 45 #define HB_VERSION_ATLEAST(major,minor,micro) \ 46 ((major)*10000+(minor)*100+(micro) <= \ 53 unsigned int *micro); 61 unsigned int micro);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/pulse/ |
version.h | 60 /** The micro version of PA (will always be 0 from v1.0 onwards). \since 0.9.15 */ 65 #define PA_CHECK_VERSION(major,minor,micro) \ 68 (PA_MAJOR == (major) && PA_MINOR == (minor) && PA_MICRO >= (micro)))
|
/hardware/intel/common/libva/va/ |
va_compat.h | 85 #define VA_CPP_HELPER_ALIAS(func, major, minor, micro) \ 86 VA_CPP_HELPER_ALIAS_(func, major, minor, micro, "@") 87 #define VA_CPP_HELPER_ALIAS_DEFAULT(func, major, minor, micro) \ 88 VA_CPP_HELPER_ALIAS_(func, major, minor, micro, "@@") 89 #define VA_CPP_HELPER_ALIAS_(func, major, minor, micro, binding) \ 90 asm(".symver " #func "_" #major "_" #minor "_" #micro ", " \ 91 #func binding "VA_API_" #major "." #minor "." #micro)
|
va_version.h.in | 45 * The micro version of VA-API (3, if %VA_VERSION is 1.2.3) 77 * @micro: micro version, like 3 in 1.2.3 80 * @major, @minor and @micro 82 #define VA_CHECK_VERSION(major,minor,micro) \ 85 (VA_MAJOR_VERSION == (major) && VA_MINOR_VERSION == (minor) && VA_MICRO_VERSION >= (micro)))
|
/external/libcxx/test/std/utilities/time/time.duration/time.duration.cons/ |
convert_inexact.pass.cpp | 27 std::chrono::duration<double, std::micro> us(1); 33 constexpr std::chrono::duration<double, std::micro> us(1);
|
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/time/time.duration/time.duration.cons/ |
convert_inexact.pass.cpp | 27 std::chrono::duration<double, std::micro> us(1); 33 constexpr std::chrono::duration<double, std::micro> us(1);
|
/external/python/cpython2/Doc/tools/extensions/ |
patchlevel.py | 36 micro = int(d['PY_MICRO_VERSION']) 37 if micro != 0: 38 release += '.' + str(micro) 52 major, minor, micro, level, serial = sys.version_info 54 if micro: 55 release += '.%s' % micro
|
/external/python/cpython3/Doc/tools/extensions/ |
patchlevel.py | 38 micro = int(d['PY_MICRO_VERSION']) 39 release += '.' + str(micro) 53 major, minor, micro, level, serial = sys.version_info 55 release += '.%s' % micro
|
/external/protobuf/ |
build.gradle | 20 micro 27 micro { 30 include("com/google/protobuf/micro/*") 102 from sourceSets.nano.output, sourceSets.micro.output 119 from sourceSets.micro.output 124 classifier "micro" 137 micro microJar
|
/build/make/core/ |
host_java_library_common.mk | 34 ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),micro) 35 LOCAL_JAVA_LIBRARIES += host-libprotobuf-java-micro
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
timingmodule.c | 39 micro(PyObject *self)
function 50 {"micro", (PyCFunction)micro, METH_NOARGS},
|
/external/ImageMagick/MagickCore/ |
MagickCore.h | 51 #define MAGICKCORE_CHECK_VERSION(major,minor,micro) \ 57 (MAGICKCORE_MICRO_VERSION >= (micro))))
|
/external/python/cpython2/Modules/ |
timingmodule.c | 39 micro(PyObject *self) function 50 {"micro", (PyCFunction)micro, METH_NOARGS},
|
/external/clang/lib/Basic/ |
VersionTuple.cpp | 60 unsigned major = 0, minor = 0, micro = 0, build = 0; local 80 // If we're not done, parse the micro version, \.[0-9]+ 83 if (parseInt(input, micro)) return true; 86 *this = VersionTuple(major, minor, micro); 90 // If we're not done, parse the micro version, \.[0-9]+ 98 *this = VersionTuple(major, minor, micro, build);
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/serializable/ |
SerializableWriter.java | 45 int micro = VersionInfo.ICU_VERSION.getMicro(); local 52 if (milli != 0 || micro != 0) { 56 if (micro != 0) { 58 result.append(micro);
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/ |
SerializableWriter.java | 42 int micro = VersionInfo.ICU_VERSION.getMicro(); local 49 if (milli != 0 || micro != 0) { 53 if (micro != 0) { 55 result.append(micro);
|