OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ap_copy
(Results
1 - 3
of
3
) sorted by null
/external/chromium/base/
stringprintf.cc
47
va_list
ap_copy
;
local
48
GG_VA_COPY(
ap_copy
, ap);
53
int result = vsnprintfT(stack_buf, arraysize(stack_buf), format,
ap_copy
);
54
va_end(
ap_copy
);
96
GG_VA_COPY(
ap_copy
, ap);
97
result = vsnprintfT(&mem_buf[0], mem_length, format,
ap_copy
);
98
va_end(
ap_copy
);
/external/chromium_org/base/strings/
stringprintf.cc
50
va_list
ap_copy
;
local
51
GG_VA_COPY(
ap_copy
, ap);
56
int result = vsnprintfT(stack_buf, arraysize(stack_buf), format,
ap_copy
);
57
va_end(
ap_copy
);
99
GG_VA_COPY(
ap_copy
, ap);
100
result = vsnprintfT(&mem_buf[0], mem_length, format,
ap_copy
);
101
va_end(
ap_copy
);
/external/chromium_org/third_party/npapi/npspy/common/
format.cpp
120
va_list
ap_copy
;
local
121
GG_VA_COPY(
ap_copy
, ap);
126
int result = vsnprintf(stack_buf, arraysize(stack_buf), format,
ap_copy
);
127
va_end(
ap_copy
);
167
GG_VA_COPY(
ap_copy
, ap);
168
result = vsnprintf(&mem_buf[0], mem_length, format,
ap_copy
);
169
va_end(
ap_copy
);
[
all
...]
Completed in 401 milliseconds