Home
last modified time | relevance | path

Searched refs:polarity (Results 1 - 16 of 16) sorted by relevance

/third_party/icu/icu4c/source/common/
H A Duniset.cpp1714 // 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 Dustring.cpp464 * 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 Duniset.cpp1714 // 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 Dustring.cpp464 * 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 Duniset.cpp1715 // 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 Dustring.cpp464 * 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 DUnicodeSet.java3102 // 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 DUnicodeSet.java2988 // 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 Dloop-variable-optimizer.cc154 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 Dloop-variable-optimizer.h104 void VisitIf(Node* node, bool polarity);
110 InductionVariable::ConstraintKind kind, bool polarity);
/third_party/icu/icu4c/source/common/unicode/
H A Duniset.h1615 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 Duniset.h1628 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 Duniset.h1588 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 Deq.rs484 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 Ditem.rs2503 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 Dicu4j-4_8_1_1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/ibm/ com/ibm/icu/ com/ibm/icu/impl/ ...

Completed in 45 milliseconds