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

1 2 3

  /external/chromium_org/third_party/icu/source/common/
ucase.c 63 ucase_addPropertyStarts(const UCaseProps *csp, const USetAdder *sa, UErrorCode *pErrorCode) {
69 utrie2_enum(&csp->trie, NULL, _enumPropertyStartsRange, sa);
83 #define GET_EXCEPTIONS(csp, props) ((csp)->exceptions+((props)>>UCASE_EXC_SHIFT))
132 ucase_tolower(const UCaseProps *csp, UChar32 c) {
133 uint16_t props=UTRIE2_GET16(&csp->trie, c);
139 const uint16_t *pe=GET_EXCEPTIONS(csp, props);
149 ucase_toupper(const UCaseProps *csp, UChar32 c) {
150 uint16_t props=UTRIE2_GET16(&csp->trie, c);
156 const uint16_t *pe=GET_EXCEPTIONS(csp, props)
1246 const UCaseProps *csp=GET_CASE_PROPS(); local
    [all...]
ucase.h 43 ucase_addPropertyStarts(const UCaseProps *csp, const USetAdder *sa, UErrorCode *pErrorCode);
81 ucase_tolower(const UCaseProps *csp, UChar32 c);
84 ucase_toupper(const UCaseProps *csp, UChar32 c);
87 ucase_totitle(const UCaseProps *csp, UChar32 c);
90 ucase_fold(const UCaseProps *csp, UChar32 c, uint32_t options);
102 ucase_addCaseClosure(const UCaseProps *csp, UChar32 c, const USetAdder *sa);
117 ucase_addStringCaseClosure(const UCaseProps *csp, const UChar *s, int32_t length, const USetAdder *sa);
121 ucase_getType(const UCaseProps *csp, UChar32 c);
125 ucase_getTypeOrIgnorable(const UCaseProps *csp, UChar32 c);
128 ucase_isSoftDotted(const UCaseProps *csp, UChar32 c)
    [all...]
ustr_imp.h 98 const UCaseProps *csp; member in struct:UCaseMap
125 ustr_toLower(const UCaseProps *csp,
135 ustr_toUpper(const UCaseProps *csp,
147 ustr_toTitle(const UCaseProps *csp,
161 ustr_foldCase(const UCaseProps *csp,
unistr_case.cpp 102 const UCaseProps *csp=ucase_getSingleton(); local
139 newLength = ustr_toLower(csp, getArrayStart(), getCapacity(),
143 newLength = ustr_toUpper(csp, getArrayStart(), getCapacity(),
150 newLength = ustr_toTitle(csp, getArrayStart(), getCapacity(),
155 newLength = ustr_foldCase(csp, getArrayStart(), getCapacity(),
ustrcase.c 141 c=map(csm->csp, c, utf16_caseContextIterator, csc, &s, csm->locale, &locCache);
193 if(csm->csp==NULL) {
194 csm->csp=ucase_getSingleton();
265 if((csm->options&U_TITLECASE_NO_BREAK_ADJUSTMENT)==0 && UCASE_NONE==ucase_getType(csm->csp, c)) {
277 if(UCASE_NONE!=ucase_getType(csm->csp, c)) {
294 c=ucase_toFullTitle(csm->csp, c, utf16_caseContextIterator, csc, &s, csm->locale, &csm->locCache);
344 ustr_toLower(const UCaseProps *csp,
352 csm.csp=csp;
364 ustr_toUpper(const UCaseProps *csp,
653 const UCaseProps *csp; local
    [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
ucasemap.c 48 csm->csp=ucase_getSingleton();
248 c=map(csm->csp, c, utf8_caseContextIterator, csc, &s, csm->locale, &locCache);
330 if((csm->options&U_TITLECASE_NO_BREAK_ADJUSTMENT)==0 && UCASE_NONE==ucase_getType(csm->csp, c)) {
342 if(UCASE_NONE!=ucase_getType(csm->csp, c)) {
359 c=ucase_toFullTitle(csm->csp, c, utf8_caseContextIterator, csc, &s, csm->locale, &csm->locCache);
408 utf8_foldCase(const UCaseProps *csp,
430 c=ucase_toFullFolding(csp, c, &s, options);
490 destLength=utf8_foldCase(csm->csp, dest, destCapacity, src, srcLength,
  /external/icu/icu4c/source/common/
ucase.cpp 66 ucase_addPropertyStarts(const UCaseProps *csp, const USetAdder *sa, UErrorCode *pErrorCode) {
72 utrie2_enum(&csp->trie, NULL, _enumPropertyStartsRange, sa);
86 #define GET_EXCEPTIONS(csp, props) ((csp)->exceptions+((props)>>UCASE_EXC_SHIFT))
135 ucase_tolower(const UCaseProps *csp, UChar32 c) {
136 uint16_t props=UTRIE2_GET16(&csp->trie, c);
142 const uint16_t *pe=GET_EXCEPTIONS(csp, props);
152 ucase_toupper(const UCaseProps *csp, UChar32 c) {
153 uint16_t props=UTRIE2_GET16(&csp->trie, c);
159 const uint16_t *pe=GET_EXCEPTIONS(csp, props)
1273 const UCaseProps *csp=GET_CASE_PROPS(); local
    [all...]
ucase.h 49 ucase_addPropertyStarts(const UCaseProps *csp, const USetAdder *sa, UErrorCode *pErrorCode);
87 ucase_tolower(const UCaseProps *csp, UChar32 c);
90 ucase_toupper(const UCaseProps *csp, UChar32 c);
93 ucase_totitle(const UCaseProps *csp, UChar32 c);
96 ucase_fold(const UCaseProps *csp, UChar32 c, uint32_t options);
108 ucase_addCaseClosure(const UCaseProps *csp, UChar32 c, const USetAdder *sa);
123 ucase_addStringCaseClosure(const UCaseProps *csp, const UChar *s, int32_t length, const USetAdder *sa);
157 ucase_getType(const UCaseProps *csp, UChar32 c);
161 ucase_getTypeOrIgnorable(const UCaseProps *csp, UChar32 c);
164 ucase_isSoftDotted(const UCaseProps *csp, UChar32 c)
    [all...]
unistr_case_locale.cpp 36 if(csm->csp==NULL) {
37 csm->csp=ucase_getSingleton();
unistr_titlecase_brkiter.cpp 44 if(csm->csp==NULL) {
45 csm->csp=ucase_getSingleton();
ustr_titlecase_brkiter.cpp 38 if(csm->csp==NULL) {
39 csm->csp=ucase_getSingleton();
ustrcase_locale.cpp 72 if(csm->csp==NULL) {
73 csm->csp=ucase_getSingleton();
uniset_closure.cpp 185 const UCaseProps *csp = ucase_getSingleton(); local
217 ucase_addCaseClosure(csp, cp, &sa);
223 result = ucase_toFullLower(csp, cp, NULL, NULL, &full, "", &locCache);
226 result = ucase_toFullTitle(csp, cp, NULL, NULL, &full, "", &locCache);
229 result = ucase_toFullUpper(csp, cp, NULL, NULL, &full, "", &locCache);
232 result = ucase_toFullFolding(csp, cp, &full, 0);
242 if(!ucase_addStringCaseClosure(csp, str.getBuffer(), str.length(), &sa)) {
ustrcase.cpp 147 c=map(csm->csp, c, utf16_caseContextIterator, csc, &s, csm->locale, &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->csp, c)) {
250 c=ucase_toFullTitle(csm->csp, c, utf16_caseContextIterator, &csc, &s, csm->locale, &locCache);
330 ustr_foldCase(const UCaseProps *csp,
344 c=ucase_toFullFolding(csp, c, &s, options);
364 return ustr_foldCase(csm->csp, dest, destCapacity, src, srcLength, csm->options, pErrorCode);
442 csm.csp=ucase_getSingleton();
474 const UCaseProps *csp; local
501 csp=ucase_getSingleton()
    [all...]
ucasemap.cpp 54 csm->csp=ucase_getSingleton();
240 c=map(csm->csp, c, utf8_caseContextIterator, csc, &s, csm->locale, &locCache);
314 if((csm->options&U_TITLECASE_NO_BREAK_ADJUSTMENT)==0 && UCASE_NONE==ucase_getType(csm->csp, c)) {
326 if(UCASE_NONE!=ucase_getType(csm->csp, c)) {
343 c=ucase_toFullTitle(csm->csp, c, utf8_caseContextIterator, &csc, &s, csm->locale, &locCache);
420 utf8_foldCase(const UCaseProps *csp,
442 c=ucase_toFullFolding(csp, c, &s, options);
462 return utf8_foldCase(csm->csp, dest, destCapacity, src, srcLength, csm->options, pErrorCode);
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
unistr_case.cpp 146 csm.csp=ucase_getSingleton();
  /external/chromium_org/v8/test/cctest/
test-code-stubs-arm64.cc 62 __ SetStackPointer(csp);
64 __ Mov(jssp, csp);
118 __ Mov(csp, jssp);
119 __ SetStackPointer(csp);
test-utils-arm64.cc 272 // We should never write into csp here.
273 ASSERT(!xn.Is(csp));
323 ASSERT(__ StackPointer().Is(csp));
353 // Dump the stack pointer (csp and wcsp).
357 __ Add(tmp, csp, 4 * kXRegSize);
  /external/valgrind/main/callgrind/
bbcc.c 563 Int passed = 0, csp; local
632 csp = CLG_(current_call_stack).sp;
635 if ( (jmpkind == jk_Return) && (csp >0)) {
636 Int csp_up = csp-1;
697 if (CLG_(get_fn_node)(last_bb)->pop_on_jump && (csp>0)) {
699 call_entry* top_ce = &(CLG_(current_call_stack).entry[csp-1]);
743 if ((csp == 0) ||
768 csp = CLG_(current_call_stack).sp;
769 if (call_emulation && csp>0)
770 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/chromium_org/v8/src/arm64/
macro-assembler-arm64-inl.h 1243 ASSERT(!csp.Is(sp_));
1249 Bic(csp, temp, 0xf);
1251 Sub(csp, StackPointer(), space);
    [all...]
regexp-macro-assembler-arm64.cc 44 * - csp : Points to tip of C stack.
63 * ^^^ csp when called ^^^
83 * ^^^^^^^^^ csp ^^^^^^^^^
127 __ SetStackPointer(csp);
668 // The stack pointer should be csp on entry.
669 // csp[8]: address of the current isolate
670 // csp[0]: secondary link/return address used by native call
683 ASSERT(csp.Is(__ StackPointer()));
688 __ Add(frame_pointer(), csp, argument_registers.Count() * kPointerSize);
719 __ Subs(x10, csp, x10)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8WindowShell.cpp 48 #include "core/frame/csp/ContentSecurityPolicy.h"
229 ContentSecurityPolicy* csp = m_frame->document()->contentSecurityPolicy(); local
230 context->AllowCodeGenerationFromStrings(csp->allowEval(0, ContentSecurityPolicy::SuppressReport));
231 context->SetErrorMessageForCodeGenerationFromStrings(v8String(m_isolate, csp->evalDisabledErrorMessage()));

Completed in 590 milliseconds

1 2 3