HomeSort by relevance Sort by last modified time
    Searched defs:csd (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/third_party/icu/source/samples/csdet/
csdet.c 30 UCharsetDetector* csd; local
51 csd = ucsdet_open(&status);
52 ucsdet_setText(csd, buffer, inputLength, &status);
54 csm = ucsdet_detectAll(csd, &matchCount, &status);
68 ucsdet_close(csd);
  /external/icu/icu4c/source/samples/csdet/
csdet.c 30 UCharsetDetector* csd; local
51 csd = ucsdet_open(&status);
52 ucsdet_setText(csd, buffer, inputLength, &status);
54 csm = ucsdet_detectAll(csd, &matchCount, &status);
68 ucsdet_close(csd);
  /external/chromium_org/third_party/icu/source/i18n/
ucsdet.cpp 38 CharsetDetector* csd = new CharsetDetector(*status); local
41 delete csd;
42 csd = NULL;
45 return (UCharsetDetector *) csd;
51 CharsetDetector *csd = (CharsetDetector *) ucsd; local
52 delete csd;
123 CharsetDetector *csd = (CharsetDetector *) ucsd; local
125 return (const UCharsetMatch**)csd->detectAll(*maxMatchesFound,*status);
129 // ucsdet_getDetectableCharsetName(const UCharsetDetector *csd, int32_t index, UErrorCode *status)
134 // return csd->getCharsetName(index,*status)
165 CharsetDetector *csd = (CharsetDetector *) ucsd; local
    [all...]
  /external/icu/icu4c/source/i18n/
ucsdet.cpp 38 CharsetDetector* csd = new CharsetDetector(*status); local
41 delete csd;
42 csd = NULL;
45 return (UCharsetDetector *) csd;
51 CharsetDetector *csd = (CharsetDetector *) ucsd; local
52 delete csd;
123 CharsetDetector *csd = (CharsetDetector *) ucsd; local
125 return (const UCharsetMatch**)csd->detectAll(*maxMatchesFound,*status);
129 // ucsdet_getDetectableCharsetName(const UCharsetDetector *csd, int32_t index, UErrorCode *status)
134 // return csd->getCharsetName(index,*status)
165 CharsetDetector *csd = (CharsetDetector *) ucsd; local
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
ucsdetst.c 93 UCharsetDetector *csd = ucsdet_open(&status); local
94 UEnumeration *e = ucsdet_getAllDetectableCharsets(csd, &status);
113 ucsdet_close(csd);
126 UCharsetDetector *csd = ucsdet_open(&status); local
133 ucsdet_setText(csd, bytes, byteLength, &status);
139 match = ucsdet_detect(csd, &status);
152 ucsdet_setDeclaredEncoding(csd, "UTF-8", 5, &status); /* for coverage */
156 ucsdet_close(csd);
172 UCharsetDetector *csd = ucsdet_open(&status); local
177 ucsdet_setText(csd, beBytes, beLength, &status)
235 UCharsetDetector *csd = ucsdet_open(&status); local
288 UCharsetDetector *csd = ucsdet_open(&status); local
393 UCharsetDetector *csd = ucsdet_open(&status); local
478 UCharsetDetector *csd = ucsdet_open(&status); local
556 UCharsetDetector *csd = ucsdet_open(&status); local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
ucsdetst.c 93 UCharsetDetector *csd = ucsdet_open(&status); local
94 UEnumeration *e = ucsdet_getAllDetectableCharsets(csd, &status);
113 ucsdet_close(csd);
126 UCharsetDetector *csd = ucsdet_open(&status); local
133 ucsdet_setText(csd, bytes, byteLength, &status);
139 match = ucsdet_detect(csd, &status);
152 ucsdet_setDeclaredEncoding(csd, "UTF-8", 5, &status); /* for coverage */
156 ucsdet_close(csd);
172 UCharsetDetector *csd = ucsdet_open(&status); local
177 ucsdet_setText(csd, beBytes, beLength, &status)
235 UCharsetDetector *csd = ucsdet_open(&status); local
288 UCharsetDetector *csd = ucsdet_open(&status); local
393 UCharsetDetector *csd = ucsdet_open(&status); local
478 UCharsetDetector *csd = ucsdet_open(&status); local
556 UCharsetDetector *csd = ucsdet_open(&status); local
    [all...]
  /development/ndk/platforms/android-3/include/linux/mmc/
card.h 68 struct mmc_csd csd; member in struct:mmc_card
  /external/chromium_org/media/base/android/
media_codec_bridge.cc 617 uint8 csd[kCsdLength]; local
618 csd[0] = profile << 3 | frequency_index >> 1;
619 csd[1] = (frequency_index & 0x01) << 7 | channel_config << 3;
621 base::android::ToJavaByteArray(env, csd, kCsdLength);
  /external/chromium_org/third_party/icu/source/test/intltest/
csdetest.cpp 169 LocalUCharsetDetectorPointer csd(ucsdet_open(&status));
181 ucsdet_setText(csd.getAlias(), bytes, byteLength, &status);
184 const UCharsetMatch **matches = ucsdet_detectAll(csd.getAlias(), &matchCount, &status);
258 LocalUCharsetDetectorPointer csd(ucsdet_open(status));
259 LocalUEnumerationPointer e(ucsdet_getAllDetectableCharsets(csd.getAlias(), status));
285 LocalUEnumerationPointer eActive(ucsdet_getDetectableCharsets(csd.getAlias(), status));
329 UCharsetDetector *csd = ucsdet_open(&status); local
333 ucsdet_setText(csd, bytes, byteLength, &status);
334 match = ucsdet_detect(csd, &status);
347 ucsdet_setDeclaredEncoding(csd, "UTF-8", 5, &status); /* for coverage *
369 UCharsetDetector *csd = ucsdet_open(&status); local
429 UCharsetDetector *csd = ucsdet_open(&status); local
497 UCharsetDetector *csd = ucsdet_open(&status); local
638 UCharsetDetector *csd = ucsdet_open(&status); local
726 UCharsetDetector *csd = ucsdet_open(&status); local
780 UCharsetDetector *csd = ucsdet_open(&status); local
    [all...]
  /external/icu/icu4c/source/test/intltest/
csdetest.cpp 169 LocalUCharsetDetectorPointer csd(ucsdet_open(&status));
181 ucsdet_setText(csd.getAlias(), bytes, byteLength, &status);
184 const UCharsetMatch **matches = ucsdet_detectAll(csd.getAlias(), &matchCount, &status);
258 LocalUCharsetDetectorPointer csd(ucsdet_open(status));
259 LocalUEnumerationPointer e(ucsdet_getAllDetectableCharsets(csd.getAlias(), status));
285 LocalUEnumerationPointer eActive(ucsdet_getDetectableCharsets(csd.getAlias(), status));
329 UCharsetDetector *csd = ucsdet_open(&status); local
333 ucsdet_setText(csd, bytes, byteLength, &status);
334 match = ucsdet_detect(csd, &status);
347 ucsdet_setDeclaredEncoding(csd, "UTF-8", 5, &status); /* for coverage *
369 UCharsetDetector *csd = ucsdet_open(&status); local
429 UCharsetDetector *csd = ucsdet_open(&status); local
497 UCharsetDetector *csd = ucsdet_open(&status); local
638 UCharsetDetector *csd = ucsdet_open(&status); local
726 UCharsetDetector *csd = ucsdet_open(&status); local
780 UCharsetDetector *csd = ucsdet_open(&status); local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/
coff-objfmt.c 203 /*@dependent@*/ coff_section_data *csd; member in struct:coff_objfmt_output_info
436 /*@dependent@*/ /*@null@*/ coff_section_data *csd; local
439 csd = yasm_section_get_data(sect, &coff_section_data_cb);
440 assert(csd != NULL);
442 csd->addr = info->addr;
497 int nobase = info->csd->flags2 & COFF_FLAG_NOBASE;
676 info->csd->nreloc++;
735 info->csd->size += size;
766 /*@dependent@*/ /*@null@*/ coff_section_data *csd; local
772 csd = yasm_section_get_data(sect, &coff_section_data_cb)
889 \/*@dependent@*\/ \/*@null@*\/ coff_section_data *csd; local
1298 coff_section_data *csd; local
1412 coff_section_data *csd; local
1629 coff_section_data *csd = (coff_section_data *)data; local
1666 coff_symrec_data *csd = (coff_symrec_data *)data; local
1698 coff_section_data *csd; local
1752 coff_section_data *csd; local
2252 coff_section_data *csd; local
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
DecoderTest.java 57 private static final String[] CSD_KEYS = new String[] { "csd-0", "csd-1" };
112 mFormat.setByteBuffer("csd-0", ByteBuffer.wrap( new byte [] {0x13, 0x10} ));
799 ByteBuffer csd = (ByteBuffer) format.getByteBuffer(csdKey).rewind() local
    [all...]

Completed in 1330 milliseconds