OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bufCapacity
(Results
1 - 10
of
10
) sorted by null
/external/chromium/third_party/icu/public/i18n/unicode/
utrans.h
535
* @param
bufCapacity
the capacity of the buffer. Ignored if buf is
538
* zero-termination. This may be greater than
bufCapacity
.
544
int32_t
bufCapacity
);
570
* @param
bufCapacity
the capacity of the buffer. Ignored if buf is
573
* zero-termination. This may be greater than
bufCapacity
.
579
int32_t
bufCapacity
);
/external/icu4c/i18n/unicode/
utrans.h
555
* @param
bufCapacity
the capacity of the buffer. Ignored if buf is
558
* zero-termination. This may be greater than
bufCapacity
.
564
int32_t
bufCapacity
);
590
* @param
bufCapacity
the capacity of the buffer. Ignored if buf is
593
* zero-termination. This may be greater than
bufCapacity
.
599
int32_t
bufCapacity
);
/external/chromium/third_party/icu/source/tools/toolutil/
ucbuf.c
42
int32_t
bufCapacity
;
219
ucnv_toUnicode(buf->conv,&target,target+(buf->
bufCapacity
-offset),
288
ucnv_toUnicode(buf->conv,&target,target+(buf->
bufCapacity
-offset),
501
buf->
bufCapacity
=MAX_U_BUF;
503
buf->
bufCapacity
=buf->remaining+buf->signatureLength+1/*for terminating nul*/;
505
buf->buffer=(UChar*) uprv_malloc(U_SIZEOF_UCHAR * buf->
bufCapacity
);
/external/icu4c/tools/toolutil/
ucbuf.c
42
int32_t
bufCapacity
;
219
ucnv_toUnicode(buf->conv,&target,target+(buf->
bufCapacity
-offset),
288
ucnv_toUnicode(buf->conv,&target,target+(buf->
bufCapacity
-offset),
501
buf->
bufCapacity
=MAX_U_BUF;
503
buf->
bufCapacity
=buf->remaining+buf->signatureLength+1/*for terminating nul*/;
505
buf->buffer=(UChar*) uprv_malloc(U_SIZEOF_UCHAR * buf->
bufCapacity
);
/external/chromium/third_party/icu/source/i18n/
utrans.cpp
241
int32_t
bufCapacity
) {
242
return ((Transliterator*) trans)->getID().extract(0, 0x7fffffff, buf,
bufCapacity
, US_INV);
298
int32_t
bufCapacity
) {
299
return Transliterator::getAvailableID(index).extract(0, 0x7fffffff, buf,
bufCapacity
, US_INV);
uregex.cpp
864
static inline void appendToBuf(UChar c, int32_t *idx, UChar *buf, int32_t
bufCapacity
) {
865
if (*idx <
bufCapacity
) {
[
all
...]
/external/icu4c/i18n/
utrans.cpp
241
int32_t
bufCapacity
) {
242
return ((Transliterator*) trans)->getID().extract(0, 0x7fffffff, buf,
bufCapacity
, US_INV);
298
int32_t
bufCapacity
) {
299
return Transliterator::getAvailableID(index).extract(0, 0x7fffffff, buf,
bufCapacity
, US_INV);
uregex.cpp
[
all
...]
/external/chromium/third_party/icu/source/tools/genrb/
wrtxml.cpp
386
int32_t
bufCapacity
= srcLen*4;
394
buf = (char*) (uprv_malloc(
bufCapacity
));
399
buf = convertAndEscape(&buf,
bufCapacity
, &bufLen, src, srcLen,status);
[
all
...]
/external/icu4c/tools/genrb/
wrtxml.cpp
386
int32_t
bufCapacity
= srcLen*4;
394
buf = (char*) (uprv_malloc(
bufCapacity
));
399
buf = convertAndEscape(&buf,
bufCapacity
, &bufLen, src, srcLen,status);
[
all
...]
Completed in 408 milliseconds