Home
last modified time | relevance | path

Searched refs:kuint32max (Results 1 – 12 of 12) sorted by relevance

/external/jsoncpp/src/test_lib_json/
Dmain.cpp14 #define kuint32max Json::Value::maxUInt macro
22 static const float kfuint32max = float(kuint32max);
711 val = Json::Value(kuint32max); in JSONTEST_FIXTURE()
729 JSONTEST_ASSERT_EQUAL(kuint32max, val.asLargestInt()); in JSONTEST_FIXTURE()
731 JSONTEST_ASSERT_EQUAL(kuint32max, val.asUInt()); in JSONTEST_FIXTURE()
732 JSONTEST_ASSERT_EQUAL(kuint32max, val.asLargestUInt()); in JSONTEST_FIXTURE()
733 JSONTEST_ASSERT_EQUAL(kuint32max, val.asDouble()); in JSONTEST_FIXTURE()
1156 val = Json::Value(kuint32max + 0.5); in JSONTEST_FIXTURE()
/external/protobuf/python/google/protobuf/internal/
Ddescriptor_test.py181 kuint32max = 2**32 - 1
219 self.assertEqual(kuint32max, message_options.Extensions[
227 self.assertEqual(kuint32max, message_options.Extensions[
/external/icu/icu4c/source/common/
Ddictbe.cpp1068 static const uint32_t kuint32max = 0xFFFFFFFF; variable
1265 bestSnlp.addElement(kuint32max, status); in divideUpDictionaryRange()
1292 if ((uint32_t)bestSnlp.elementAti(i) == kuint32max) { in divideUpDictionaryRange()
1360 if ((uint32_t)bestSnlp.elementAti(numCodePts) == kuint32max) { in divideUpDictionaryRange()
/external/protobuf/src/google/protobuf/stubs/
Dstrutil.cc589 return kuint32max; in strtou32_adaptor()
590 } else if (errno == 0 && result > kuint32max) { in strtou32_adaptor()
592 return kuint32max; in strtou32_adaptor()
Dcommon_unittest.cc75 EXPECT_EQ(0, kuint32max + 1); in TEST()
Dcommon.h201 static const uint32 kuint32max = 0xFFFFFFFFu; variable
/external/protobuf/src/google/protobuf/io/
Dcoded_stream.cc907 GOOGLE_DCHECK_LE(str.size(), kuint32max); in WriteStringWithSizeToArray()
/external/protobuf/src/google/protobuf/
Dtext_format.cc615 DO(ConsumeUnsignedInteger(&value, kuint32max)); in ConsumeFieldValue()
Ddescriptor_unittest.cc2428 EXPECT_EQ(kuint32max, options->GetExtension(protobuf_unittest::uint32_opt)); in TEST()
2432 EXPECT_EQ(kuint32max, options->GetExtension(protobuf_unittest::fixed32_opt)); in TEST()
Ddescriptor.cc5053 if (uninterpreted_option_->positive_int_value() > kuint32max) { in SetOptionValue()
/external/protobuf/src/google/protobuf/compiler/
Dparser.cc882 max_value = kuint32max; in ParseDefaultAssignment()
/external/protobuf/python/google/protobuf/pyext/
Dmessage.cc2398 kuint32max_py = PyLong_FromLongLong(kuint32max); in CheckAndGetInteger()