Home
last modified time | relevance | path

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

/third_party/libphonenumber/cpp/src/phonenumbers/base/
Dbasictypes.h35 const uint32 kuint32max = UINT32_MAX; variable
/third_party/libphonenumber/tools/cpp/src/base/
Dbasictypes.h33 const uint32 kuint32max = UINT32_MAX; variable
/third_party/protobuf/python/compatibility_tests/v2.5.0/tests/google/protobuf/internal/
Ddescriptor_test.py181 kuint32max = 2**32 - 1
219 self.assertEqual(kuint32max, message_options.Extensions[
227 self.assertEqual(kuint32max, message_options.Extensions[
/third_party/skia/third_party/externals/icu/source/common/
Ddictbe.cpp1042 static const uint32_t kuint32max = 0xFFFFFFFF; variable
1247 bestSnlp.addElement(kuint32max, status); in divideUpDictionaryRange()
1275 if ((uint32_t)bestSnlp.elementAti(i) == kuint32max) { in divideUpDictionaryRange()
1342 if ((uint32_t)bestSnlp.elementAti(numCodePts) == kuint32max) { in divideUpDictionaryRange()
/third_party/flutter/skia/third_party/externals/icu/source/common/
Ddictbe.cpp1043 static const uint32_t kuint32max = 0xFFFFFFFF; variable
1245 bestSnlp.addElement(kuint32max, status); in divideUpDictionaryRange()
1273 if ((uint32_t)bestSnlp.elementAti(i) == kuint32max) { in divideUpDictionaryRange()
1340 if ((uint32_t)bestSnlp.elementAti(numCodePts) == kuint32max) { in divideUpDictionaryRange()
/third_party/icu/icu4c/source/common/
Ddictbe.cpp1042 static const uint32_t kuint32max = 0xFFFFFFFF; variable
1247 bestSnlp.addElement(kuint32max, status); in divideUpDictionaryRange()
1275 if ((uint32_t)bestSnlp.elementAti(i) == kuint32max) { in divideUpDictionaryRange()
1342 if ((uint32_t)bestSnlp.elementAti(numCodePts) == kuint32max) { in divideUpDictionaryRange()
/third_party/node/deps/icu-small/source/common/
Ddictbe.cpp1048 static const uint32_t kuint32max = 0xFFFFFFFF; variable
1252 bestSnlp.addElement(kuint32max, status); in divideUpDictionaryRange()
1280 if ((uint32_t)bestSnlp.elementAti(i) == kuint32max) { in divideUpDictionaryRange()
1347 if ((uint32_t)bestSnlp.elementAti(numCodePts) == kuint32max) { in divideUpDictionaryRange()
/third_party/protobuf/src/google/protobuf/stubs/
Dcommon_unittest.cc76 EXPECT_EQ(0, kuint32max + 1); in TEST()
Dport.h138 static const uint32 kuint32max = 0xFFFFFFFFu; variable
Dstrutil.cc657 return kuint32max; in strtou32_adaptor()
658 } else if (errno == 0 && result > kuint32max) { in strtou32_adaptor()
660 return kuint32max; in strtou32_adaptor()
/third_party/protobuf/python/google/protobuf/internal/
Ddescriptor_test.py212 kuint32max = 2**32 - 1
250 self.assertEqual(kuint32max, message_options.Extensions[
258 self.assertEqual(kuint32max, message_options.Extensions[
/third_party/jsoncpp/src/test_lib_json/
Dmain.cpp34 #define kuint32max Json::Value::maxUInt macro
42 static const float kfuint32max = float(kuint32max);
902 val = Json::Value(kuint32max); in JSONTEST_FIXTURE_LOCAL()
920 JSONTEST_ASSERT_EQUAL(kuint32max, val.asLargestInt()); in JSONTEST_FIXTURE_LOCAL()
922 JSONTEST_ASSERT_EQUAL(kuint32max, val.asUInt()); in JSONTEST_FIXTURE_LOCAL()
923 JSONTEST_ASSERT_EQUAL(kuint32max, val.asLargestUInt()); in JSONTEST_FIXTURE_LOCAL()
924 JSONTEST_ASSERT_EQUAL(kuint32max, val.asDouble()); in JSONTEST_FIXTURE_LOCAL()
1406 val = Json::Value(kuint32max + 0.5); in JSONTEST_FIXTURE_LOCAL()
/third_party/protobuf/src/google/protobuf/io/
Dcoded_stream.cc949 GOOGLE_DCHECK_LE(str.size(), kuint32max); in WriteStringWithSizeToArray()
/third_party/protobuf/src/google/protobuf/compiler/
Dparser.cc1292 max_value = kuint32max; in ParseDefaultAssignment()
/third_party/protobuf/src/google/protobuf/
Dtext_format.cc716 DO(ConsumeUnsignedInteger(&value, kuint32max)); in ConsumeFieldValue()
Ddescriptor_unittest.cc3054 EXPECT_EQ(kuint32max, options->GetExtension(protobuf_unittest::uint32_opt)); in TEST()
3058 EXPECT_EQ(kuint32max, options->GetExtension(protobuf_unittest::fixed32_opt)); in TEST()
Ddescriptor.cc6918 if (uninterpreted_option_->positive_int_value() > kuint32max) { in SetOptionValue()