/third_party/icu/icu4c/source/common/ |
H A D | uniset.cpp | 1714 // polarity = 0, 3 is normal: x xor y 1715 // polarity = 1, 2: x xor ~y == x === y 1717 void UnicodeSet::exclusiveOr(const UChar32* other, int32_t otherLen, int8_t polarity) { 1728 if (polarity == 1 || polarity == 2) { 1760 // polarity = 0 is normal: x union y 1761 // polarity = 2: x union ~y 1762 // polarity = 1: ~x union y 1763 // polarity = 3: ~x union ~y 1765 void UnicodeSet::add(const UChar32* other, int32_t otherLen, int8_t polarity) { [all...] |
H A D | ustring.cpp | 464 * is (polarity==true) or is not (false) contained in the matchSet. 468 _matchFromSet(const UChar *string, const UChar *matchSet, UBool polarity) { in _matchFromSet() argument 488 if(polarity) { in _matchFromSet() 514 if(polarity) { in _matchFromSet()
|
/third_party/node/deps/icu-small/source/common/ |
H A D | uniset.cpp | 1714 // polarity = 0, 3 is normal: x xor y 1715 // polarity = 1, 2: x xor ~y == x === y 1717 void UnicodeSet::exclusiveOr(const UChar32* other, int32_t otherLen, int8_t polarity) { 1728 if (polarity == 1 || polarity == 2) { 1760 // polarity = 0 is normal: x union y 1761 // polarity = 2: x union ~y 1762 // polarity = 1: ~x union y 1763 // polarity = 3: ~x union ~y 1765 void UnicodeSet::add(const UChar32* other, int32_t otherLen, int8_t polarity) { [all...] |
H A D | ustring.cpp | 464 * is (polarity==true) or is not (false) contained in the matchSet. 468 _matchFromSet(const char16_t *string, const char16_t *matchSet, UBool polarity) { in _matchFromSet() argument 488 if(polarity) { in _matchFromSet() 514 if(polarity) { in _matchFromSet()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | uniset.cpp | 1715 // polarity = 0, 3 is normal: x xor y 1716 // polarity = 1, 2: x xor ~y == x === y 1718 void UnicodeSet::exclusiveOr(const UChar32* other, int32_t otherLen, int8_t polarity) { 1729 if (polarity == 1 || polarity == 2) { 1761 // polarity = 0 is normal: x union y 1762 // polarity = 2: x union ~y 1763 // polarity = 1: ~x union y 1764 // polarity = 3: ~x union ~y 1766 void UnicodeSet::add(const UChar32* other, int32_t otherLen, int8_t polarity) { [all...] |
H A D | ustring.cpp | 464 * is (polarity==TRUE) or is not (FALSE) contained in the matchSet. 468 _matchFromSet(const UChar *string, const UChar *matchSet, UBool polarity) { in _matchFromSet() argument 488 if(polarity) { in _matchFromSet() 514 if(polarity) { in _matchFromSet()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | UnicodeSet.java | 3102 // polarity = 0, 3 is normal: x xor y 3103 // polarity = 1, 2: x xor ~y == x === y 3105 private UnicodeSet xor(int[] other, int otherLen, int polarity) { in xor() argument 3110 // TODO: Based on the call hierarchy, polarity of 1 or 2 is never used in xor() 3113 if (polarity == 1 || polarity == 2) { in xor() 3150 // polarity = 0 is normal: x union y 3151 // polarity = 2: x union ~y 3152 // polarity = 1: ~x union y 3153 // polarity 3155 add(int[] other, int otherLen, int polarity) add() argument 3253 retain(int[] other, int otherLen, int polarity) retain() argument [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | UnicodeSet.java | 2988 // polarity = 0, 3 is normal: x xor y 2989 // polarity = 1, 2: x xor ~y == x === y 2991 private UnicodeSet xor(int[] other, int otherLen, int polarity) { in xor() argument 2996 // TODO: Based on the call hierarchy, polarity of 1 or 2 is never used in xor() 2999 if (polarity == 1 || polarity == 2) { in xor() 3036 // polarity = 0 is normal: x union y 3037 // polarity = 2: x union ~y 3038 // polarity = 1: ~x union y 3039 // polarity 3041 add(int[] other, int otherLen, int polarity) add() argument 3139 retain(int[] other, int otherLen, int polarity) retain() argument [all...] |
/third_party/node/deps/v8/src/compiler/ |
H A D | loop-variable-optimizer.cc | 154 void LoopVariableOptimizer::VisitIf(Node* node, bool polarity) { in VisitIf() argument 163 AddCmpToLimits(&limits, cond, InductionVariable::kStrict, polarity); in VisitIf() 166 AddCmpToLimits(&limits, cond, InductionVariable::kNonStrict, !polarity); in VisitIf() 171 AddCmpToLimits(&limits, cond, InductionVariable::kNonStrict, polarity); in VisitIf() 174 AddCmpToLimits(&limits, cond, InductionVariable::kStrict, !polarity); in VisitIf() 184 bool polarity) { in AddCmpToLimits() 188 if (polarity) { in AddCmpToLimits() 182 AddCmpToLimits( VariableLimits* limits, Node* node, InductionVariable::ConstraintKind kind, bool polarity) AddCmpToLimits() argument
|
H A D | loop-variable-optimizer.h | 104 void VisitIf(Node* node, bool polarity); 110 InductionVariable::ConstraintKind kind, bool polarity);
|
/third_party/icu/icu4c/source/common/unicode/ |
H A D | uniset.h | 1615 void exclusiveOr(const UChar32* other, int32_t otherLen, int8_t polarity); 1617 void add(const UChar32* other, int32_t otherLen, int8_t polarity); 1619 void retain(const UChar32* other, int32_t otherLen, int8_t polarity);
|
/third_party/node/deps/icu-small/source/common/unicode/ |
H A D | uniset.h | 1628 void exclusiveOr(const UChar32* other, int32_t otherLen, int8_t polarity); 1630 void add(const UChar32* other, int32_t otherLen, int8_t polarity); 1632 void retain(const UChar32* other, int32_t otherLen, int8_t polarity);
|
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
H A D | uniset.h | 1588 void exclusiveOr(const UChar32* other, int32_t otherLen, int8_t polarity); 1590 void add(const UChar32* other, int32_t otherLen, int8_t polarity); 1592 void retain(const UChar32* other, int32_t otherLen, int8_t polarity);
|
/third_party/rust/crates/syn/tests/common/ |
H A D | eq.rs | 484 spanless_eq_struct!(Impl; defaultness unsafety generics constness polarity of_trait self_ty items); 513 spanless_eq_struct!(TraitBoundModifiers; constness polarity);
|
/third_party/rust/crates/syn/src/ |
H A D | item.rs | 2503 let polarity = if input.peek(Token![!]) && !input.peek2(token::Brace) { in parse_impl() 2527 trait_ = Some((polarity, path, for_token)); in parse_impl() 2542 self_ty = if polarity.is_none() { in parse_impl() 3083 if let Some((polarity, path, for_token)) = &self.trait_ { in to_tokens() 3084 polarity.to_tokens(tokens); in to_tokens()
|
/third_party/skia/third_party/externals/sfntly/java/lib/ |
H A D | icu4j-4_8_1_1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/ibm/
com/ibm/icu/
com/ibm/icu/impl/
... |