Searched refs:textLength (Results 1 - 25 of 50) sorted by relevance

12

/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Dchariter.cpp22 : textLength(0), pos(0), begin(0), end(0) {
26 : textLength(length), pos(0), begin(0), end(length) {
27 if(textLength < 0) {
28 textLength = end = 0;
33 : textLength(length), pos(position), begin(0), end(length) {
34 if(textLength < 0) {
35 textLength = end = 0;
45 : textLength(length), pos(position), begin(textBegin), end(textEnd) {
46 if(textLength < 0) {
47 textLength
[all...]
H A Dicuuc40shim.cpp155 int32_t textLength,
158 return ubrk_open(type, locale, text, textLength, status);
186 int32_t textLength,
189 return ubrk_setText(bi, text, textLength, status);
344 UnicodeString(UBool isTerminated, const UChar *text, int32_t textLength) argument
345 : icu::UnicodeString(isTerminated, text, textLength)
152 ubrk_open_4_0(UBreakIteratorType type, const char *locale, const UChar *text, int32_t textLength, UErrorCode *status) argument
184 ubrk_setText_4_0(UBreakIterator* bi, const UChar* text, int32_t textLength, UErrorCode* status) argument
H A Dubrk.cpp34 int32_t textLength,
80 ubrk_setText(uBI, text, textLength, status);
97 int32_t textLength,
114 ubrk_setText(uBI, text, textLength, status);
164 int32_t textLength,
169 utext_openUChars(&ut, text, textLength, status);
31 ubrk_open(UBreakIteratorType type, const char *locale, const UChar *text, int32_t textLength, UErrorCode *status) argument
94 ubrk_openRules( const UChar *rules, int32_t rulesLength, const UChar *text, int32_t textLength, UParseError *parseErr, UErrorCode *status) argument
162 ubrk_setText(UBreakIterator* bi, const UChar* text, int32_t textLength, UErrorCode* status) argument
H A Duchriter.cpp79 && textLength == realThat.textLength
87 return ustr_hashUCharsN(text, textLength) ^ pos ^ begin ^ end;
356 end = textLength = newTextLength;
362 result = UnicodeString(text, textLength);
H A Dunistr.cpp223 int32_t textLength)
227 doReplace(0, 0, text, 0, textLength);
232 int32_t textLength)
239 } else if(textLength < -1 ||
240 (textLength == -1 && !isTerminated) ||
241 (textLength >= 0 && isTerminated && text[textLength] != 0)
245 if(textLength == -1) {
247 textLength = u_strlen(text);
249 setArray((UChar *)text, textLength, isTerminate
222 UnicodeString(const UChar *text, int32_t textLength) argument
230 UnicodeString(UBool isTerminated, const UChar *text, int32_t textLength) argument
1168 setTo(UBool isTerminated, const UChar *text, int32_t textLength) argument
[all...]
H A Dusc_impl.c43 int32_t textLength; member in struct:UScriptRun
252 scriptRun->textLength = length;
263 if (scriptRun == NULL || scriptRun->scriptLimit >= scriptRun->textLength) {
270 for (scriptRun->scriptStart = scriptRun->scriptLimit; scriptRun->scriptLimit < scriptRun->textLength; scriptRun->scriptLimit += 1) {
280 if (high >= 0xD800 && high <= 0xDBFF && scriptRun->scriptLimit < scriptRun->textLength - 1) {
/macosx-10.10.1/Security-57031.1.35/Security/sec/securityd/
H A DSecKeybagSupport.c115 keyclass_t keyclass, uint32_t textLength, const uint8_t *source, keyclass_t *actual_class, CFMutableDataRef dest, CFErrorRef *error) {
121 kernResult = aks_wrap_key(source, textLength, keyclass, keybag, CFDataGetMutableBytePtr(dest), &dest_len, actual_class);
123 kernResult = aks_unwrap_key(source, textLength, keyclass, keybag, CFDataGetMutableBytePtr(dest), &dest_len);
147 if (dest_len >= textLength + 8) {
148 memcpy(CFDataGetMutableBytePtr(dest), source, textLength);
149 memset(CFDataGetMutableBytePtr(dest) + textLength, 8, 8);
150 CFDataSetLength(dest, textLength + 8);
155 if (dest_len + 8 >= textLength) {
156 memcpy(CFDataGetMutableBytePtr(dest), source, textLength - 8);
157 CFDataSetLength(dest, textLength
114 ks_crypt(uint32_t operation, keybag_handle_t keybag, keyclass_t keyclass, uint32_t textLength, const uint8_t *source, keyclass_t *actual_class, CFMutableDataRef dest, CFErrorRef *error) argument
166 ks_crypt_acl(uint32_t operation, keybag_handle_t keybag, keyclass_t keyclass, uint32_t textLength, const uint8_t *source, CFMutableDataRef dest, CFDataRef acl, CFDataRef acm_context, CFDataRef caller_access_groups, CFErrorRef *error) argument
[all...]
H A DSecKeybagSupport.h84 keyclass_t keyclass, uint32_t textLength, const uint8_t *source, keyclass_t *actual_class,
88 keyclass_t keyclass, uint32_t textLength, const uint8_t *source,
/macosx-10.10.1/ICU-531.30/icuSources/common/unicode/
H A Durep.h102 * @param textLength the number of UChars at text, or -1 if text
110 int32_t textLength);
H A Dubrk.h207 * @param textLength The number of characters in text, or -1 if null-terminated.
217 int32_t textLength,
227 * @param textLength The number of characters in text, or -1 if null-terminated.
239 int32_t textLength,
310 * @param textLength The length of the text
317 int32_t textLength,
H A Dchariter.h665 int32_t textLength; member in class:CharacterIterator
718 return textLength;
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dsearch.cpp36 m_search_->textLength = other.m_search_->textLength;
159 m_search_->textLength = m_text_.length();
190 m_search_->textLength == that.m_search_->textLength &&
193 m_search_->textLength * sizeof(UChar)) == 0));
222 setOffset(m_search_->textLength, status);
223 return handlePrev(m_search_->textLength, status);
244 int32_t textlength = m_search_->textLength;
286 offset = m_search_->textLength;
[all...]
H A Dutrans.cpp438 int32_t* textLength,
451 int32_t textLen = (textLength == NULL || *textLength < 0)
452 ? u_strlen(text) : *textLength;
461 if(textLength != NULL) {
462 *textLength = textLen;
469 int32_t* textLength,
481 int32_t textLen = (textLength == NULL || *textLength < 0)
482 ? u_strlen(text) : *textLength;
[all...]
H A Dicuin40shim.cpp113 int32_t* textLength,
119 return utrans_transUChars(trans, text, textLength, textCapacity, start, limit, status);
111 utrans_transUChars_4_0(const UTransliterator* trans, UChar* text, int32_t* textLength, int32_t textCapacity, int32_t start, int32_t* limit, UErrorCode* status) argument
H A Ducoleitr.cpp266 int32_t textLength,
272 if (coll == NULL || (text == NULL && textLength != 0)) {
282 UnicodeString s((UBool)(textLength < 0), text, textLength);
488 int32_t textLength,
495 if ((text == NULL && textLength != 0)) {
499 UnicodeString s((UBool)(textLength < 0), text, textLength);
264 ucol_openElements(const UCollator *coll, const UChar *text, int32_t textLength, UErrorCode *status) argument
486 ucol_setText( UCollationElements *elems, const UChar *text, int32_t textLength, UErrorCode *status) argument
H A Dunum.cpp324 int32_t textLength,
331 const UnicodeString src((UBool)(textLength == -1), text, textLength);
352 int32_t textLength,
357 parseRes(res, fmt, text, textLength, parsePos, status);
364 int32_t textLength,
369 parseRes(res, fmt, text, textLength, parsePos, status);
376 int32_t textLength,
381 parseRes(res, fmt, text, textLength, parsePos, status);
388 int32_t textLength,
321 parseRes(Formattable& res, const UNumberFormat* fmt, const UChar* text, int32_t textLength, int32_t *parsePos , UErrorCode *status) argument
350 unum_parse( const UNumberFormat* fmt, const UChar* text, int32_t textLength, int32_t *parsePos , UErrorCode *status) argument
362 unum_parseInt64( const UNumberFormat* fmt, const UChar* text, int32_t textLength, int32_t *parsePos , UErrorCode *status) argument
374 unum_parseDouble( const UNumberFormat* fmt, const UChar* text, int32_t textLength, int32_t *parsePos , UErrorCode *status) argument
386 unum_parseDecimal(const UNumberFormat* fmt, const UChar* text, int32_t textLength, int32_t *parsePos , char *outBuf, int32_t outBufLength, UErrorCode *status) argument
419 unum_parseDoubleCurrency(const UNumberFormat* fmt, const UChar* text, int32_t textLength, int32_t* parsePos, UChar* currency, UErrorCode* status) argument
810 unum_parseToUFormattable(const UNumberFormat* fmt, UFormattable *result, const UChar* text, int32_t textLength, int32_t* parsePos, UErrorCode* status) argument
[all...]
H A Dusrchimp.h135 int32_t textLength; // exact length member in struct:USearch
153 int32_t textLength; // exact length member in struct:UPattern
H A Dusearch.cpp294 uint32_t patternlength = pattern->textLength;
306 ucol_setText(coleiter, pattern->text, pattern->textLength, status);
366 uint32_t patternlength = pattern->textLength;
377 ucol_setText(coleiter, pattern->text, pattern->textLength, status);
438 int32_t length = pattern->textLength;
702 int32_t textlength = strsrch->search->textLength;
770 setColEIterOffset(strsrch->textIter, strsrch->search->textLength);
950 // strsrch->search->textLength)
956 strsrch->search->textLength) > 0xFF;
967 strsrch->search->textLength)
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/i18n/unicode/
H A Ducoleitr.h117 * @param textLength The number of characters in text, or -1 if null-terminated
125 int32_t textLength,
254 * @param textLength The length of text, or -1 if null-terminated.
262 int32_t textLength,
H A Dunum.h609 * @param textLength The length of text, or -1 if null-terminated.
624 int32_t textLength,
633 * @param textLength The length of text, or -1 if null-terminated.
648 int32_t textLength,
657 * @param textLength The length of text, or -1 if null-terminated.
672 int32_t textLength,
685 * @param textLength The length of text, or -1 if null-terminated.
705 int32_t textLength,
716 * @param textLength the length of text, or -1 if null-terminated
733 int32_t textLength,
[all...]
H A Dutrans.h442 * length of the result is returned in *textLength, if textLength is
443 * non-NULL. *textLength may be greater than textCapacity, but only
450 * @param textLength a pointer to the length of the string in text.
453 * *textLength. If textLength is NULL then the string is assumed to
472 int32_t* textLength,
483 * The actual length of the result is returned in *textLength, if
484 * textLength is non-NULL. *textLength ma
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/include/security_asn1/
H A Dprerror.h66 PRIntn textLength, const char *text);
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_asn1/Security/
H A Dprerror.h66 PRIntn textLength, const char *text);
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_asn1/lib/
H A Dprerror.h66 PRIntn textLength, const char *text);
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_asn1/security_asn1/
H A Dprerror.h66 PRIntn textLength, const char *text);

Completed in 247 milliseconds

12