Home
last modified time | relevance | path

Searched refs:tempBuffer (Results 1 – 4 of 4) sorted by relevance

/external/icu4c/test/intltest/
Dmsfmrgts.cpp104 UnicodeString tempBuffer; in Test4074764() local
106 tempBuffer = messageFormatter->format(params, 2, tempBuffer, pos, status); in Test4074764()
107 if( tempBuffer != "Message with param:BUG" || failure(status, "messageFormat->format")) in Test4074764()
109 logln("Formatted with one extra param : " + tempBuffer); in Test4074764()
123 tempBuffer.remove(); in Test4074764()
124 tempBuffer = messageFormatter->format(NULL, 0, tempBuffer, pos, status); in Test4074764()
126 if( tempBuffer != "Message without param" || failure(status, "messageFormat->format")) in Test4074764()
128 logln("Formatted with no params : " + tempBuffer); in Test4074764()
130 tempBuffer.remove(); in Test4074764()
131 tempBuffer = messageFormatter->format(params, 2, tempBuffer, pos, status); in Test4074764()
[all …]
/external/chromium/third_party/icu/source/test/intltest/
Dmsfmrgts.cpp103 UnicodeString tempBuffer; in Test4074764() local
105 tempBuffer = messageFormatter->format(params, 2, tempBuffer, pos, status); in Test4074764()
106 if( tempBuffer != "Message with param:BUG" || failure(status, "messageFormat->format")) in Test4074764()
108 logln("Formatted with one extra param : " + tempBuffer); in Test4074764()
122 tempBuffer.remove(); in Test4074764()
123 tempBuffer = messageFormatter->format(NULL, 0, tempBuffer, pos, status); in Test4074764()
125 if( tempBuffer != "Message without param" || failure(status, "messageFormat->format")) in Test4074764()
127 logln("Formatted with no params : " + tempBuffer); in Test4074764()
129 tempBuffer.remove(); in Test4074764()
130 tempBuffer = messageFormatter->format(params, 2, tempBuffer, pos, status); in Test4074764()
[all …]
/external/yaffs2/yaffs2/
Dyaffs_guts.c189 if (dev->tempBuffer[i].line == 0) { in yaffs_GetTempBuffer()
190 dev->tempBuffer[i].line = lineNo; in yaffs_GetTempBuffer()
194 dev->tempBuffer[j].maxLine = in yaffs_GetTempBuffer()
195 dev->tempBuffer[j].line; in yaffs_GetTempBuffer()
198 return dev->tempBuffer[i].buffer; in yaffs_GetTempBuffer()
206 T(YAFFS_TRACE_BUFFERS, (TSTR(" %d "), dev->tempBuffer[i].line)); in yaffs_GetTempBuffer()
225 if (dev->tempBuffer[i].buffer == buffer) { in yaffs_ReleaseTempBuffer()
226 dev->tempBuffer[i].line = 0; in yaffs_ReleaseTempBuffer()
249 if (dev->tempBuffer[i].buffer == buffer) in yaffs_IsManagedTempBuffer()
6419 dev->tempBuffer[i].line = 0; /* not in use */ in yaffs_GutsInitialise()
[all …]
Dyaffs_guts.h739 yaffs_TempBuffer tempBuffer[YAFFS_N_TEMP_BUFFERS]; member