Searched refs:csm (Results 1 - 10 of 10) sorted by relevance

/external/chromium/chrome/browser/sync/engine/
H A Dsyncproto_unittest.cc14 ClientToServerMessage csm; local
15 EXPECT_TRUE(csm.has_protocol_version());
/external/icu4c/common/unicode/
H A Ducasemap.h74 * @param csm Object to be closed.
78 ucasemap_close(UCaseMap *csm);
101 * @param csm UCaseMap service object.
106 ucasemap_getLocale(const UCaseMap *csm);
110 * @param csm UCaseMap service object.
115 ucasemap_getOptions(const UCaseMap *csm);
120 * @param csm UCaseMap service object.
129 ucasemap_setLocale(UCaseMap *csm, const char *locale, UErrorCode *pErrorCode);
134 * @param csm UCaseMap service object.
143 ucasemap_setOptions(UCaseMap *csm, uint32_
[all...]
/external/icu4c/common/
H A Ducasemap.c36 UCaseMap *csm; local
42 csm=(UCaseMap *)uprv_malloc(sizeof(UCaseMap));
43 if(csm==NULL) {
46 uprv_memset(csm, 0, sizeof(UCaseMap));
48 csm->csp=ucase_getSingleton();
49 ucasemap_setLocale(csm, locale, pErrorCode);
51 uprv_free(csm);
55 csm->options=options;
56 return csm;
60 ucasemap_close(UCaseMap *csm) { argument
70 ucasemap_getLocale(const UCaseMap *csm) argument
75 ucasemap_getOptions(const UCaseMap *csm) argument
80 ucasemap_setLocale(UCaseMap *csm, const char *locale, UErrorCode *pErrorCode) argument
105 ucasemap_setOptions(UCaseMap *csm, uint32_t options, UErrorCode *pErrorCode) argument
112 ucasemap_getBreakIterator(const UCaseMap *csm) argument
117 ucasemap_setBreakIterator(UCaseMap *csm, UBreakIterator *iterToAdopt, UErrorCode *pErrorCode) argument
222 _caseMap(const UCaseMap *csm, UCaseMapFull *map, uint8_t *dest, int32_t destCapacity, const uint8_t *src, UCaseContext *csc, int32_t srcStart, int32_t srcLimit, UErrorCode *pErrorCode) argument
269 _toTitle(UCaseMap *csm, uint8_t *dest, int32_t destCapacity, const uint8_t *src, UCaseContext *csc, int32_t srcLength, UErrorCode *pErrorCode) argument
453 caseMap(const UCaseMap *csm, uint8_t *dest, int32_t destCapacity, const uint8_t *src, int32_t srcLength, int32_t toWhichCase, UErrorCode *pErrorCode) argument
529 ucasemap_utf8ToLower(const UCaseMap *csm, char *dest, int32_t destCapacity, const char *src, int32_t srcLength, UErrorCode *pErrorCode) argument
540 ucasemap_utf8ToUpper(const UCaseMap *csm, char *dest, int32_t destCapacity, const char *src, int32_t srcLength, UErrorCode *pErrorCode) argument
553 ucasemap_utf8ToTitle(UCaseMap *csm, char *dest, int32_t destCapacity, const char *src, int32_t srcLength, UErrorCode *pErrorCode) argument
566 ucasemap_utf8FoldCase(const UCaseMap *csm, char *dest, int32_t destCapacity, const char *src, int32_t srcLength, UErrorCode *pErrorCode) argument
[all...]
H A Dustrcase.c122 _caseMap(const UCaseMap *csm, UCaseMapFull *map, argument
132 locCache=csm->locCache;
141 c=map(csm->csp, c, utf16_caseContextIterator, csc, &s, csm->locale, &locCache);
157 setTempCaseMapLocale(UCaseMap *csm, const char *locale, UErrorCode *pErrorCode) { argument
178 csm->locale[i]=c;
181 csm->locale[i]=0; /* Up to 3 non-separator characters. */
183 csm->locale[0]=0; /* Longer-than-3 initial subtag: Ignore. */
192 setTempCaseMap(UCaseMap *csm, const char *locale, UErrorCode *pErrorCode) { argument
193 if(csm
209 _toTitle(UCaseMap *csm, UChar *dest, int32_t destCapacity, const UChar *src, UCaseContext *csc, int32_t srcLength, UErrorCode *pErrorCode) argument
349 UCaseMap csm={ NULL }; local
369 UCaseMap csm={ NULL }; local
392 UCaseMap csm={ NULL }; local
453 caseMap(const UCaseMap *csm, UChar *dest, int32_t destCapacity, const UChar *src, int32_t srcLength, int32_t toWhichCase, UErrorCode *pErrorCode) argument
559 UCaseMap csm={ NULL }; local
572 UCaseMap csm={ NULL }; local
588 UCaseMap csm={ NULL }; local
604 ucasemap_toTitle(UCaseMap *csm, UChar *dest, int32_t destCapacity, const UChar *src, int32_t srcLength, UErrorCode *pErrorCode) argument
621 UCaseMap csm={ NULL }; local
[all...]
H A Ducnv2022.c1711 uint16_t csm; local
1714 * The csm variable keeps track of which charsets are allowed
1717 csm = jpCharsetMasks[converterData->version];
1725 csm &= ~CSM(HWKANA_7BIT);
1729 csm &= ~CSM(cs);
1734 csm &= ~CSM(cs);
1740 if(CSM(cs) & csm) {
1742 csm &= ~CSM(cs);
/external/icu4c/samples/csdet/
H A Dcsdet.c31 const UCharsetMatch **csm; local
54 csm = ucsdet_detectAll(csd, &matchCount, &status);
57 const char *name = ucsdet_getName(csm[match], &status);
58 const char *lang = ucsdet_getLanguage(csm[match], &status);
59 int32_t confidence = ucsdet_getConfidence(csm[match], &status);
/external/icu4c/test/cintltst/
H A Dcstrcase.c728 UCaseMap *csm; local
735 csm=ucasemap_open("tur", 0xa5, &errorCode);
740 locale=ucasemap_getLocale(csm);
745 ucasemap_setLocale(csm, "I-kLInGOn-the-quick-brown-fox-jumps-over-the-lazy-dog", &errorCode);
746 locale=ucasemap_getLocale(csm);
752 options=ucasemap_getOptions(csm);
756 ucasemap_setOptions(csm, 0x333333, &errorCode);
757 options=ucasemap_getOptions(csm);
766 length=ucasemap_utf8ToLower(csm, utf8Out, (int32_t)sizeof(utf8Out), aBc, -1, &errorCode);
774 length=ucasemap_utf8ToLower(csm, utf8Ou
873 UCaseMap *csm; local
[all...]
/external/icu4c/test/intltest/
H A Dstrcase.cpp399 LocalUCaseMapPointer csm(ucasemap_open(localeID, options, errorCode));
405 ucasemap_setBreakIterator(csm.getAlias(), clone, errorCode);
413 utf8OutLength=ucasemap_utf8ToLower(csm.getAlias(),
419 utf8OutLength=ucasemap_utf8ToUpper(csm.getAlias(),
426 utf8OutLength=ucasemap_utf8ToTitle(csm.getAlias(),
433 utf8OutLength=ucasemap_utf8FoldCase(csm.getAlias(),
/external/chromium/chrome/browser/sync/engine/net/
H A Dserver_connection_manager.cc347 bool FillMessageWithShareDetails(sync_pb::ClientToServerMessage* csm, argument
357 csm->set_store_birthday(birthday);
358 csm->set_share(share);
H A Dserver_connection_manager.h395 bool FillMessageWithShareDetails(sync_pb::ClientToServerMessage* csm,

Completed in 413 milliseconds