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

1 2

  /ndk/sources/host-tools/make-3.81/tests/scripts/targets/
SECONDARY 3 $description = "Test the behaviour of the .SECONDARY target.";
6 Test the behavior of the .SECONDARY special target.
8 intermediate, then specify it as .SECONDARY. Build and note that it's
11 Change the original and ensure that the secondary file and the ultimate
12 target are both rebuilt, and that the secondary file is not deleted.
20 .SECONDARY: foo.e
84 # TEST #7 -- test the "global" .SECONDARY, with no targets.
91 .SECONDARY:
112 # TEST #8 -- test the "global" .SECONDARY, with .PHONY.
117 .SECONDARY
    [all...]
  /libcore/luni/src/main/java/java/text/
Collator.java 40 * <li>SECONDARY strength: Accents in the characters are considered secondary
42 * between letters can also be considered secondary differences, depending on
43 * the language. A secondary difference is ignored when there is a primary
50 * when there is a primary or secondary difference anywhere in the strings.
136 public static final int SECONDARY = 1;
297 * @return the strength value, either PRIMARY, SECONDARY, TERTIARY or
326 * the strength value, either PRIMARY, SECONDARY, TERTIARY, or
362 case Collator.SECONDARY:
379 javaValue = Collator.SECONDARY;
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
CollatorTest.java 32 collator.setStrength(Collator.SECONDARY);
33 assertEquals(Collator.SECONDARY, collator.getStrength());
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
NameNormalizer.java 54 sCachedComplexityCollator.setStrength(Collator.SECONDARY);
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
CollatorTest.java 49 assertTrue("a) Failed on secondary difference", c.compare(o, o2) < 0);
68 assertTrue("b) Failed on secondary difference", c.compare(o, o2) < 0);
79 c.setStrength(Collator.SECONDARY);
85 assertTrue("c) Failed on secondary difference", c.compare(o, o2) < 0);
102 assertEquals("d) Failed on secondary difference", 0, c.compare(o, o2));
129 c2.setStrength(Collator.SECONDARY);
141 assertTrue("a) Failed on secondary difference", !c
149 assertTrue("b) Failed on secondary difference", !c
155 c.setStrength(Collator.SECONDARY);
157 assertTrue("c) Failed on secondary difference", !
    [all...]
  /hardware/libhardware_legacy/wifi/
wifi.c 41 * SECONDARY refers to an optional connection on a p2p interface
47 #define SECONDARY 1
704 return wifi_connect_on_socket_path(SECONDARY, path);
753 if (index == SECONDARY) {
822 return wifi_wait_on_socket(SECONDARY, buf, buflen);
860 TEMP_FAILURE_RETRY(write(exit_sockets[SECONDARY][0], "T", 1));
881 return wifi_send_command(SECONDARY, command, reply, reply_len);
  /external/icu4c/test/intltest/
allcoll.cpp 77 /* test secondary > 26 */
123 myCollation->setStrength(Collator::SECONDARY);
167 /* result is 1, secondary differences only for ignorable space characters*/
170 errln("Comparing two strings with only secondary differences in C failed.\n");
mnkytst.cpp 99 myCollator->setStrength(Collator::SECONDARY);
102 result = collationKey1.compareTo(collationKey2); // Secondary
103 revResult = collationKey2.compareTo(collationKey1); // Secondary
169 myCollator->setStrength(Collator::SECONDARY);
170 result = myCollator->compare(subs, subt); // Secondary
171 revResult = myCollator->compare(subt, subs); // Secondary
frcoll.cpp 164 myCollation->setStrength(Collator::SECONDARY);
jacoll.cpp 131 myCollation->setStrength(Collator::SECONDARY);
regcoll.cpp 209 c->setStrength(Collator::SECONDARY);
349 String[] secondary = {
354 static const UChar secondary[][CollationRegressionTest::MAX_TOKEN_LEN] = local
361 compareArray(*c, secondary, ARRAY_LENGTH(secondary));
368 // Secondary/Tertiary comparison incorrect in French Secondary
385 c->setStrength(Collator::SECONDARY);
449 // French secondary collation checking at the end of compare iteration fails
465 c->setStrength(Collator::SECONDARY);
    [all...]
apicoll.cpp 175 col->setStrength(Collator::SECONDARY);
176 doAssert((col->getStrength() != Collator::TERTIARY), "collation object's strength is secondary difference");
178 doAssert((col->getStrength() == Collator::SECONDARY), "collation object has the wrong strength");
225 doAssert((col->getStrength() != Collator::SECONDARY), "collation object's strength is secondary difference");
638 col->setStrength(Collator::SECONDARY);
723 CollationElementIterator::secondaryOrder(order3)), "The secondary orders should be the same");
741 /* NO! Secondary orders of two CEs are not related, especially in the case of '_' vs 'I' */
744 CollationElementIterator::secondaryOrder(order3)), "The secondary orders should not be the same");
778 CollationElementIterator::secondaryOrder(order3)), "The secondary orders should be the same")
    [all...]
itercoll.cpp 565 coll->setStrength(Collator::SECONDARY);
567 errln("Strength order for a secondary strength collator should be the third byte");
encoll.cpp 180 /* test secondary > 43 */
293 myCollation->setStrength(Collator::SECONDARY);
srchtest.cpp 246 return Collator::SECONDARY;
    [all...]
  /external/icu4c/i18n/unicode/
coll.h 123 * Five strengths are provided: <code>PRIMARY</code>, <code>SECONDARY</code>,
127 * while "e" and "\u00EA" are secondary differences, "e" and "E" are tertiary
165 * and the way in which secondary and tertiary differences are taken into
184 * PRIMARY to ignore secondary and tertiary differences.<br>
188 * Diacritical differences on the same base letter represent a secondary
189 * difference. Set comparison level to SECONDARY to ignore tertiary
191 * Example of secondary difference, "&auml;" >> "a".
210 SECONDARY = UCOL_SECONDARY, // 1
602 * <p>E.g. with strength == SECONDARY, the tertiary difference is ignored
603 * <p>E.g. with strength == PRIMARY, the secondary and tertiary differenc
    [all...]
  /frameworks/base/services/java/com/android/server/
NetworkManagementService.java 102 private static final String SECONDARY = "secondary";
627 modifyRoute(interfaceName, ADD, route, SECONDARY);
633 modifyRoute(interfaceName, REMOVE, route, SECONDARY);
    [all...]
  /external/smack/src/org/xbill/DNS/
Zone.java 22 /** A secondary zone */
23 public static final int SECONDARY = 2;
  /prebuilts/tools/common/m2/internal/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/5/
android.jar 

Completed in 792 milliseconds

1 2