OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:nBuffer
(Results
1 - 2
of
2
) sorted by null
/external/icu4c/i18n/
winnmfmt.cpp
241
wchar_t *
nBuffer
= nStackBuffer;
245
nBuffer
[0] = 0x0000;
250
result = _vsnwprintf(
nBuffer
, STACK_BUFFER_SIZE, fmt, args);
263
nBuffer
= NEW_ARRAY(UChar, newLength + 1);
266
result = _vsnwprintf(
nBuffer
, newLength + 1, fmt, args);
277
// Note: (
nBuffer
[0] == L'-') will evaluate to 1 if there is a leading '-' in the
279
for (wchar_t *p = &
nBuffer
[
nBuffer
[0] == L'-']; *p != L'\0'; p += 1) {
302
result = GetCurrencyFormatW(fLCID, 0,
nBuffer
, &formatInfo.currency, buffer, STACK_BUFFER_SIZE);
308
int newLength = GetCurrencyFormatW(fLCID, 0,
nBuffer
, &formatInfo.currency, NULL, 0)
[
all
...]
/external/icu4c/test/intltest/
winnmtst.cpp
135
wchar_t *
nBuffer
= nStackBuffer;
139
nBuffer
[0] = 0x0000;
144
result = _vsnwprintf(
nBuffer
, STACK_BUFFER_SIZE, fmt, args);
157
nBuffer
= NEW_ARRAY(UChar, newLength + 1);
160
result = _vsnwprintf(
nBuffer
, newLength + 1, fmt, args);
172
// Note: (
nBuffer
[0] == L'-') will evaluate to 1 if there is a leading '-' in the
174
for (wchar_t *p = &
nBuffer
[
nBuffer
[0] == L'-']; *p != L'\0'; p += 1) {
187
result = GetCurrencyFormatW(lcid, 0,
nBuffer
, NULL, buffer, STACK_BUFFER_SIZE);
193
int newLength = GetCurrencyFormatW(lcid, 0,
nBuffer
, NULL, NULL, 0)
[
all
...]
Completed in 61 milliseconds