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

1 2

  /frameworks/base/tools/localize/
ValuesFile_test.cpp 14 string canonical = vf->ToString(); local
27 printf("XML:[[%s]]\n", canonical.c_str());
45 if (canonical != EXPECTED) {
47 fprintf(stderr, "canonical=[[%s]]\n", canonical.c_str());
  /packages/apps/Email/src/org/apache/james/mime4j/util/
CharsetUtil.java 49 * <td>Canonical (Java) name</td>
797 private String canonical = null; field in class:CharsetUtil.Charset
801 private Charset(String canonical, String mime, String[] aliases) {
802 this.canonical = canonical;
809 return this.canonical.compareTo(c.canonical);
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
srchtest.h 49 USearchAttributeValue canonical,
tzfmttst.cpp 174 UnicodeString canonical; local
175 TimeZone::getCanonicalID(*tzid, canonical, status);
180 } else if (outtzid != canonical) {
181 // Canonical ID did not match - check the rules
183 if (canonical.indexOf((UChar)0x27 /*'/'*/) == -1) {
185 logln("Canonical round trip failed (as expected); tz=" + *tzid
190 errln("Canonical round trip failed; tz=" + *tzid
352 UnicodeString canonical; local
353 TimeZone::getCanonicalID(*tzid, canonical, status);
359 if (*tzid != canonical) {
    [all...]
  /external/emma/core/java12/com/vladium/util/
IPathEnumerator.java 68 public static IPathEnumerator create (final File [] path, final boolean canonical, final IPathHandler handler)
70 return new PathEnumerator (path, canonical, handler);
124 PathEnumerator (final File [] path, final boolean canonical, final IPathHandler handler)
129 m_canonical = canonical;
141 m_pathSet.add (path [p].getPath ()); // set of [possibly canonical] paths
Files.java 76 * entries are removed. The definition of duplicates depends on 'canonical':
78 * <li> if 'canonical'=true, the pathnames are canonicalized via {@link #canonicalizePathname}
80 * <li> if 'canonical'=false, the pathnames are compared as case-sensitive strings
88 public static File [] pathToFiles (final String [] path, final boolean canonical)
108 if (canonical) pathname = canonicalizePathname (pathname);
124 * Converts 'pathname' into the canonical OS form. This wrapper function
  /external/icu4c/test/intltest/
srchtest.h 49 USearchAttributeValue canonical,
tzfmttst.cpp 175 UnicodeString canonical; local
176 TimeZone::getCanonicalID(*tzid, canonical, status);
181 } else if (outtzid != canonical) {
182 // Canonical ID did not match - check the rules
184 if (canonical.indexOf((UChar)0x27 /*'/'*/) == -1) {
186 logln("Canonical round trip failed (as expected); tz=" + *tzid
191 errln("Canonical round trip failed; tz=" + *tzid
334 UnicodeString canonical; local
335 TimeZone::getCanonicalID(*tzid, canonical, status);
341 if (*tzid != canonical) {
    [all...]
  /external/srec/portable/src/
PFileSystem.c 158 LCHAR canonical[P_PATH_MAX]; local
167 LSTRCPY(canonical, path);
168 CHKLOG(rc, PFileSystemCanonicalSlashes(canonical));
170 *isAbsolute = (canonical[0] == '/' ||
171 (LISALPHA(canonical[0]) && canonical[1] == ':' && canonical[2] == '/'));
  /external/icu4c/i18n/
zonemeta.cpp 189 const UChar *canonical = TimeZone::dereferOlsonLink(tzid); local
190 if (canonical != NULL) {
191 // check canonical mapping in CLDR
193 int32_t len = u_strlen(canonical);
195 u_UCharsToChars(canonical, id, len + 1 /* include the terminator */);
211 // canonical map found
212 canonical = cldrCanonical;
217 if (canonical == NULL) {
221 systemID.setTo(canonical);
240 // Get canonical country for the zon
308 UnicodeString canonical, tmp; local
    [all...]
ucal.cpp 518 UnicodeString canonical; local
520 TimeZone::getCanonicalID(UnicodeString(id, len), canonical, systemID, *status); local
525 reslen = canonical.extract(result, resultCapacity, *status);
  /external/emma/core/java12/com/vladium/emma/report/
SourcePathCache.java 171 final String canonical = canonicalizeExtension (extension); local
176 m_extension = canonical;
  /external/emma/core/java12/com/vladium/emma/instr/
InstrProcessor.java 53 * @param canonical
55 public synchronized final void setInstrPath (final String [] path, final boolean canonical)
60 m_instrPath = Files.pathToFiles (path, canonical);
62 m_canonical = canonical;
  /external/chromium/googleurl/src/
gurl.cc 47 // The input spec is given, and the canonical version will be placed in
48 // |*canonical|, along with the parsing of the canonical spec in |*parsed|.
51 std::string* canonical,
55 canonical->reserve(input_spec.size() + 32);
56 url_canon::StdStringCanonOutput output(canonical);
130 // For testing purposes, check that the parsed canonical URL is identical to
288 // We could optimize this since we know that the URL is canonical, and we are
289 // appending a canonical path, so avoiding re-parsing.
340 DCHECK(parsed_.path.len > 0) << "Canonical path for requests should be non-empty"
    [all...]
  /external/emma/core/java12/com/vladium/emma/rt/
ClassPathProcessorST.java 287 ClassPathProcessorST (final File [] path, final boolean canonical,
295 m_canonical = canonical;
AppRunner.java 112 * @param canonical
114 public synchronized void setCoveragePath (String [] path, final boolean canonical)
119 m_coveragePath = Files.pathToFiles (path, canonical);
121 m_canonical = canonical;
    [all...]
  /external/chromium/third_party/icu/source/common/
uloc_tag.c 2115 char canonical[256]; local
    [all...]
  /external/icu4c/common/
uloc_tag.c 780 /* look up the canonical type */
1100 the canonical format is lowercase in BCP47 */
2150 char canonical[256]; local
    [all...]
  /external/chromium/third_party/icu/source/i18n/
ucal.cpp 515 UnicodeString canonical; local
517 TimeZone::getCanonicalID(UnicodeString(id, len), canonical, systemID, *status); local
522 reslen = canonical.extract(result, resultCapacity, *status);
zonemeta.cpp 199 static const char gCanonicalTag[] = "canonical";
325 const UChar *canonical = ures_getStringByKey(tzitem, gCanonicalTag, &canonicalLen, &status); local
338 // Create canonical map entry
344 entry->id = canonical;
353 uhash_put(canonicalMap, (UChar*)canonical, entry, &status);
372 // Create canonical map entry for this alias
378 entry->id = canonical;
448 // Set dereferenced zone ID as the canonical ID
534 // Walk through all canonical tzids
544 // contains only canonical IDs. For now, tr
    [all...]
  /external/protobuf/java/src/test/java/com/google/protobuf/
TextFormatTest.java 315 String canonical = "repeated_float: Infinity\n" + local
329 assertEquals(canonical, builder.build().toString());
  /external/bluetooth/glib/glib/
gutf8.c 417 const char *canonical; local
424 canonical = aliases;
427 alias_array = g_hash_table_lookup (alias_hash, canonical);
438 g_hash_table_insert (alias_hash, (char *)canonical, alias_array);
448 * the charsets that are aliases for the canonical name.
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
real.h 55 unsigned int canonical : 1;
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
real.h 55 unsigned int canonical : 1;
  /external/bluetooth/glib/gio/
glocalfile.c 1386 char *resolved, *canonical, *parent, *link2; local
    [all...]

Completed in 2546 milliseconds

1 2