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

1 2 3 4

  /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()
  /hardware/interfaces/audio/effect/2.0/
IBassBoostEffect.hal 47 getStrength() generates (Result retval, uint16_t strength);
IVirtualizerEffect.hal 47 getStrength() generates (Result retval, uint16_t strength);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
DESedeKeyGenerator.java 24 this.strength = (param.getStrength() + 7) / 8;
RSAKeyPairGenerator.java 28 this.iterations = getNumberOfIterations(this.param.getStrength(), this.param.getCertainty());
39 int strength = param.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());
99 assertEquals(Collator.TERTIARY, coll.getStrength());
  /external/icu/icu4c/source/i18n/
collationsettings.h 147 static int32_t getStrength(int32_t options) {
151 int32_t getStrength() const {
152 return getStrength(options);
collationcompare.cpp 112 if(CollationSettings::getStrength(options) >= UCOL_SECONDARY) {
186 int32_t strength = CollationSettings::getStrength(options);
250 if(CollationSettings::getStrength(options) <= UCOL_SECONDARY) { return UCOL_EQUAL; }
302 if(CollationSettings::getStrength(options) <= UCOL_TERTIARY) { return UCOL_EQUAL; }
collationfastlatin.cpp 120 options &= 0xffff; // needed for CollationSettings::getStrength() to work
215 if(CollationSettings::getStrength(options) >= UCOL_SECONDARY) {
291 UBool strengthIsPrimary = CollationSettings::getStrength(options) == UCOL_PRIMARY;
340 if(CollationSettings::getStrength(options) <= UCOL_SECONDARY) { return UCOL_EQUAL; }
399 if(CollationSettings::getStrength(options) <= UCOL_TERTIARY) { return UCOL_EQUAL; }
456 options &= 0xffff; // needed for CollationSettings::getStrength() to work
566 if(CollationSettings::getStrength(options) >= UCOL_SECONDARY) {
642 UBool strengthIsPrimary = CollationSettings::getStrength(options) == UCOL_PRIMARY;
691 if(CollationSettings::getStrength(options) <= UCOL_SECONDARY) { return UCOL_EQUAL; }
750 if(CollationSettings::getStrength(options) <= UCOL_TERTIARY) { return UCOL_EQUAL;
    [all...]
  /external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
CollatorICU.java 82 if (fIcuCollator.getStrength() == Collator.IDENTICAL) {
100 public int getStrength() {
102 int icuStrength = fIcuCollator.getStrength();
  /libcore/ojluni/src/main/java/java/text/
Collator.java 132 * @see java.text.Collator#getStrength
142 * @see java.text.Collator#getStrength
151 * @see java.text.Collator#getStrength
319 public synchronized int getStrength()
323 int value = icuColl.getStrength();
332 * @see java.text.Collator#getStrength
PatternEntry.java 94 final int getStrength() {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Renderer/Renderable/
Light.java 50 public float getStrength() {
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationCompare.java 102 if (CollationSettings.getStrength(options) >= Collator.SECONDARY) {
180 int strength = CollationSettings.getStrength(options);
246 if (CollationSettings.getStrength(options) <= Collator.SECONDARY) {
300 if (CollationSettings.getStrength(options) <= Collator.TERTIARY) {
CollationSettings.java 333 static int getStrength(int options) {
337 public int getStrength() {
338 return getStrength(options);
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationCompare.java 98 if (CollationSettings.getStrength(options) >= Collator.SECONDARY) {
176 int strength = CollationSettings.getStrength(options);
242 if (CollationSettings.getStrength(options) <= Collator.SECONDARY) {
296 if (CollationSettings.getStrength(options) <= Collator.TERTIARY) {
CollationSettings.java 331 static int getStrength(int options) {
335 public int getStrength() {
336 return getStrength(options);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
RuleBasedCollatorTest.java 56 assertEquals(coll.getStrength(), clone.getStrength());
63 assertEquals(Collator.TERTIARY, coll.getStrength());
191 assertEquals(i, coll.getStrength());
CollatorTest.java 173 assertTrue("Wrong strength", c1.getStrength() == Collator.TERTIARY);
210 assertTrue("Wrong default", collator.getStrength() == Collator.TERTIARY);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
CollationAPITest.java 98 if (col.getStrength() != Collator.TERTIARY){
481 logln("testing Collator.getStrength() method ...");
482 doAssert((col.getStrength() == Collator.TERTIARY), "collation object has the wrong strength");
483 doAssert((col.getStrength() != Collator.PRIMARY), "collation object's strength is primary difference");
487 doAssert((col.getStrength() != Collator.TERTIARY), "collation object's strength is secondary difference");
488 doAssert((col.getStrength() != Collator.PRIMARY), "collation object's strength is primary difference");
489 doAssert((col.getStrength() == Collator.SECONDARY), "collation object has the wrong strength");
510 logln("testing Collator.getStrength() method again ...");
511 doAssert((col.getStrength() != Collator.TERTIARY), "collation object has the wrong strength");
512 doAssert((col.getStrength() == Collator.PRIMARY), "collation object's strength is not primary difference")
    [all...]
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
CollationAPITest.java 97 if (col.getStrength() != Collator.TERTIARY){
480 logln("testing Collator.getStrength() method ...");
481 doAssert((col.getStrength() == Collator.TERTIARY), "collation object has the wrong strength");
482 doAssert((col.getStrength() != Collator.PRIMARY), "collation object's strength is primary difference");
486 doAssert((col.getStrength() != Collator.TERTIARY), "collation object's strength is secondary difference");
487 doAssert((col.getStrength() != Collator.PRIMARY), "collation object's strength is primary difference");
488 doAssert((col.getStrength() == Collator.SECONDARY), "collation object has the wrong strength");
509 logln("testing Collator.getStrength() method again ...");
510 doAssert((col.getStrength() != Collator.TERTIARY), "collation object has the wrong strength");
511 doAssert((col.getStrength() == Collator.PRIMARY), "collation object's strength is not primary difference")
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
Collator.java 148 * @see #getStrength
160 * @see #getStrength
172 * @see #getStrength
186 * @see #getStrength
257 * @see #getStrength
733 public int getStrength()
735 return collator.getStrength();
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/
CollatorTest.java 124 * Test method for 'com.ibm.icu.text.Collator.getStrength()'
129 assertEquals(Collator.PRIMARY, c.getStrength());
131 assertEquals(Collator.SECONDARY, c.getStrength());

Completed in 5238 milliseconds

1 2 3 4