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

1 2

  /external/chromium_org/third_party/icu/source/i18n/
csr2022.h 65 UBool match(InputText *textIn, CharsetMatch *results) const;
74 UBool match(InputText *textIn, CharsetMatch *results) const;
85 UBool match(InputText *textIn, CharsetMatch *results) const;
csrucode.cpp 32 UBool CharsetRecog_UTF_16_BE::match(InputText* textIn, CharsetMatch *results) const
34 const uint8_t *input = textIn->fRawInput;
36 int32_t length = textIn->fRawLength;
43 results->set(textIn, this, confidence);
57 UBool CharsetRecog_UTF_16_LE::match(InputText* textIn, CharsetMatch *results) const
59 const uint8_t *input = textIn->fRawInput;
61 int32_t length = textIn->fRawLength;
68 results->set(textIn, this, confidence);
77 UBool CharsetRecog_UTF_32::match(InputText* textIn, CharsetMatch *results) const
79 const uint8_t *input = textIn->fRawInput
    [all...]
csmatch.cpp 22 : textIn(NULL), confidence(0), fCharsetName(NULL), fLang(NULL)
30 textIn = input;
62 int32_t result = ucnv_toUChars(conv, buf, cap, (const char *) textIn->fRawInput, textIn->fRawLength, status);
csrecog.h 47 virtual UBool match(InputText *textIn, CharsetMatch *results) const = 0;
csrucode.h 39 UBool match(InputText* textIn, CharsetMatch *results) const = 0;
51 UBool match(InputText* textIn, CharsetMatch *results) const;
62 UBool match(InputText* textIn, CharsetMatch *results) const;
75 UBool match(InputText* textIn, CharsetMatch *results) const;
csr2022.cpp 146 UBool CharsetRecog_2022JP::match(InputText *textIn, CharsetMatch *results) const {
147 int32_t confidence = match_2022(textIn->fInputBytes,
148 textIn->fInputLen,
151 results->set(textIn, this, confidence);
161 UBool CharsetRecog_2022KR::match(InputText *textIn, CharsetMatch *results) const {
162 int32_t confidence = match_2022(textIn->fInputBytes,
163 textIn->fInputLen,
166 results->set(textIn, this, confidence);
176 UBool CharsetRecog_2022CN::match(InputText *textIn, CharsetMatch *results) const {
177 int32_t confidence = match_2022(textIn->fInputBytes
    [all...]
csmatch.h 34 InputText *textIn;
csdetect.h 24 InputText *textIn;
csdetect.cpp 149 : textIn(new InputText(status)), resultArray(NULL),
182 delete textIn;
197 textIn->setText(in, len);
216 textIn->setDeclaredEncoding(encoding,len);
243 if(!textIn->isSet()) {
251 textIn->MungeInput(fStripTags);
258 if (csr->match(textIn, resultArray[resultCount])) {
csrsbcs.cpp     [all...]
ucsdet.cpp 56 ucsdet_setText(UCharsetDetector *ucsd, const char *textIn, int32_t len, UErrorCode *status)
62 ((CharsetDetector *) ucsd)->setText(textIn, len);
csrmbcs.h 88 virtual UBool nextChar(IteratedChar *it, InputText *textIn) const = 0;
  /external/icu/icu4c/source/i18n/
csr2022.h 65 UBool match(InputText *textIn, CharsetMatch *results) const;
74 UBool match(InputText *textIn, CharsetMatch *results) const;
85 UBool match(InputText *textIn, CharsetMatch *results) const;
csmatch.cpp 22 : textIn(NULL), confidence(0), fCharsetName(NULL), fLang(NULL)
30 textIn = input;
62 int32_t result = ucnv_toUChars(conv, buf, cap, (const char *) textIn->fRawInput, textIn->fRawLength, status);
csrecog.h 47 virtual UBool match(InputText *textIn, CharsetMatch *results) const = 0;
csrucode.h 39 UBool match(InputText* textIn, CharsetMatch *results) const = 0;
51 UBool match(InputText* textIn, CharsetMatch *results) const;
62 UBool match(InputText* textIn, CharsetMatch *results) const;
75 UBool match(InputText* textIn, CharsetMatch *results) const;
csr2022.cpp 146 UBool CharsetRecog_2022JP::match(InputText *textIn, CharsetMatch *results) const {
147 int32_t confidence = match_2022(textIn->fInputBytes,
148 textIn->fInputLen,
151 results->set(textIn, this, confidence);
161 UBool CharsetRecog_2022KR::match(InputText *textIn, CharsetMatch *results) const {
162 int32_t confidence = match_2022(textIn->fInputBytes,
163 textIn->fInputLen,
166 results->set(textIn, this, confidence);
176 UBool CharsetRecog_2022CN::match(InputText *textIn, CharsetMatch *results) const {
177 int32_t confidence = match_2022(textIn->fInputBytes
    [all...]
csrucode.cpp 53 UBool CharsetRecog_UTF_16_BE::match(InputText* textIn, CharsetMatch *results) const
55 const uint8_t *input = textIn->fRawInput;
57 int32_t length = textIn->fRawLength;
74 results->set(textIn, this, confidence);
88 UBool CharsetRecog_UTF_16_LE::match(InputText* textIn, CharsetMatch *results) const
90 const uint8_t *input = textIn->fRawInput;
92 int32_t length = textIn->fRawLength;
112 results->set(textIn, this, confidence);
121 UBool CharsetRecog_UTF_32::match(InputText* textIn, CharsetMatch *results) const
123 const uint8_t *input = textIn->fRawInput
    [all...]
csmatch.h 34 InputText *textIn;
csdetect.h 24 InputText *textIn;
csdetect.cpp 149 : textIn(new InputText(status)), resultArray(NULL),
182 delete textIn;
197 textIn->setText(in, len);
216 textIn->setDeclaredEncoding(encoding,len);
243 if(!textIn->isSet()) {
251 textIn->MungeInput(fStripTags);
258 if (csr->match(textIn, resultArray[resultCount])) {
csrsbcs.cpp     [all...]
ucsdet.cpp 56 ucsdet_setText(UCharsetDetector *ucsd, const char *textIn, int32_t len, UErrorCode *status)
62 ((CharsetDetector *) ucsd)->setText(textIn, len);
  /external/chromium_org/third_party/skia/experimental/PdfViewer/
SkPdfFont.h 81 virtual bool decodeText(const SkUnencodedText& textIn, SkDecodedText* textOut) const = 0;
100 virtual bool decodeText(const SkUnencodedText& textIn, SkDecodedText* textOut) const {
101 // TODO(edisonn): SkASSERT(textIn.len % 2 == 0); or report error?
103 uint16_t* text = (uint16_t*)textIn.text;
104 textOut->text = new uint16_t[textIn.len / 2];
105 textOut->len = textIn.len / 2;
124 virtual bool decodeText(const SkUnencodedText& textIn, SkDecodedText* textOut) const {
125 // TODO(edisonn): SkASSERT(textIn.len % 2 == 0); or report error?
127 unsigned char* text = (unsigned char*)textIn.text;
128 textOut->text = new uint16_t[textIn.len]
    [all...]
  /external/skia/experimental/PdfViewer/
SkPdfFont.h 81 virtual bool decodeText(const SkUnencodedText& textIn, SkDecodedText* textOut) const = 0;
100 virtual bool decodeText(const SkUnencodedText& textIn, SkDecodedText* textOut) const {
101 // TODO(edisonn): SkASSERT(textIn.len % 2 == 0); or report error?
103 uint16_t* text = (uint16_t*)textIn.text;
104 textOut->text = new uint16_t[textIn.len / 2];
105 textOut->len = textIn.len / 2;
124 virtual bool decodeText(const SkUnencodedText& textIn, SkDecodedText* textOut) const {
125 // TODO(edisonn): SkASSERT(textIn.len % 2 == 0); or report error?
127 unsigned char* text = (unsigned char*)textIn.text;
128 textOut->text = new uint16_t[textIn.len]
    [all...]

Completed in 287 milliseconds

1 2