OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:outIx
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/icu/source/common/
utrace.c
88
static void outputChar(char c, char *outBuf, int32_t *
outIx
, int32_t capacity, int32_t indent) {
99
if (*
outIx
==0 || /* case 1. */
100
(c!='\n' && c!=0 && *
outIx
< capacity && outBuf[(*
outIx
)-1]=='\n') || /* case 2. */
101
(c=='\n' && *
outIx
>=capacity)) /* case 3 */
105
if (*
outIx
< capacity) {
106
outBuf[*
outIx
] = ' ';
108
(*
outIx
)++;
112
if (*
outIx
< capacity) {
113
outBuf[*
outIx
] = c
[
all
...]
/external/icu4c/common/
utrace.c
88
static void outputChar(char c, char *outBuf, int32_t *
outIx
, int32_t capacity, int32_t indent) {
99
if (*
outIx
==0 || /* case 1. */
100
(c!='\n' && c!=0 && *
outIx
< capacity && outBuf[(*
outIx
)-1]=='\n') || /* case 2. */
101
(c=='\n' && *
outIx
>=capacity)) /* case 3 */
105
if (*
outIx
< capacity) {
106
outBuf[*
outIx
] = ' ';
108
(*
outIx
)++;
112
if (*
outIx
< capacity) {
113
outBuf[*
outIx
] = c
[
all
...]
Completed in 26 milliseconds