HomeSort by relevance Sort by last modified time
    Searched refs:getStrength (Results 1 - 25 of 48) sorted by null

1 2

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
DHKeyGenerationParameters.java 16 super(random, getStrength(params));
26 static int getStrength(DHParameters params)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
CipherKeyGenerator.java 22 this.strength = (param.getStrength() + 7) / 8;
KeyGenerationParameters.java 44 public int getStrength()
  /libcore/luni/src/test/java/libcore/java/text/
CollatorTest.java 31 assertEquals(Collator.PRIMARY, collator.getStrength());
33 assertEquals(Collator.SECONDARY, collator.getStrength());
35 assertEquals(Collator.TERTIARY, collator.getStrength());
37 assertEquals(Collator.IDENTICAL, collator.getStrength());
94 assertEquals(Collator.TERTIARY, coll.getStrength());
  /external/icu/icu4c/source/i18n/
collationsettings.h 126 static int32_t getStrength(int32_t options) {
130 int32_t getStrength() const {
131 return getStrength(options);
collationcompare.cpp 112 if(CollationSettings::getStrength(options) >= UCOL_SECONDARY) {
187 int32_t strength = CollationSettings::getStrength(options);
251 if(CollationSettings::getStrength(options) <= UCOL_SECONDARY) { return UCOL_EQUAL; }
304 if(CollationSettings::getStrength(options) <= UCOL_TERTIARY) { return UCOL_EQUAL; }
collationfastlatin.cpp 102 options &= 0xffff; // needed for CollationSettings::getStrength() to work
198 if(CollationSettings::getStrength(options) >= UCOL_SECONDARY) {
274 UBool strengthIsPrimary = CollationSettings::getStrength(options) == UCOL_PRIMARY;
323 if(CollationSettings::getStrength(options) <= UCOL_SECONDARY) { return UCOL_EQUAL; }
382 if(CollationSettings::getStrength(options) <= UCOL_TERTIARY) { return UCOL_EQUAL; }
439 options &= 0xffff; // needed for CollationSettings::getStrength() to work
550 if(CollationSettings::getStrength(options) >= UCOL_SECONDARY) {
626 UBool strengthIsPrimary = CollationSettings::getStrength(options) == UCOL_PRIMARY;
675 if(CollationSettings::getStrength(options) <= UCOL_SECONDARY) { return UCOL_EQUAL; }
734 if(CollationSettings::getStrength(options) <= UCOL_TERTIARY) { return UCOL_EQUAL;
    [all...]
rulebasedcollator.cpp 415 return (UColAttributeValue)settings->getStrength();
    [all...]
collationkeys.cpp 234 uint32_t levels = levelMasks[CollationSettings::getStrength(options)];
406 if((CollationSettings::getStrength(options) == UCOL_PRIMARY) ?
coleitr.cpp 309 UColAttributeValue s = (UColAttributeValue)rbc_->settings->getStrength();
coll.cpp 918 Collator::getStrength(void) const {
  /libcore/luni/src/main/java/libcore/icu/
RuleBasedCollatorICU.java 78 public int getStrength() {
143 getStrength() == rhs.getStrength() &&
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
DESedeKeyGenerator.java 22 this.strength = (param.getStrength() + 7) / 8;
RSAKeyPairGenerator.java 35 int strength = param.getStrength();
106 if (n.bitLength() == param.getStrength())
  /libcore/luni/src/main/java/java/text/
Collator.java 300 public int getStrength() {
301 return strength_ICU_Java(icuColl.getStrength());
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
RuleBasedCollatorTest.java 62 assertEquals(coll.getStrength(), clone.getStrength());
69 assertEquals(Collator.TERTIARY, coll.getStrength());
197 assertEquals(i, coll.getStrength());
CollatorTest.java 173 assertTrue("Wrong strength", c1.getStrength() == Collator.TERTIARY);
210 assertTrue("Wrong default", collator.getStrength() == Collator.TERTIARY);
  /external/chromium_org/third_party/icu/source/test/intltest/
apicoll.cpp 92 // ctor, dtor, createInstance, compare, getStrength/setStrength
169 logln("testing Collator::getStrength() method ...");
170 doAssert((col->getStrength() == Collator::TERTIARY), "collation object has the wrong strength");
171 doAssert((col->getStrength() != Collator::PRIMARY), "collation object's strength is primary difference");
176 doAssert((col->getStrength() != Collator::TERTIARY), "collation object's strength is secondary difference");
177 doAssert((col->getStrength() != Collator::PRIMARY), "collation object's strength is primary difference");
178 doAssert((col->getStrength() == Collator::SECONDARY), "collation object has the wrong strength");
210 logln("testing Collator::getStrength() method again ...");
211 doAssert((col->getStrength() != Collator::TERTIARY), "collation object has the wrong strength");
212 doAssert((col->getStrength() == Collator::PRIMARY), "collation object's strength is not primary difference")
    [all...]
  /external/icu/icu4c/source/test/intltest/
apicoll.cpp 60 // ctor, dtor, createInstance, compare, getStrength/setStrength
137 logln("testing Collator::getStrength() method ...");
138 doAssert((col->getStrength() == Collator::TERTIARY), "collation object has the wrong strength");
139 doAssert((col->getStrength() != Collator::PRIMARY), "collation object's strength is primary difference");
144 doAssert((col->getStrength() != Collator::TERTIARY), "collation object's strength is secondary difference");
145 doAssert((col->getStrength() != Collator::PRIMARY), "collation object's strength is primary difference");
146 doAssert((col->getStrength() == Collator::SECONDARY), "collation object has the wrong strength");
187 logln("testing Collator::getStrength() method again ...");
188 doAssert((col->getStrength() != Collator::TERTIARY), "collation object has the wrong strength");
189 doAssert((col->getStrength() == Collator::PRIMARY), "collation object's strength is not primary difference")
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
coll.h 609 virtual ECollationStrength getStrength(void) const;
625 * @see Collator#getStrength
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
coll.h 586 virtual ECollationStrength getStrength(void) const;
602 * @see Collator#getStrength
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
UriPermission.java 230 public int getStrength(int modeFlags) {
  /external/chromium_org/third_party/icu/source/i18n/
coll.cpp 845 Collator::getStrength(void) const {
  /external/google-tv-pairing-protocol/java/jar/
bcprov-jdk15-143.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 

Completed in 817 milliseconds

1 2