Searched defs:csm (Results 1 - 23 of 23) 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/
H A Dunistr_case_locale.cpp35 setTempCaseMap(UCaseMap *csm, const char *locale) { argument
36 if(csm->csp==NULL) {
37 csm->csp=ucase_getSingleton();
40 csm->locale[0]=0;
42 ustrcase_setTempCaseMapLocale(csm, locale);
53 UCaseMap csm=UCASEMAP_INITIALIZER; local
54 setTempCaseMap(&csm, locale.getName());
55 return caseMap(&csm, ustrcase_internalToLower);
65 UCaseMap csm=UCASEMAP_INITIALIZER; local
66 setTempCaseMap(&csm, local
[all...]
H A Ducasemap_titlecase_brkiter.cpp32 ucasemap_getBreakIterator(const UCaseMap *csm) { argument
33 return csm->iter;
37 ucasemap_setBreakIterator(UCaseMap *csm, UBreakIterator *iterToAdopt, UErrorCode * /*pErrorCode*/) { argument
39 delete reinterpret_cast<BreakIterator *>(csm->iter);
40 csm->iter=iterToAdopt;
44 ucasemap_utf8ToTitle(UCaseMap *csm, argument
53 if(csm->iter==NULL) {
54 csm->iter=ubrk_open(UBRK_WORD, csm->locale,
58 ubrk_setUText(csm
[all...]
H A Dunistr_titlecase_brkiter.cpp30 unistr_case_internalToTitle(const UCaseMap *csm, argument
34 ubrk_setText(csm->iter, src, srcLength, pErrorCode);
35 return ustrcase_internalToTitle(csm, dest, destCapacity, src, srcLength, pErrorCode);
43 setTempCaseMap(UCaseMap *csm, const char *locale) { argument
44 if(csm->csp==NULL) {
45 csm->csp=ucase_getSingleton();
48 csm->locale[0]=0;
50 ustrcase_setTempCaseMapLocale(csm, locale);
68 UCaseMap csm=UCASEMAP_INITIALIZER; local
69 csm
[all...]
H A Dustr_titlecase_brkiter.cpp37 setTempCaseMap(UCaseMap *csm, const char *locale) { argument
38 if(csm->csp==NULL) {
39 csm->csp=ucase_getSingleton();
42 csm->locale[0]=0;
44 ustrcase_setTempCaseMapLocale(csm, locale);
56 UCaseMap csm=UCASEMAP_INITIALIZER; local
57 setTempCaseMap(&csm, locale);
59 ubrk_setText(csm.iter=titleIter, src, srcLength, pErrorCode);
61 csm.iter=ubrk_open(UBRK_WORD, csm
75 ucasemap_toTitle(UCaseMap *csm, UChar *dest, int32_t destCapacity, const UChar *src, int32_t srcLength, UErrorCode *pErrorCode) argument
[all...]
H A Dustrcase_locale.cpp26 ustrcase_setTempCaseMapLocale(UCaseMap *csm, const char *locale) { argument
57 csm->locale[i]=c;
60 csm->locale[i]=0; /* Up to 3 non-separator characters. */
62 csm->locale[0]=0; /* Longer-than-3 initial subtag: Ignore. */
71 setTempCaseMap(UCaseMap *csm, const char *locale) { argument
72 if(csm->csp==NULL) {
73 csm->csp=ucase_getSingleton();
76 csm->locale[0]=0;
78 ustrcase_setTempCaseMapLocale(csm, locale);
89 UCaseMap csm local
103 UCaseMap csm=UCASEMAP_INITIALIZER; local
[all...]
H A Dunistr_case.cpp88 UnicodeString::caseMap(const UCaseMap *csm, argument
129 newLength = stringCaseMapper(csm, getArrayStart(), getCapacity(),
145 UCaseMap csm=UCASEMAP_INITIALIZER; local
146 csm.csp=ucase_getSingleton();
147 csm.options=options;
148 return caseMap(&csm, ustrcase_internalFold);
H A Ducasemap.cpp42 UCaseMap *csm; local
48 csm=(UCaseMap *)uprv_malloc(sizeof(UCaseMap));
49 if(csm==NULL) {
52 uprv_memset(csm, 0, sizeof(UCaseMap));
54 csm->csp=ucase_getSingleton();
55 ucasemap_setLocale(csm, locale, pErrorCode);
57 uprv_free(csm);
61 csm->options=options;
62 return csm;
66 ucasemap_close(UCaseMap *csm) { argument
77 ucasemap_getLocale(const UCaseMap *csm) argument
82 ucasemap_getOptions(const UCaseMap *csm) argument
87 ucasemap_setLocale(UCaseMap *csm, const char *locale, UErrorCode *pErrorCode) argument
112 ucasemap_setOptions(UCaseMap *csm, uint32_t options, UErrorCode * ) argument
214 _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
258 ucasemap_internalUTF8ToTitle(const UCaseMap *csm, uint8_t *dest, int32_t destCapacity, const uint8_t *src, int32_t srcLength, UErrorCode *pErrorCode) argument
390 ucasemap_internalUTF8ToLower(const UCaseMap *csm, uint8_t *dest, int32_t destCapacity, const uint8_t *src, int32_t srcLength, UErrorCode *pErrorCode) argument
405 ucasemap_internalUTF8ToUpper(const UCaseMap *csm, uint8_t *dest, int32_t destCapacity, const uint8_t *src, int32_t srcLength, UErrorCode *pErrorCode) argument
458 ucasemap_internalUTF8Fold(const UCaseMap *csm, uint8_t *dest, int32_t destCapacity, const uint8_t *src, int32_t srcLength, UErrorCode *pErrorCode) argument
466 ucasemap_mapUTF8(const UCaseMap *csm, uint8_t *dest, int32_t destCapacity, const uint8_t *src, int32_t srcLength, UTF8CaseMapper *stringCaseMapper, UErrorCode *pErrorCode) argument
507 ucasemap_utf8ToLower(const UCaseMap *csm, char *dest, int32_t destCapacity, const char *src, int32_t srcLength, UErrorCode *pErrorCode) argument
518 ucasemap_utf8ToUpper(const UCaseMap *csm, char *dest, int32_t destCapacity, const char *src, int32_t srcLength, UErrorCode *pErrorCode) argument
529 ucasemap_utf8FoldCase(const UCaseMap *csm, char *dest, int32_t destCapacity, const char *src, int32_t srcLength, UErrorCode *pErrorCode) argument
[all...]
H A Dustrcase.cpp128 _caseMap(const UCaseMap *csm, UCaseMapFull *map, argument
138 locCache=csm->locCache;
147 c=map(csm->csp, c, utf16_caseContextIterator, csc, &s, csm->locale, &locCache);
165 ustrcase_internalToTitle(const UCaseMap *csm, argument
180 BreakIterator *bi=reinterpret_cast<BreakIterator *>(csm->iter);
183 int32_t locCache=csm->locCache;
221 if((csm->options&U_TITLECASE_NO_BREAK_ADJUSTMENT)==0 && UCASE_NONE==ucase_getType(csm->csp, c)) {
233 if(UCASE_NONE!=ucase_getType(csm
300 ustrcase_internalToLower(const UCaseMap *csm, UChar *dest, int32_t destCapacity, const UChar *src, int32_t srcLength, UErrorCode *pErrorCode) argument
315 ustrcase_internalToUpper(const UCaseMap *csm, UChar *dest, int32_t destCapacity, const UChar *src, int32_t srcLength, UErrorCode *pErrorCode) argument
360 ustrcase_internalFold(const UCaseMap *csm, UChar *dest, int32_t destCapacity, const UChar *src, int32_t srcLength, UErrorCode *pErrorCode) argument
368 ustrcase_map(const UCaseMap *csm, UChar *dest, int32_t destCapacity, const UChar *src, int32_t srcLength, UStringCaseMapper *stringCaseMapper, UErrorCode *pErrorCode) argument
441 UCaseMap csm=UCASEMAP_INITIALIZER; local
[all...]
H A Ducnv2022.cpp1725 uint16_t csm; local
1728 * The csm variable keeps track of which charsets are allowed
1731 csm = jpCharsetMasks[converterData->version];
1739 csm &= ~CSM(HWKANA_7BIT);
1743 csm &= ~CSM(cs);
1748 csm &= ~CSM(cs);
1754 if(CSM(cs) & csm) {
1756 csm &= ~CSM(cs);
/external/eigen/bench/
H A Dspmv.cpp120 cs *csm; local
121 eiToCSparse(sm, csm);
/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/chromium_org/third_party/icu/source/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.c1689 uint16_t csm; local
1692 * The csm variable keeps track of which charsets are allowed
1695 csm = jpCharsetMasks[converterData->version];
1703 csm &= ~CSM(HWKANA_7BIT);
1707 csm &= ~CSM(cs);
1712 csm &= ~CSM(cs);
1718 if(CSM(cs) & csm) {
1720 csm &= ~CSM(cs);
/external/chromium_org/third_party/icu/source/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/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/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);
/external/chromium_org/sync/test/engine/
H A Dmock_connection_manager.cc481 sync_pb::ClientToServerMessage* csm,
483 CHECK(csm->has_get_updates());
484 ASSERT_EQ(csm->message_contents(), ClientToServerMessage::GET_UPDATES);
485 const GetUpdatesMessage& gu = csm->get_updates();
580 sync_pb::ClientToServerMessage* csm,
582 CHECK(csm->has_commit());
583 ASSERT_EQ(csm->message_contents(), ClientToServerMessage::COMMIT);
585 const CommitMessage& commit_message = csm->commit();
480 ProcessGetUpdates( sync_pb::ClientToServerMessage* csm, sync_pb::ClientToServerResponse* response) argument
579 ProcessCommit( sync_pb::ClientToServerMessage* csm, sync_pb::ClientToServerResponse* response_buffer) argument
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dradeon_common_context.h380 struct radeon_cs_manager *csm; member in struct:radeon_cmdbuf
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
H A Dradeon_common_context.h380 struct radeon_cs_manager *csm; member in struct:radeon_cmdbuf
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dradeon_common_context.h380 struct radeon_cs_manager *csm; member in struct:radeon_cmdbuf
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_common_context.h380 struct radeon_cs_manager *csm; member in struct:radeon_cmdbuf

Completed in 1283 milliseconds