OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:truncsize
(Results
1 - 2
of
2
) sorted by null
/external/icu/icu4c/source/tools/genrb/
derb.cpp
42
static int32_t
truncsize
= DERB_DEFAULT_TRUNC;
variable
145
truncsize
= atoi(options[4].value); /* user defined printable size */
147
truncsize
= DERB_DEFAULT_TRUNC; /* we'll use default omitting size */
391
if(opt_truncate && len >
truncsize
) {
395
(long)len, (long)
truncsize
/2);
397
len =
truncsize
;
435
if(opt_truncate && len >
truncsize
) {
439
(long)len, (long)(
truncsize
/2));
441
len =
truncsize
/2;
494
if(opt_truncate && len >
truncsize
) {
[
all
...]
/external/icu/icu4c/source/samples/uresb/
uresb.c
57
static int32_t
truncsize
= URESB_DEFAULTTRUNC;
variable
139
truncsize
= atoi(options[5].value); /* user defined printable size */
141
truncsize
= URESB_DEFAULTTRUNC; /* we'll use default omitting size */
240
if(trunc && len >
truncsize
) {
242
u_fprintf(out, "// WARNING: this string, size %d is truncated to %d\n", len,
truncsize
/2);
243
len =
truncsize
/2;
275
if(trunc && len >
truncsize
) {
277
u_fprintf(out, "// WARNING: this resource, size %li is truncated to %li\n", len,
truncsize
/2);
278
len =
truncsize
/2;
Completed in 705 milliseconds