HomeSort by relevance Sort by last modified time
    Searched refs:fcd (Results 1 - 21 of 21) sorted by null

  /developers/build/
build.gradle 204 eachFile { FileCopyDetails fcd ->
205 if (fcd.file.isFile()) {
206 def filename = fcd.name;
207 String collapsed = collapsedPaths.get(fcd.file.path);
208 fcd.path = "src/${collapsed}";
209 } else {fcd.exclude()}
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_cgi.py 137 fcd = cgi.FormContentDict(env)
142 self.assertEqual(len(expect), len(fcd))
143 self.assertItemsEqual(expect.keys(), fcd.keys())
144 self.assertItemsEqual(expect.values(), fcd.values())
145 self.assertItemsEqual(expect.items(), fcd.items())
146 self.assertEqual(fcd.get("nonexistent field", "default"), "default")
153 self.assertTrue(fcd.has_key(key))
154 self.assertItemsEqual(fcd[key], expect[key])
155 self.assertEqual(fcd.get(key, "default"), fcd[key]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_cgi.py 137 fcd = cgi.FormContentDict(env)
142 self.assertEqual(len(expect), len(fcd))
143 self.assertItemsEqual(expect.keys(), fcd.keys())
144 self.assertItemsEqual(expect.values(), fcd.values())
145 self.assertItemsEqual(expect.items(), fcd.items())
146 self.assertEqual(fcd.get("nonexistent field", "default"), "default")
153 self.assertTrue(fcd.has_key(key))
154 self.assertItemsEqual(fcd[key], expect[key])
155 self.assertEqual(fcd.get(key, "default"), fcd[key]
    [all...]
  /external/chromium_org/third_party/icu/source/common/
normalizer2impl.h 549 * Get access to the internal FCD trie table to be able to perform
550 * incremental, per-code unit, FCD checks in collation.
553 * Code points at fcdHighStart and above have a zero FCD value.
561 * Get the FCD value for a code unit, with
566 * then some of c's associated supplementary code points have a non-zero FCD value.
577 * Get the FCD value of the next code point (post-increment), with
587 uint16_t fcd=fcdTrieIndex[_UTRIE2_INDEX_FROM_U16_SINGLE_LEAD(fcdTrieIndex, c)]; local
588 if(fcd!=0 && U16_IS_LEAD(c)) {
594 fcd=fcdTrieIndex[_UTRIE2_INDEX_FROM_SUPP(fcdTrieIndex, c)];
596 fcd=0
617 uint16_t fcd; local
    [all...]
normalizer2.cpp 354 Norm2AllModes() : comp(impl, FALSE), decomp(impl), fcd(impl), fcc(impl, TRUE) {}
359 FCDNormalizer2 fcd; member in struct:Norm2AllModes
456 return &allModes->fcd;
613 return &allModes->fcd;
  /external/chromium_org/third_party/icu/source/test/intltest/
normconf.cpp 303 UnicodeString out, fcd; local
396 // test FCD quick check and "makeFCD"
397 Normalizer::normalize(field[0], UNORM_FCD, options, fcd, status);
398 if(UNORM_NO == Normalizer::quickCheck(fcd, UNORM_FCD, options, status)) {
399 errln("Normalizer error: quickCheck(FCD(s), UNORM_FCD) is UNORM_NO");
411 Normalizer::normalize(fcd, UNORM_NFD, options, out, status);
413 dataerrln("Normalizer error: NFD(FCD(s))!=NFD(s)");
  /external/icu4c/test/intltest/
normconf.cpp 303 UnicodeString out, fcd; local
396 // test FCD quick check and "makeFCD"
397 Normalizer::normalize(field[0], UNORM_FCD, options, fcd, status);
398 if(UNORM_NO == Normalizer::quickCheck(fcd, UNORM_FCD, options, status)) {
399 errln("Normalizer error: quickCheck(FCD(s), UNORM_FCD) is UNORM_NO");
411 Normalizer::normalize(fcd, UNORM_NFD, options, out, status);
413 dataerrln("Normalizer error: NFD(FCD(s))!=NFD(s)");
  /external/icu4c/common/
normalizer2.cpp 424 Norm2AllModes() : comp(impl, FALSE), decomp(impl), fcd(impl), fcc(impl, TRUE) {}
429 FCDNormalizer2 fcd; member in struct:Norm2AllModes
524 return allModes!=NULL ? &allModes->fcd : NULL;
692 return &allModes->fcd;
    [all...]
  /external/icu4c/i18n/
ucol_elm.cpp 746 uint16_t fcd; // Hi byte is lead combining class. lo byte is trailing combing class. local
768 fcd = 0;
773 fcd |= nfcImpl->getFCD16FromNormData(supp++);
777 fcd = nfcImpl->getFCD16(c);
779 if (fcd >= 0x100 || // if the leading combining class(c) > 0 ||
780 (U16_IS_LEAD(c) && fcd != 0)) {// c is a leading surrogate with some FCD data
782 uint32_t cClass = fcd & 0xff;
2045 int16_t fcd = context.nfcImpl->getFCD16(el.cPoints[j]); local
    [all...]
ucol.cpp 100 // init FCD data
1451 uint16_t fcd; local
1828 uint16_t fcd; local
    [all...]
ucol_bld.cpp 951 uint16_t fcd = nfcImpl->previousFCD16(el.cPoints, s); local
    [all...]
usearch.cpp 111 * Initializing the fcd tables.
126 * Gets the fcd value for a character at the argument index.
128 * @param str UTF16 string where character for fcd retrieval resides
129 * @param offset position of the character whose fcd is to be retrieved, to be
133 * @return fcd value
820 * The first composite character would have been taken care of by the fcd
822 * This is the slow path after the fcd of the first character and
1309 uint16_t fcd = getFCD(text, &temp, result); local
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
cnormtst.c 626 log_data_err("unorm_quickCheck(FCD) failed: expected value for fast unorm_quickCheck is UNORM_YES - (Are you missing data?)\n");
628 log_err("unorm_quickCheck(FCD) failed: expected value for error unorm_quickCheck is UNORM_NO\n");
630 log_data_err("unorm_quickCheck(FCD) failed: expected value for correct unorm_quickCheck is UNORM_YES - (Are you missing data?)\n");
633 log_data_err("unorm_quickCheck(FCD) failed: %s - (Are you missing data?)\n", u_errorName(status));
639 log_data_err("unorm_quickCheck(FCD) failed: exception occured at data set %d - (Are you missing data?)\n", count);
644 log_err("unorm_quickCheck(FCD) failed: Data set %d expected value %d\n", count,
671 log_data_err("unorm_quickCheck(FCD) failed: exception occured at data generation - (Are you missing data?)\n");
681 log_data_err("unorm_quickCheck(FCD) failed: exception occured at normalized data generation - (Are you missing data?)\n");
695 log_data_err("unorm_quickCheck(FCD) failed: expected %d for random data - (Are you missing data?)\n", testresult);
1155 fcd[]={ local
    [all...]
  /external/icu4c/test/cintltst/
cnormtst.c 630 log_data_err("unorm_quickCheck(FCD) failed: expected value for fast unorm_quickCheck is UNORM_YES - (Are you missing data?)\n");
632 log_err("unorm_quickCheck(FCD) failed: expected value for error unorm_quickCheck is UNORM_NO\n");
634 log_data_err("unorm_quickCheck(FCD) failed: expected value for correct unorm_quickCheck is UNORM_YES - (Are you missing data?)\n");
637 log_data_err("unorm_quickCheck(FCD) failed: %s - (Are you missing data?)\n", u_errorName(status));
643 log_data_err("unorm_quickCheck(FCD) failed: exception occured at data set %d - (Are you missing data?)\n", count);
648 log_err("unorm_quickCheck(FCD) failed: Data set %d expected value %d\n", count,
675 log_data_err("unorm_quickCheck(FCD) failed: exception occured at data generation - (Are you missing data?)\n");
685 log_data_err("unorm_quickCheck(FCD) failed: exception occured at normalized data generation - (Are you missing data?)\n");
699 log_data_err("unorm_quickCheck(FCD) failed: expected %d for random data - (Are you missing data?)\n", testresult);
1159 fcd[]={ local
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
ucol_elm.cpp 744 uint16_t fcd; // Hi byte is lead combining class. local
768 fcd = unorm_getFCD16(fcdTrieIndex, c);
769 if (fcd >= 0x100 || // if the leading combining class(c) > 0 ||
770 (UTF_IS_LEAD(c) && fcd != 0)) {// c is a leading surrogate with some FCD data
772 uint32_t cClass = fcd & 0xff;
2039 int16_t fcd = unorm_getFCD16(fcdTrieIndex, el.cPoints[j]); local
    [all...]
ucol.cpp 59 // Code points at fcdHighStart and above have a zero FCD value.
85 // init FCD data
1373 uint16_t fcd; local
1753 uint16_t fcd; local
    [all...]
ucol_bld.cpp 944 uint16_t fcd = unorm_prevFCD16(fcdTrieIndex, fcdHighStart, el.cPoints, s); local
    [all...]
usearch.cpp 111 * Initializing the fcd tables.
126 * Gets the fcd value for a character at the argument index.
128 * @param str UTF16 string where character for fcd retrieval resides
129 * @param offset position of the character whose fcd is to be retrieved, to be
133 * @return fcd value
820 * The first composite character would have been taken care of by the fcd
822 * This is the slow path after the fcd of the first character and
1309 uint16_t fcd = getFCD(text, &temp, result); local
    [all...]
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 
  /prebuilts/tools/common/m2/internal/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 

Completed in 549 milliseconds