Searched defs:csm (Results 1 - 25 of 28) sorted by relevance

12

/external/chromium_org/third_party/icu/source/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.cpp1718 uint16_t csm; local
1721 * The csm variable keeps track of which charsets are allowed
1724 csm = jpCharsetMasks[converterData->version];
1732 csm &= ~CSM(HWKANA_7BIT);
1736 csm &= ~CSM(cs);
1741 csm &= ~CSM(cs);
1747 if(CSM(cs) & csm) {
1749 csm &= ~CSM(cs);
/external/icu/icu4c/source/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...]
/external/chromium_org/third_party/icu/source/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/eigen/bench/
H A Dspmv.cpp120 cs *csm; local
121 eiToCSparse(sm, csm);
/external/icu/icu4c/source/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/test/cintltst/
H A Dcstrcase.c730 UCaseMap *csm; local
737 csm=ucasemap_open("tur", 0xa5, &errorCode);
742 locale=ucasemap_getLocale(csm);
747 ucasemap_setLocale(csm, "I-kLInGOn-the-quick-brown-fox-jumps-over-the-lazy-dog", &errorCode);
748 locale=ucasemap_getLocale(csm);
754 options=ucasemap_getOptions(csm);
758 ucasemap_setOptions(csm, 0x333333, &errorCode);
759 options=ucasemap_getOptions(csm);
768 length=ucasemap_utf8ToLower(csm, utf8Out, (int32_t)sizeof(utf8Out), aBc, -1, &errorCode);
776 length=ucasemap_utf8ToLower(csm, utf8Ou
875 UCaseMap *csm; local
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dcstrcase.c730 UCaseMap *csm; local
737 csm=ucasemap_open("tur", 0xa5, &errorCode);
742 locale=ucasemap_getLocale(csm);
747 ucasemap_setLocale(csm, "I-kLInGOn-the-quick-brown-fox-jumps-over-the-lazy-dog", &errorCode);
748 locale=ucasemap_getLocale(csm);
754 options=ucasemap_getOptions(csm);
758 ucasemap_setOptions(csm, 0x333333, &errorCode);
759 options=ucasemap_getOptions(csm);
768 length=ucasemap_utf8ToLower(csm, utf8Out, (int32_t)sizeof(utf8Out), aBc, -1, &errorCode);
776 length=ucasemap_utf8ToLower(csm, utf8Ou
875 UCaseMap *csm; local
[all...]
/external/chromium_org/sync/test/engine/
H A Dmock_connection_manager.cc486 sync_pb::ClientToServerMessage* csm,
488 CHECK(csm->has_get_updates());
489 ASSERT_EQ(csm->message_contents(), ClientToServerMessage::GET_UPDATES);
490 const GetUpdatesMessage& gu = csm->get_updates();
565 sync_pb::ClientToServerMessage* csm,
567 CHECK(csm->has_commit());
568 ASSERT_EQ(csm->message_contents(), ClientToServerMessage::COMMIT);
570 const CommitMessage& commit_message = csm->commit();
485 ProcessGetUpdates( sync_pb::ClientToServerMessage* csm, sync_pb::ClientToServerResponse* response) argument
564 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

Completed in 3142 milliseconds

12