HomeSort by relevance Sort by last modified time
    Searched defs:csp (Results 1 - 25 of 34) sorted by null

1 2

  /external/icu/android_icu4j/src/main/java/android/icu/text/
CaseFoldTransliterator.java 42 private final UCaseProps csp; field in class:CaseFoldTransliterator
52 csp=UCaseProps.INSTANCE;
63 if(csp==null) {
82 c=csp.toFullFolding(c, result, 0); // toFullFolding(int c, StringBuffer out, int options)
LowercaseTransliterator.java 45 private final UCaseProps csp; field in class:LowercaseTransliterator
57 csp=UCaseProps.INSTANCE;
69 if(csp==null) {
88 c=csp.toFullLower(c, iter, result, caseLocale);
TitlecaseTransliterator.java 43 private final UCaseProps csp; field in class:TitlecaseTransliterator
56 csp=UCaseProps.INSTANCE;
93 type=csp.getTypeOrIgnorable(c);
119 type=csp.getTypeOrIgnorable(c);
122 c=csp.toFullTitle(c, iter, result, caseLocale);
124 c=csp.toFullLower(c, iter, result, caseLocale);
UppercaseTransliterator.java 42 private final UCaseProps csp; field in class:UppercaseTransliterator
53 csp=UCaseProps.INSTANCE;
65 if(csp==null) {
84 c=csp.toFullUpper(c, iter, result, caseLocale);
Normalizer.java 1475 UCaseProps csp=UCaseProps.INSTANCE; local
2163 UCaseProps csp; local
    [all...]
UnicodeSet.java 3772 UCaseProps csp = UCaseProps.INSTANCE; local
    [all...]
  /external/icu/icu4c/source/common/
uniset_closure.cpp 187 const UCaseProps *csp = ucase_getSingleton(); local
219 ucase_addCaseClosure(csp, cp, &sa);
225 result = ucase_toFullLower(csp, cp, NULL, NULL, &full, "", &locCache);
228 result = ucase_toFullTitle(csp, cp, NULL, NULL, &full, "", &locCache);
231 result = ucase_toFullUpper(csp, cp, NULL, NULL, &full, "", &locCache);
234 result = ucase_toFullFolding(csp, cp, &full, 0);
244 if(!ucase_addStringCaseClosure(csp, str.getBuffer(), str.length(), &sa)) {
ustr_imp.h 110 const UCaseProps *csp; member in struct:UCaseMap
unormcmp.cpp 148 const UCaseProps *csp; local
187 csp=ucase_getSingleton();
189 csp=NULL;
322 (length=ucase_toFullFolding(csp, (UChar32)cp1, &p, options))>=0
367 (length=ucase_toFullFolding(csp, (UChar32)cp2, &p, options))>=0
uprops.cpp 131 const UCaseProps *csp=ucase_getSingleton(); local
133 return (UBool)(ucase_toFullFolding(csp, c, &resultString, U_FOLD_CASE_DEFAULT)>=0);
579 const UCaseProps *csp=ucase_getSingleton(); local
586 int32_t folded1Length=ucase_toFullFolding(csp, c, &folded1, U_FOLD_CASE_DEFAULT);
ustrcase.cpp 172 c=map(csm->csp, c, utf16_caseContextIterator, csc, &s, csm->locale, &locCache);
250 if((csm->options&U_TITLECASE_NO_BREAK_ADJUSTMENT)==0 && UCASE_NONE==ucase_getType(csm->csp, c)) {
262 if(UCASE_NONE!=ucase_getType(csm->csp, c)) {
277 c=ucase_toFullTitle(csm->csp, c, utf16_caseContextIterator, &csc, &s, csm->locale, &locCache);
794 UBool isFollowedByCasedLetter(const UCaseProps *csp, const UChar *s, int32_t i, int32_t length) {
798 int32_t type = ucase_getTypeOrIgnorable(csp, c);
828 int32_t type = ucase_getTypeOrIgnorable(csm->csp, c);
875 !isFollowedByCasedLetter(csm->csp, src, nextIndex, srcLength)) {
911 c=ucase_toFullUpper(csm->csp, c, NULL, NULL, &s, csm->locale, &locCache);
973 ustr_foldCase(const UCaseProps *csp,
1137 const UCaseProps *csp; local
    [all...]
ucase.cpp 67 ucase_addPropertyStarts(const UCaseProps *csp, const USetAdder *sa, UErrorCode *pErrorCode) {
73 utrie2_enum(&csp->trie, NULL, _enumPropertyStartsRange, sa);
87 #define GET_EXCEPTIONS(csp, props) ((csp)->exceptions+((props)>>UCASE_EXC_SHIFT))
136 ucase_tolower(const UCaseProps *csp, UChar32 c) {
137 uint16_t props=UTRIE2_GET16(&csp->trie, c);
143 const uint16_t *pe=GET_EXCEPTIONS(csp, props);
153 ucase_toupper(const UCaseProps *csp, UChar32 c) {
154 uint16_t props=UTRIE2_GET16(&csp->trie, c);
160 const uint16_t *pe=GET_EXCEPTIONS(csp, props)
1290 const UCaseProps *csp=GET_CASE_PROPS(); local
    [all...]
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
CaseFoldTransliterator.java 41 private final UCaseProps csp; field in class:CaseFoldTransliterator
51 csp=UCaseProps.INSTANCE;
62 if(csp==null) {
81 c=csp.toFullFolding(c, result, 0); // toFullFolding(int c, StringBuffer out, int options)
LowercaseTransliterator.java 44 private final UCaseProps csp; field in class:LowercaseTransliterator
56 csp=UCaseProps.INSTANCE;
68 if(csp==null) {
87 c=csp.toFullLower(c, iter, result, caseLocale);
TitlecaseTransliterator.java 42 private final UCaseProps csp; field in class:TitlecaseTransliterator
55 csp=UCaseProps.INSTANCE;
92 type=csp.getTypeOrIgnorable(c);
118 type=csp.getTypeOrIgnorable(c);
121 c=csp.toFullTitle(c, iter, result, caseLocale);
123 c=csp.toFullLower(c, iter, result, caseLocale);
UppercaseTransliterator.java 41 private final UCaseProps csp; field in class:UppercaseTransliterator
52 csp=UCaseProps.INSTANCE;
64 if(csp==null) {
83 c=csp.toFullUpper(c, iter, result, caseLocale);
  /external/valgrind/callgrind/
callstack.c 409 Int csp; local
420 while( (csp=CLG_(current_call_stack).sp) >0) {
421 call_entry* top_ce = &(CLG_(current_call_stack).entry[csp-1]);
429 csp=CLG_(current_call_stack).sp;
bbcc.c 570 Int passed = 0, csp; local
639 csp = CLG_(current_call_stack).sp;
642 if ( (jmpkind == jk_Return) && (csp >0)) {
643 Int csp_up = csp-1;
704 if (CLG_(get_fn_node)(last_bb)->pop_on_jump && (csp>0)) {
706 call_entry* top_ce = &(CLG_(current_call_stack).entry[csp-1]);
750 if ((csp == 0) ||
775 csp = CLG_(current_call_stack).sp;
776 if (call_emulation && csp>0)
777 sp = CLG_(current_call_stack).entry[csp-1].sp;
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
Normalizer.java 1450 UCaseProps csp=UCaseProps.INSTANCE; local
2113 UCaseProps csp; local
    [all...]
UnicodeSet.java 3855 UCaseProps csp = UCaseProps.INSTANCE; local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cucdtst.c 3263 UCaseProps *csp; local
    [all...]
  /external/libpng/contrib/tools/
pngcp.c 449 unsigned int csp; /* next stack entry to use */ member in struct:display
792 const unsigned int sp = dp->csp; /* stack entry of next searched option */
    [all...]
  /external/libxml2/os400/iconv/bldcsndfa/
bldcsndfa.c 1877 t_chset * csp; local
    [all...]
  /external/v8/src/arm64/
macro-assembler-arm64.cc 130 if (rd.Is(csp)) {
134 Mov(csp, temp);
279 // If csp is an operand, add #0 is emitted, otherwise, orr #0.
1340 sub(StackPointer(), csp, StackPointer()); local
1347 sub(StackPointer(), csp, StackPointer()); local
1353 sub(StackPointer(), csp, StackPointer()); local
    [all...]
  /external/dlmalloc/
malloc.c 4007 char* csp = (asp < (old_top + MIN_CHUNK_SIZE))? old_top : asp; local
    [all...]

Completed in 559 milliseconds

1 2