Home
last modified time | relevance | path

Searched refs:postfix_len (Results 1 – 3 of 3) sorted by relevance

/external/chromium/googleurl/src/
Durl_canon_icu.cc71 const static int postfix_len = 3; in appendURLEscapedChar() local
72 const static char postfix[postfix_len + 1] = "%3B"; // ";" percent-escaped in appendURLEscapedChar()
73 ucnv_cbFromUWriteBytes(from_args, postfix, postfix_len, 0, err); in appendURLEscapedChar()
/external/chromium/third_party/libevent/
Devdns.c2503 const int postfix_len = dom->len; in search_make_new() local
2504 char *const newname = (char *) malloc(base_len + need_to_append_dot + postfix_len + 1); in search_make_new()
2508 memcpy(newname + base_len + need_to_append_dot, postfix, postfix_len); in search_make_new()
2509 newname[base_len + need_to_append_dot + postfix_len] = 0; in search_make_new()
/external/v8/src/
Dapi.cc2978 int postfix_len = i::StrLength(postfix); in ObjectProtoToString() local
2980 int buf_len = prefix_len + str_len + postfix_len; in ObjectProtoToString()
2993 memcpy(ptr, postfix, postfix_len * v8::internal::kCharSize); in ObjectProtoToString()