Home
last modified time | relevance | path

Searched refs:buffer (Results 851 - 875 of 6014) sorted by relevance

1...<<31323334353637383940>>...241

/third_party/mesa3d/src/imagination/vulkan/pds/
H A Dpvr_pds.h132 void (*write_data)(void *data, uint32_t *buffer);
320 /* Shared register buffer base address (VDM/CDM context load case only). */
364 * buffer_size_in_bytes - buffer size in bytes if vertex attribute is sourced
365 * from buffer object
367 * num_vertices - number of vertices in buffer. Used for OOB checking.
412 * null_idx - Indicates no index buffer is bound, so every index should be
478 /* Number of persistent temps in dword to load/store for each buffer. */
480 /* The device address for loading/storing persistent temps for each buffer.
482 * into pt registers for the buffer.
616 uint32_t *restrict buffer,
[all...]
/third_party/skia/src/core/
H A DSkImageFilter.cpp172 bool SkImageFilter_Base::Common::unflatten(SkReadBuffer& buffer, int expectedCount) { in unflatten() argument
173 const int count = buffer.readInt(); in unflatten()
174 if (!buffer.validate(count >= 0)) { in unflatten()
177 if (!buffer.validate(expectedCount < 0 || count == expectedCount)) { in unflatten()
189 fInputs.push_back(buffer.readBool() ? buffer.readImageFilter() : nullptr); in unflatten()
190 if (!buffer.isValid()) { in unflatten()
195 buffer.readRect(&rect); in unflatten()
196 if (!buffer.isValid() || !buffer in unflatten()
[all...]
/third_party/protobuf/js/binary/
H A Dutils.js781 * Counts the number of contiguous varints in a buffer.
782 * @param {!Uint8Array} buffer The buffer to scan.
783 * @param {number} start The starting point in the buffer to scan.
784 * @param {number} end The end point in the buffer to scan.
785 * @return {number} The number of varints in the buffer.
787 jspb.utils.countVarints = function(buffer, start, end) {
788 // Count how many high bits of each byte were set in the buffer.
791 count += buffer[i] >> 7;
794 // The number of varints in the buffer equal
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Dintltest.cpp78 char buffer[64]; // nos changed from 10 to 64 in operator +() local
79 char danger = 'p'; // guard against overrunning the buffer (rtg) in operator +()
81 sprintf(buffer, "%ld", num); in operator +()
84 return left + buffer; in operator +()
91 char buffer[64]; // nos changed from 10 to 64 in operator +() local
92 char danger = 'p'; // guard against overrunning the buffer (rtg) in operator +()
94 sprintf(buffer, "%lu", num); in operator +()
97 return left + buffer; in operator +()
103 char buffer[64]; // nos changed from 10 to 64 in Int64ToUnicodeString() local
104 char danger = 'p'; // guard against overrunning the buffer (rt in Int64ToUnicodeString()
119 char buffer[64]; // nos changed from 10 to 64 DoubleToUnicodeString() local
133 char buffer[64]; // was 32, made it arbitrarily bigger (rtg) operator +() local
970 char buffer[4000]; log() local
984 char buffer[4000]; logln() local
998 char buffer[4000]; logKnownIssue() local
1036 char buffer[4000]; info() local
1048 char buffer[4000]; infoln() local
1060 char buffer[4000]; err() local
1071 char buffer[4000]; errln() local
1082 char buffer[4000]; dataerrln() local
1093 char buffer[4000]; errcheckln() local
1151 char buffer[30000]; LL_message() local
[all...]
/third_party/glfw/tests/
H A Dcursor.c100 unsigned char buffer[64 * 64 * 4]; in create_cursor_frame() local
101 const GLFWimage image = { 64, 64, buffer }; in create_cursor_frame()
107 buffer[i++] = 255; in create_cursor_frame()
108 buffer[i++] = 255; in create_cursor_frame()
109 buffer[i++] = 255; in create_cursor_frame()
110 buffer[i++] = (unsigned char) (255 * star(x, y, t)); in create_cursor_frame()
120 unsigned char buffer[32 * 32 * 4]; in create_tracking_cursor() local
121 const GLFWimage image = { 32, 32, buffer }; in create_tracking_cursor()
129 buffer[i++] = 255; in create_tracking_cursor()
130 buffer[ in create_tracking_cursor()
[all...]
/third_party/backends/backend/genesys/
H A Dscanner_interface_usb.cpp93 std::uint8_t buffer[2]; in write_register() local
95 buffer[0] = address & 0xff; in write_register()
96 buffer[1] = value; in write_register()
104 2, buffer); in write_register()
130 std::vector<std::uint8_t> buffer; in write_registers() local
131 buffer.reserve(regs.size() * 2); in write_registers()
133 /* copy registers and values in data buffer */ in write_registers()
135 buffer.push_back(r.address); in write_registers()
136 buffer.push_back(r.value); in write_registers()
139 DBG(DBG_io, "%s (elems= %zu, size = %zu)\n", __func__, regs.size(), buffer in write_registers()
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A Dwinnmfmt.cpp147 static UErrorCode GetEquivalentWindowsLocaleName(const Locale& locale, UnicodeString** buffer) in GetEquivalentWindowsLocaleName() argument
202 *buffer = new UnicodeString(windowsLocaleName); in GetEquivalentWindowsLocaleName()
354 we don't need to reallocate the buffer. */ in format()
393 wchar_t *buffer = stackBuffer; in format() local
397 buffer[0] = 0x0000; in format()
415 result = GetCurrencyFormatEx(localeName, 0, nBuffer, &formatInfo.currency, buffer, STACK_BUFFER_SIZE); in format()
423 buffer = NEW_ARRAY(wchar_t, newLength); in format()
424 buffer[0] = 0x0000; in format()
425 GetCurrencyFormatEx(localeName, 0, nBuffer, &formatInfo.currency, buffer, newLength); in format()
437 result = GetNumberFormatEx(localeName, 0, nBuffer, &formatInfo.number, buffer, STACK_BUFFER_SIZ in format()
[all...]
/third_party/icu/icu4c/source/i18n/
H A Dwinnmfmt.cpp144 static UErrorCode GetEquivalentWindowsLocaleName(const Locale& locale, UnicodeString** buffer) in GetEquivalentWindowsLocaleName() argument
197 *buffer = new UnicodeString(windowsLocaleName); in GetEquivalentWindowsLocaleName()
353 we don't need to reallocate the buffer. */ in format()
392 wchar_t *buffer = stackBuffer; in format() local
396 buffer[0] = 0x0000; in format()
414 result = GetCurrencyFormatEx(localeName, 0, nBuffer, &formatInfo.currency, buffer, STACK_BUFFER_SIZE); in format()
422 buffer = NEW_ARRAY(wchar_t, newLength); in format()
423 buffer[0] = 0x0000; in format()
424 GetCurrencyFormatEx(localeName, 0, nBuffer, &formatInfo.currency, buffer, newLength); in format()
436 result = GetNumberFormatEx(localeName, 0, nBuffer, &formatInfo.number, buffer, STACK_BUFFER_SIZ in format()
[all...]
/third_party/libphonenumber/cpp/src/phonenumbers/utf/
H A Dunicodetext.cc59 // This routine is called only when we've discovered that a UTF-8 buffer in ConvertToInterchangeValid()
71 // reads, it is safe to change the buffer in place. It returns the in ConvertToInterchangeValid()
113 // Otherwise, allocate a new buffer. in reserve()
117 // If there is an old buffer, copy it into the new buffer. in reserve()
120 if (ours_) delete[] data_; // If we owned the old buffer, free it. in reserve()
123 ours_ = true; // We own the new buffer. in reserve()
139 // This implementation of clear() deallocates the buffer if we're an owner.
155 if (ours_ && data_) delete[] data_; // If we owned the old buffer, free it. in TakeOwnershipOf()
163 if (ours_ && data_) delete[] data_; // If we owned the old buffer, fre in PointTo()
232 CopyUTF8(const char* buffer, int byte_length) CopyUTF8() argument
242 UnsafeCopyUTF8(const char* buffer, int byte_length) UnsafeCopyUTF8() argument
250 TakeOwnershipOfUTF8(char* buffer, int byte_length, int byte_capacity) TakeOwnershipOfUTF8() argument
262 UnsafeTakeOwnershipOfUTF8(char* buffer, int byte_length, int byte_capacity) UnsafeTakeOwnershipOfUTF8() argument
271 PointToUTF8(const char* buffer, int byte_length) PointToUTF8() argument
283 UnsafePointToUTF8(const char* buffer, int byte_length) UnsafePointToUTF8() argument
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Ddouble-conversion-string-to-double.cpp588 buffer[kBufferSize]; // NOLINT: size is known at compile time.
591 // Copy significant digits of the integer part (if any) to the buffer.
595 buffer[buffer_pos++] = static_cast<char>(*current);
597 // Will later check if it's an octal in the buffer.
640 buffer[buffer_pos++] = static_cast<char>(*current);
730 char* start = buffer;
732 buffer + buffer_pos,
746 buffer[buffer_pos++] = '1';
751 buffer[buffer_pos] = '\0';
753 // Code above ensures there are no leading zeros and the buffer ha
[all...]
H A Dwinnmfmt.cpp144 static UErrorCode GetEquivalentWindowsLocaleName(const Locale& locale, UnicodeString** buffer) in GetEquivalentWindowsLocaleName() argument
196 *buffer = new UnicodeString(windowsLocaleName); in GetEquivalentWindowsLocaleName()
348 we don't need to reallocate the buffer. */ in format()
387 wchar_t *buffer = stackBuffer; in format() local
391 buffer[0] = 0x0000; in format()
409 result = GetCurrencyFormatEx(localeName, 0, nBuffer, &formatInfo.currency, buffer, STACK_BUFFER_SIZE); in format()
417 buffer = NEW_ARRAY(wchar_t, newLength); in format()
418 buffer[0] = 0x0000; in format()
419 GetCurrencyFormatEx(localeName, 0, nBuffer, &formatInfo.currency, buffer, newLength); in format()
431 result = GetNumberFormatEx(localeName, 0, nBuffer, &formatInfo.number, buffer, STACK_BUFFER_SIZ in format()
[all...]
/third_party/skia/third_party/externals/freetype/src/tools/ftrandom/
H A Dftrandom.c353 char buffer[1025]; in FindFonts() local
377 snprintf( buffer, sizeof ( buffer ), in FindFonts()
379 if ( stat( buffer, &statb ) == -1 || S_ISDIR( statb.st_mode ) ) in FindFonts()
381 if ( !extensions || extmatch( buffer, extensions ) ) in FindFonts()
394 fontlist[fcnt].name = strdup( buffer ); in FindFonts()
440 static char buffer[8096]; in copyfont() local
461 while ( ( len = fread( buffer, 1, sizeof ( buffer ), good ) ) > 0 ) in copyfont()
462 fwrite( buffer, in copyfont()
520 char buffer[1024]; do_test() local
[all...]
/third_party/skia/third_party/externals/harfbuzz/test/shape/data/aots/
H A Dhb-aots-tester.cpp33 : buffer(buffer_), face(face_), font(font_), in TestData()
41 hb_buffer_destroy (buffer); in ~TestData()
44 hb_buffer_t *buffer; member
80 // setup buffer in runTest()
81 hb_buffer_t *buffer = hb_buffer_create(); in runTest() local
82 hb_buffer_set_direction(buffer, HB_DIRECTION_LTR); in runTest()
83 hb_buffer_set_script(buffer, HB_SCRIPT_LATIN); in runTest()
84 hb_buffer_set_language(buffer, hb_language_from_string("en", 2)); in runTest()
86 hb_buffer_add_utf32(buffer, in, nbIn, 0, nbIn); in runTest()
119 hb_shape(font, buffer, feature in runTest()
[all...]
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/
H A DQueueSubmitValidationTests.cpp24 // Test submitting with a mapped buffer is disallowed
26 // Create a map-write buffer. in TEST_F()
31 wgpu::Buffer buffer = device.CreateBuffer(&descriptor); in TEST_F() local
33 // Create a fake copy destination buffer in TEST_F()
37 // Create a command buffer that reads from the mappable buffer. in TEST_F()
41 encoder.CopyBufferToBuffer(buffer, 0, targetBuffer, 0, kBufferSize); in TEST_F()
47 // Submitting when the buffer has never been mapped should succeed in TEST_F()
52 encoder.CopyBufferToBuffer(buffer, 0, targetBuffer, 0, kBufferSize); in TEST_F()
56 // Map the buffer, submittin in TEST_F()
103 wgpu::Buffer buffer = device.CreateBuffer(&descriptor); TEST_F() local
139 wgpu::Buffer buffer = device.CreateBuffer(&descriptor); TEST_F() local
143 wgpu::Buffer buffer; TEST_F() member
[all...]
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fInternalFormatQueryTests.cpp231 // Query to larger buffer in iterate()
233 glw::GLint buffer[2] = { defaultValue, defaultValue }; in iterate() local
235 m_testCtx.getLog() << tcu::TestLog::Message << "Querying GL_NUM_SAMPLE_COUNTS to larger-than-needed buffer." << tcu::TestLog::EndMessage; in iterate()
236 gl.getInternalformativ(GL_TEXTURE_2D_MULTISAMPLE, GL_RGBA8, GL_NUM_SAMPLE_COUNTS, 2, buffer); in iterate()
239 if (buffer[1] != defaultValue) in iterate()
246 // Query to empty buffer in iterate()
248 glw::GLint buffer[1] = { defaultValue }; in iterate() local
250 m_testCtx.getLog() << tcu::TestLog::Message << "Querying GL_NUM_SAMPLE_COUNTS to zero-sized buffer." << tcu::TestLog::EndMessage; in iterate()
251 gl.getInternalformativ(GL_TEXTURE_2D_MULTISAMPLE, GL_RGBA8, GL_NUM_SAMPLE_COUNTS, 0, buffer); in iterate()
254 if (buffer[ in iterate()
325 glw::GLint buffer[3] = { defaultValue, defaultValue, defaultValue }; iterate() local
340 glw::GLint buffer[1] = { defaultValue }; iterate() local
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/glx/
H A Dglx_utils.cpp21 // Write nulls to the buffer so that if XGetErrorText fails, converting to an std::string will in XErrorToString()
23 char buffer[256] = {0}; in XErrorToString() local
24 XGetErrorText(display, status, buffer, ArraySize(buffer)); in XErrorToString()
25 return std::string(buffer); in XErrorToString()
/third_party/icu/icu4c/source/tools/gennorm2/
H A Dn2builder.cpp116 char buffer[U_MAX_VERSION_STRING_LENGTH]; in setUnicodeVersion() local
117 u_versionToString(unicodeVersion, buffer); in setUnicodeVersion()
119 buffer, v); in setUnicodeVersion()
213 UBool Normalizer2DataBuilder::mappingHasCompBoundaryAfter(const BuilderReorderingBuffer &buffer, in mappingHasCompBoundaryAfter() argument
215 if(buffer.isEmpty()) { in mappingHasCompBoundaryAfter()
218 int32_t lastStarterIndex=buffer.lastStarterIndex(); in mappingHasCompBoundaryAfter()
222 const int32_t lastIndex=buffer.length()-1; in mappingHasCompBoundaryAfter()
223 if(mappingType==Norm::ONE_WAY && lastStarterIndex<lastIndex && buffer.ccAt(lastIndex)>1) { in mappingHasCompBoundaryAfter()
231 UChar32 starter=buffer.charAt(lastStarterIndex); in mappingHasCompBoundaryAfter()
238 0<lastStarterIndex && Hangul::isJamoL(buffer in mappingHasCompBoundaryAfter()
338 BuilderReorderingBuffer buffer; postProcess() local
[all...]
/third_party/skia/third_party/externals/icu/source/tools/gennorm2/
H A Dn2builder.cpp116 char buffer[U_MAX_VERSION_STRING_LENGTH]; in setUnicodeVersion() local
117 u_versionToString(unicodeVersion, buffer); in setUnicodeVersion()
119 buffer, v); in setUnicodeVersion()
213 UBool Normalizer2DataBuilder::mappingHasCompBoundaryAfter(const BuilderReorderingBuffer &buffer, in mappingHasCompBoundaryAfter() argument
215 if(buffer.isEmpty()) { in mappingHasCompBoundaryAfter()
218 int32_t lastStarterIndex=buffer.lastStarterIndex(); in mappingHasCompBoundaryAfter()
222 const int32_t lastIndex=buffer.length()-1; in mappingHasCompBoundaryAfter()
223 if(mappingType==Norm::ONE_WAY && lastStarterIndex<lastIndex && buffer.ccAt(lastIndex)>1) { in mappingHasCompBoundaryAfter()
231 UChar32 starter=buffer.charAt(lastStarterIndex); in mappingHasCompBoundaryAfter()
238 0<lastStarterIndex && Hangul::isJamoL(buffer in mappingHasCompBoundaryAfter()
338 BuilderReorderingBuffer buffer; postProcess() local
[all...]
/third_party/node/deps/v8/src/profiler/
H A Dheap-snapshot-generator.cc24 #include "src/objects/js-array-buffer-inl.h"
1208 SetInternalReference(entry, "buffer", view.buffer(), in ExtractJSObjectReferences()
1607 JSArrayBuffer buffer) { in ExtractJSArrayBufferReferences()
1609 if (!buffer.backing_store()) return; in ExtractJSArrayBufferReferences()
1610 size_t data_size = buffer.byte_length(); in ExtractJSArrayBufferReferences()
1613 generator_->FindOrAddEntry(buffer.backing_store(), &allocator); in ExtractJSArrayBufferReferences()
1651 base::Vector<char> buffer(arr, arraysize(arr)); in ExtractNumberReference()
1656 string = IntToCString(int_value, buffer); in ExtractNumberReference()
1659 string = DoubleToCString(double_value, buffer); in ExtractNumberReference()
1606 ExtractJSArrayBufferReferences(HeapEntry* entry, JSArrayBuffer buffer) ExtractJSArrayBufferReferences() argument
2786 utoa_impl(T value, const base::Vector<char>& buffer, int buffer_pos) utoa_impl() argument
2806 utoa(T value, const base::Vector<char>& buffer, int buffer_pos) utoa() argument
2817 base::EmbeddedVector<char, kBufferSize> buffer; SerializeEdge() local
2852 base::EmbeddedVector<char, kBufferSize> buffer; SerializeNode() local
2999 base::EmbeddedVector<char, kBufferSize> buffer; SerializeTraceNode() local
3025 SerializePosition(int position, const base::Vector<char>& buffer, int buffer_pos) SerializePosition() argument
3042 base::EmbeddedVector<char, kBufferSize> buffer; SerializeTraceNodeInfos() local
3079 base::EmbeddedVector<char, kBufferSize> buffer; SerializeSamples() local
3168 base::EmbeddedVector<char, kBufferSize> buffer; SerializeLocation() local
[all...]
/third_party/icu/icu4c/source/test/cintltst/
H A Dcloctst.c642 const int32_t limit = len<0 ? buflen : len; /* buflen is long enough to hit the buffer limit */ in UCharsToEscapedAscii()
701 UChar buffer[100]; in TestDisplayNames() local
717 length=uloc_getDisplayLanguage(NULL, NULL, buffer, UPRV_LENGTHOF(buffer), &errorCode); in TestDisplayNames()
719 if(U_FAILURE(errorCode) || (length<=3 && buffer[0]<=0x7f)) { in TestDisplayNames()
735 length=uloc_getDisplayLanguage("qq", "rr", buffer, UPRV_LENGTHOF(buffer), &errorCode); in TestDisplayNames()
736 if(errorCode!=U_USING_DEFAULT_WARNING || length!=2 || buffer[0]!=0x71 || buffer[1]!=0x71) { in TestDisplayNames()
742 length=uloc_getDisplayName("qq_US_POSIX", "en_US", buffer, UPRV_LENGTHO in TestDisplayNames()
1935 char buffer[256]; TestKeywordVariants() local
2049 char buffer[256]; TestKeywordVariantParsing() local
2163 char buffer[1024]; TestKeywordSet() local
2226 char buffer[1024]; TestKeywordSetError() local
2419 char buffer[256]; TestCanonicalization() local
2467 char buffer[256]; TestCanonicalizationBuffer() local
2503 char buffer[256]; TestCanonicalization21749StackUseAfterScope() local
2762 UChar buffer[128]; /* sufficient for this test */ TestTrailingNull() local
5987 char buffer[ULOC_FULLNAME_CAPACITY + ULOC_KEYWORD_AND_VALUES_CAPACITY + 1]; TestLikelySubtags() local
[all...]
/third_party/ffmpeg/libavcodec/
H A Dccaption_dec.c251 AVBPrint buffer[2]; member
268 av_bprint_init(&ctx->buffer[0], 0, AV_BPRINT_SIZE_UNLIMITED); in init_decoder()
269 av_bprint_init(&ctx->buffer[1], 0, AV_BPRINT_SIZE_UNLIMITED); in init_decoder()
294 av_bprint_finalize(&ctx->buffer[0], NULL); in close_decoder()
295 av_bprint_finalize(&ctx->buffer[1], NULL); in close_decoder()
320 av_bprint_clear(&ctx->buffer[0]); in flush_decoder()
321 av_bprint_clear(&ctx->buffer[1]); in flush_decoder()
457 av_bprint_clear(&ctx->buffer[bidx]); in capture_screen()
490 av_bprintf(&ctx->buffer[bidx], "{\\an7}{\\pos(%d,%d)}", x, y); in capture_screen()
581 av_bprintf(&ctx->buffer[bid in capture_screen()
[all...]
/third_party/skia/third_party/externals/dawn/src/tests/
H A DDawnTest.h38 // until the end of the test. Also expectations use a copy to a MapRead buffer to get the data
45 #define EXPECT_BUFFER(buffer, offset, size, expectation) \
46 this->AddBufferExpectation(__FILE__, __LINE__, buffer, offset, size, expectation)
48 #define EXPECT_BUFFER_U8_EQ(expected, buffer, offset) \
49 EXPECT_BUFFER(buffer, offset, sizeof(uint8_t), new ::detail::ExpectEq<uint8_t>(expected))
51 #define EXPECT_BUFFER_U8_RANGE_EQ(expected, buffer, offset, count) \
52 EXPECT_BUFFER(buffer, offset, sizeof(uint8_t) * (count), \
55 #define EXPECT_BUFFER_U16_EQ(expected, buffer, offset) \
56 EXPECT_BUFFER(buffer, offset, sizeof(uint16_t), new ::detail::ExpectEq<uint16_t>(expected))
58 #define EXPECT_BUFFER_U16_RANGE_EQ(expected, buffer, offse
535 wgpu::Buffer buffer; global() member
548 wgpu::Buffer buffer; global() member
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DVertexArray.cpp42 // Initially all attributes start as "client" with no buffer bound. in VertexArrayState()
100 const BindingPointer<Buffer> &buffer = vertexBinding.getBuffer();
102 buffer.get() &&
103 (!buffer->isImmutable() || (buffer->getAccessFlags() & GL_MAP_PERSISTENT_BIT_EXT) == 0);
132 Buffer *buffer = binding.getBuffer().get(); in onDestroy() local
135 if (buffer) in onDestroy()
137 buffer->onNonTFBindingChanged(-1); in onDestroy()
140 if (buffer) in onDestroy()
143 buffer in onDestroy()
310 updateCachedTransformFeedbackBindingValidation(size_t bindingIndex, const Buffer *buffer) updateCachedTransformFeedbackBindingValidation() argument
786 enableForBuffer(Buffer *buffer, uint32_t bufferIndex) enableForBuffer() argument
791 disableForBuffer(Buffer *buffer, uint32_t bufferIndex) disableForBuffer() argument
[all...]
/third_party/curl/CMake/
H A DCurlTests.c85 char buffer[8192]; in main() local
95 rc = gethostbyname_r(address, &h, buffer, 8192, &h_errnop); in main()
99 rc = gethostbyname_r(address, &h, buffer, 8192, &hp, &h_errnop); in main()
329 char buffer[1024]; in main() local
331 check(strerror_r(EACCES, buffer, sizeof(buffer))[0]); in main()
345 char buffer[1024]; in main() local
347 check(strerror_r(EACCES, buffer, sizeof(buffer))); in main()
/third_party/icu/icu4c/source/tools/ctestfw/
H A Dtstdtmod.cpp41 char buffer[4000]; in errIfFailureAndReset() local
44 vsprintf(buffer, fmt, ap); in errIfFailureAndReset()
46 errlog(false, u"expected success", buffer); in errIfFailureAndReset()
68 char buffer[4000]; in errDataIfFailureAndReset() local
71 vsprintf(buffer, fmt, ap); in errDataIfFailureAndReset()
73 errlog(true, u"data: expected success", buffer); in errDataIfFailureAndReset()
93 char buffer[4000]; in expectErrorAndReset() local
96 vsprintf(buffer, fmt, ap); in expectErrorAndReset()
98 errlog(false, UnicodeString(u"expected: ") + u_errorName(expectedError), buffer); in expectErrorAndReset()

Completed in 27 milliseconds

1...<<31323334353637383940>>...241