/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/ |
H A D | time_zone_libc.cc | 238 return {time_zone::civil_lookup::UNIQUE, tp, tp, tp}; in MakeTime() 245 return {time_zone::civil_lookup::UNIQUE, tp, tp, tp}; in MakeTime() 250 return {time_zone::civil_lookup::UNIQUE, tp, tp, tp}; in MakeTime() 264 return {time_zone::civil_lookup::UNIQUE, tp, tp, tp}; in MakeTime() 291 return {time_zone::civil_lookup::UNIQUE, tp, tp, tp}; in MakeTime()
|
H A D | time_zone_lookup_test.cc | 1055 if (fcl.kind == time_zone::civil_lookup::UNIQUE) { in TEST() 1056 if (tcl.kind == time_zone::civil_lookup::UNIQUE) { in TEST() 1071 ASSERT_EQ(time_zone::civil_lookup::UNIQUE, tcl.kind); in TEST()
|
H A D | time_zone_info.cc | 168 cl.kind = time_zone::civil_lookup::UNIQUE; in MakeUnique()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/time/ |
H A D | time.cc | 126 tc.kind = absl::TimeConversion::UNIQUE; in InfiniteFutureTimeConversion() 134 tc.kind = absl::TimeConversion::UNIQUE; in InfinitePastTimeConversion() 374 case cctz::time_zone::civil_lookup::UNIQUE: in At() 375 ti.kind = TimeZone::TimeInfo::UNIQUE; in At() 416 case TimeZone::TimeInfo::UNIQUE: in ConvertDateTime() 417 tc.kind = TimeConversion::UNIQUE; in ConvertDateTime()
|
H A D | time.h | 975 UNIQUE, // the civil time was singular (pre == trans == post) enumerator 995 // // jan01.kind == TimeZone::TimeInfo::UNIQUE 1177 UNIQUE, // the civil time was singular (pre == trans == post) enumerator 1200 // // tc.kind == TimeConversion::UNIQUE && tc.normalized == true
|
H A D | time_test.cc | 634 EXPECT_EQ(absl::TimeZone::TimeInfo::UNIQUE, nov01_ci.kind); in TEST() 672 EXPECT_EQ(absl::TimeZone::TimeInfo::UNIQUE, minus1_cl.kind); in TEST()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | PluralSamples.java | 272 return KeywordStatus.UNIQUE; in getStatus() 291 return originalSize == 1 ? KeywordStatus.UNIQUE : KeywordStatus.BOUNDED; in getStatus()
|
H A D | PluralRules.java | 2402 UNIQUE, enum constant 2485 return KeywordStatus.UNIQUE; in getKeywordStatus() 2504 return originalSize == 1 ? KeywordStatus.UNIQUE : KeywordStatus.BOUNDED; in getKeywordStatus()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/include/cctz/ |
H A D | time_zone.h | 124 // respectively (all three times are equal if kind == UNIQUE). If any 134 // // jan01.kind == cctz::time_zone::civil_lookup::UNIQUE 154 UNIQUE, // the civil time was singular (pre == trans == post) enumerator
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
H A D | PluralRulesTest.java | 892 { { "en", null }, { "one", KeywordStatus.UNIQUE, 1.0d }, { "other", KeywordStatus.UNBOUNDED, null } }, in TestKeywords() 893 { { "pl", null }, { "one", KeywordStatus.UNIQUE, 1.0d }, { "few", KeywordStatus.UNBOUNDED, null }, in TestKeywords()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | PluralRules.java | 2604 UNIQUE, enum constant 2686 return KeywordStatus.UNIQUE; in getKeywordStatus() 2708 return originalSize == 1 ? KeywordStatus.UNIQUE : KeywordStatus.BOUNDED; in getKeywordStatus()
|
/third_party/python/Lib/ |
H A D | enum.py | 14 'EnumCheck', 'CONTINUOUS', 'NAMED_FLAGS', 'UNIQUE', 1812 UNIQUE = "one name per value" variable in EnumCheck 1813 CONTINUOUS, NAMED_FLAGS, UNIQUE = EnumCheck 1832 if check is UNIQUE:
|
/third_party/python/Lib/test/ |
H A D | test_enum.py | 16 from enum import verify, UNIQUE, CONTINUOUS, NAMED_FLAGS, ReprEnum namespace 3946 @verify(UNIQUE) 3952 @verify(UNIQUE) 4040 @verify(UNIQUE) 4046 @verify(UNIQUE) 4054 @verify(UNIQUE) 4063 @verify(UNIQUE) 4071 @verify(UNIQUE) 4077 @verify(UNIQUE)
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | PluralRulesTest.java | 1193 { { "en", null }, { "one", KeywordStatus.UNIQUE, ONE_INTEGER }, { "other", KeywordStatus.UNBOUNDED, null } }, in TestKeywords() 1194 { { "pl", null }, { "one", KeywordStatus.UNIQUE, ONE_INTEGER }, { "few", KeywordStatus.UNBOUNDED, null }, in TestKeywords()
|
/third_party/json/docs/docset/ |
H A D | docSet.sql | 3 CREATE UNIQUE INDEX anchor ON searchIndex (name, type, path);
|
/third_party/sqlite/src/ |
H A D | sqlite3.c | 7831 ** <li> ^(Column zColumn is part of an index, PRIMARY KEY or UNIQUE 12101 ** violation (e.g. NOT NULL or UNIQUE), the conflict handler function is 12266 ** a UNIQUE, CHECK or NOT NULL constraint), the conflict handler is 17611 #define COLFLAG_UNIQUE 0x0008 /* Column def contains "UNIQUE" or "PK" */ 17929 ** a UNIQUE constraint violation are removed so that the new insert or 18102 unsigned idxType:2; /* 0:Normal 1:UNIQUE, 2:PRIMARY KEY, 3:IPK */ 18104 unsigned uniqNotNull:1; /* True if UNIQUE and NOT NULL for all columns */ 18129 #define SQLITE_IDXTYPE_UNIQUE 1 /* Implements a UNIQUE constraint */ 18136 /* Return true if index X is a UNIQUE index */ 18799 Index *pUpsertIdx; /* UNIQUE constrain [all...] |