HomeSort by relevance Sort by last modified time
    Searched refs:char16 (Results 26 - 50 of 124) sorted by null

12 3 4 5

  /packages/inputmethods/PinyinIME/jni/share/
pinyinime.cpp 35 char16 predict_buf[kMaxPredictNum][kMaxPredictSize + 1];
116 char16* im_get_candidate(size_t cand_id, char16* cand_str,
158 size_t im_get_predicts(const char16 *his_buf,
159 char16 (*&pre_buf)[kMaxPredictSize + 1]) {
164 const char16 *fixed_ptr = his_buf;
spellingtrie.cpp 307 splstr16_queried_ = new char16[spelling_size_];
750 const char16* SpellingTrie::get_spelling_str16(uint16 splid) {
756 splstr16_queried_[pos] = static_cast<char16>
761 splstr16_queried_[0] = static_cast<char16>('C');
762 splstr16_queried_[1] = static_cast<char16>('h');
763 splstr16_queried_[2] = static_cast<char16>('\0');
765 splstr16_queried_[0] = static_cast<char16>('S');
766 splstr16_queried_[1] = static_cast<char16>('h');
767 splstr16_queried_[2] = static_cast<char16>('\0');
769 splstr16_queried_[0] = static_cast<char16>('Z')
    [all...]
sync.cpp 70 int Sync::put_lemmas(char16 * lemmas, int len) {
74 int Sync::get_lemmas(char16 * str, int size) {
  /external/chromium/googleurl/src/
url_canon_etc.cc 309 const char16* RemoveURLWhitespace(const char16* input, int input_len,
310 CanonOutputT<char16>* buffer,
315 char CanonicalSchemeChar(char16 ch) {
328 bool CanonicalizeScheme(const char16* spec,
332 return DoScheme<char16, char16>(spec, scheme, output, out_scheme);
347 bool CanonicalizeUserInfo(const char16* username_source,
349 const char16* password_source,
354 return DoUserInfo<char16, char16>
    [all...]
url_file.h 43 inline bool IsWindowsDriveSeparator(char16 ch) {
46 inline bool IsWindowsDriveLetter(char16 ch) {
url_canon_mailtourl.cc 103 bool CanonicalizeMailtoURL(const char16* spec,
108 return DoCanonicalizeMailtoURL<char16, char16>(
109 URLComponentSource<char16>(spec), parsed, output, new_parsed);
126 const Replacements<char16>& replacements,
url_canon_pathurl.cc 94 bool CanonicalizePathURL(const char16* spec,
99 return DoCanonicalizePathURL<char16, char16>(
100 URLComponentSource<char16>(spec), parsed, output, new_parsed);
117 const Replacements<char16>& replacements,
url_canon.h 199 typedef CanonOutputT<char16> CanonOutputW;
204 class RawCanonOutputW : public RawCanonOutputT<char16, fixed_capacity> {};
230 virtual void ConvertFromUTF16(const char16* input,
255 GURL_API const char16* RemoveURLWhitespace(const char16* input, int input_len,
256 CanonOutputT<char16>* buffer,
270 GURL_API bool IDNToASCII(const char16* src, int src_len, CanonOutputW* output);
300 GURL_API bool CanonicalizeScheme(const char16* spec,
322 GURL_API bool CanonicalizeUserInfo(const char16* username_source,
324 const char16* password_source
    [all...]
url_canon_query.cc 110 void RunConverter(const char16* spec,
172 void CanonicalizeQuery(const char16* spec,
177 DoCanonicalizeQuery<char16, char16>(spec, query, converter,
181 void ConvertUTF16ToQueryEncoding(const char16* input,
185 DoConvertToQueryEncoding<char16, char16>(input, query,
url_canon_host.cc 97 typedef RawCanonOutputT<char16, kTempHostBufferLen> StackBufferW;
179 // In case where we have char16 input, and char output it's safe to
180 // cast char16->char only if input string was converted to ASCII.
190 bool DoIDNHost(const char16* src, int src_len, CanonOutput* output) {
283 bool DoComplexHost(const char16* host, int host_len,
377 bool CanonicalizeHost(const char16* spec,
382 DoHost<char16, char16>(spec, host, output, &host_info);
394 void CanonicalizeHostVerbose(const char16* spec,
398 DoHost<char16, char16>(spec, host, output, host_info)
    [all...]
url_canon_fileurl.cc 161 bool CanonicalizeFileURL(const char16* spec,
167 return DoCanonicalizeFileURL<char16, char16>(
168 URLComponentSource<char16>(spec), parsed, query_converter,
180 bool FileCanonicalizePath(const char16* spec,
184 return DoFileCanonicalizePath<char16, char16>(spec, path,
203 const Replacements<char16>& replacements,
  /external/chromium/base/i18n/
char_iterator.h 80 UTF16CharIterator(const char16* str, size_t str_len);
107 const char16* str_;
char_iterator.cc 40 : str_(reinterpret_cast<const char16*>(str->data())),
50 UTF16CharIterator::UTF16CharIterator(const char16* str, size_t str_len)
  /external/chromium/base/
string_util_posix.h 37 inline int strncmp16(const char16* s1, const char16* s2, size_t count) {
string_number_conversions.h 71 BASE_API bool StringToInt(const char16* begin, const char16* end, int* output);
83 BASE_API bool StringToInt64(const char16* begin, const char16* end,
string_util_win.h 32 inline int strncmp16(const char16* s1, const char16* s2, size_t count) {
utf_string_conversions.h 29 BASE_API bool UTF16ToWide(const char16* src, size_t src_len,
35 BASE_API bool UTF16ToUTF8(const char16* src, size_t src_len,
  /external/chromium/chrome/browser/history/
history_publisher.h 49 const char16* html;
50 const char16* title;
  /packages/inputmethods/PinyinIME/jni/include/
dicttrie.h 171 void convert_to_hanzis(char16 *str, uint16 str_len);
173 void convert_to_scis_ids(char16 *str, uint16 str_len);
194 uint16 get_lemma_str(LemmaIdType id_lemma, char16 *str_buf, uint16 str_max);
199 size_t predict(const char16 *last_hzs, uint16 hzs_len,
203 LemmaIdType put_lemma(char16 lemma_str[], uint16 splids[],
209 LemmaIdType get_lemma_id(char16 lemma_str[], uint16 splids[],
214 LmaScoreType get_lemma_score(char16 lemma_str[], uint16 splids[],
224 LemmaIdType get_lemma_id(const char16 lemma_str[], uint16 lemma_len);
searchutility.h 38 char16 hanzi;
44 char16 str[kMaxLemmaSize + 1];
50 char16 pre_hzs[kMaxPredictSize];
matrixsearch.h 119 char16 chn_str[kMaxRowNum]; // Chinese string.
291 const char16 *pfullsent, bool sort_by_psb);
293 uint16 get_lemma_str(LemmaIdType id_lemma, char16 *str_buf, uint16 str_max);
355 size_t inner_predict(const char16 fixed_scis_ids[], uint16 scis_num,
356 char16 predict_buf[][kMaxPredictSize + 1],
433 char16* get_candidate(size_t cand_id, char16 *cand_str, size_t max_len);
438 char16* get_candidate0(char16* cand_str, size_t max_len,
450 size_t get_predicts(const char16 fixed_buf[]
    [all...]
userdict.h 53 uint16 get_lemma_str(LemmaIdType id_lemma, char16* str_buf,
59 size_t predict(const char16 last_hzs[], uint16 hzs_len,
64 LemmaIdType put_lemma(char16 lemma_str[], uint16 splids[],
70 LemmaIdType get_lemma_id(char16 lemma_str[], uint16 splids[],
75 LmaScoreType get_lemma_score(char16 lemma_str[], uint16 splids[],
97 LemmaIdType put_lemma_no_sync(char16 lemma_str[], uint16 splids[],
106 int put_lemmas_no_sync_from_utf16le_string(char16 * lemmas, int len);
119 char16 * str, int size, int * count);
304 LemmaIdType _put_lemma(char16 lemma_str[], uint16 splids[],
310 int _get_lemma_score(char16 lemma_str[], uint16 splids[], uint16 lemma_len)
    [all...]
dictdef.h 136 char16 hz;
143 char16 hanzi_str[kMaxLemmaSize + 1];
splparser.h 52 // uses char16 instead of char8.
53 uint16 splstr16_to_idxs(const char16 *splstr, uint16 str_len, uint16 splidx[],
57 // uses char16 instead of char8.
58 uint16 splstr16_to_idxs_f(const char16 *splstr16, uint16 str_len,
  /external/chromium/base/win/
scoped_bstr.cc 12 ScopedBstr::ScopedBstr(const char16* non_bstr)
46 BSTR ScopedBstr::Allocate(const char16* str) {

Completed in 435 milliseconds

12 3 4 5