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

1 2 3

  /external/icu/icu4c/source/common/
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...]
ucase.h 51 ucase_addPropertyStarts(const UCaseProps *csp, const USetAdder *sa, UErrorCode *pErrorCode);
90 ucase_tolower(const UCaseProps *csp, UChar32 c);
93 ucase_toupper(const UCaseProps *csp, UChar32 c);
96 ucase_totitle(const UCaseProps *csp, UChar32 c);
99 ucase_fold(const UCaseProps *csp, UChar32 c, uint32_t options);
111 ucase_addCaseClosure(const UCaseProps *csp, UChar32 c, const USetAdder *sa);
126 ucase_addStringCaseClosure(const UCaseProps *csp, const UChar *s, int32_t length, const USetAdder *sa);
160 ucase_getType(const UCaseProps *csp, UChar32 c);
164 ucase_getTypeOrIgnorable(const UCaseProps *csp, UChar32 c);
167 ucase_isSoftDotted(const UCaseProps *csp, UChar32 c)
    [all...]
unistr_case_locale.cpp 38 if(csm->csp==NULL) {
39 csm->csp=ucase_getSingleton();
unistr_titlecase_brkiter.cpp 46 if(csm->csp==NULL) {
47 csm->csp=ucase_getSingleton();
ustr_titlecase_brkiter.cpp 40 if(csm->csp==NULL) {
41 csm->csp=ucase_getSingleton();
ustrcase_locale.cpp 74 if(csm->csp==NULL) {
75 csm->csp=ucase_getSingleton();
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)) {
ucasemap.cpp 56 csm->csp=ucase_getSingleton();
289 c=map(csm->csp, c, utf8_caseContextIterator, csc, &s, csm->locale, &locCache);
367 if((csm->options&U_TITLECASE_NO_BREAK_ADJUSTMENT)==0 && UCASE_NONE==ucase_getType(csm->csp, c)) {
379 if(UCASE_NONE!=ucase_getType(csm->csp, c)) {
395 c=ucase_toFullTitle(csm->csp, c, utf8_caseContextIterator, &csc, &s, csm->locale, &locCache);
457 UBool isFollowedByCasedLetter(const UCaseProps *csp, const uint8_t *s, int32_t i, int32_t length) {
461 int32_t type = ucase_getTypeOrIgnorable(csp, c);
486 int32_t type = ucase_getTypeOrIgnorable(csm->csp, c);
536 !isFollowedByCasedLetter(csm->csp, src, nextIndex, srcLength)) {
572 c=ucase_toFullUpper(csm->csp, c, NULL, NULL, &s, csm->locale, &locCache)
    [all...]
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
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...]
unistr_case.cpp 148 csm.csp=ucase_getSingleton();
  /external/icu/android_icu4j/src/main/java/android/icu/text/
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);
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);
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 1484 UCaseProps csp=UCaseProps.INSTANCE; local
2172 UCaseProps csp; local
    [all...]
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
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);
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);
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/
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...]
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;
  /external/v8/src/arm64/
macro-assembler-arm64-inl.h 1244 DCHECK(!csp.Is(sp_));
1246 Sub(csp, StackPointer(), space);
    [all...]
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/v8/src/regexp/arm64/
regexp-macro-assembler-arm64.cc 42 * - csp : Points to tip of C stack.
61 * ^^^ csp when called ^^^
81 * ^^^^^^^^^ csp ^^^^^^^^^
125 __ SetStackPointer(csp);
714 // The stack pointer should be csp on entry.
715 // csp[8]: address of the current isolate
716 // csp[0]: secondary link/return address used by native call
729 DCHECK(csp.Is(__ StackPointer()));
734 __ Add(frame_pointer(), csp, argument_registers.Count() * kPointerSize);
765 __ Subs(x10, csp, x10)
    [all...]

Completed in 1293 milliseconds

1 2 3