Searched defs:actual_length (Results 1 - 21 of 21) sorted by relevance

/external/chromium_org/ui/base/l10n/
H A Dl10n_util_android.cc48 int32_t actual_length = uloc_func(locale.c_str(), local
53 DCHECK(actual_length < max_capacity);
54 result.resize(actual_length);
/external/webrtc/test/testsupport/
H A Dpacket_reader_unittest.cc30 int actual_length,
33 EXPECT_EQ(expected_length, actual_length);
36 actual_length));
29 VerifyPacketData(int expected_length, int actual_length, WebRtc_UWord8* original_data_pointer, WebRtc_UWord8* new_data_pointer) argument
/external/chromium/base/i18n/
H A Dicu_string_conversions.cc282 int actual_length = unorm_normalize( local
288 normalized_utf16.resize(actual_length);
/external/chromium_org/base/i18n/
H A Dicu_string_conversions.cc281 int actual_length = unorm_normalize( local
286 normalized_utf16.assign(buffer.get(), actual_length);
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
H A Dbyte_array.cc54 int32_t actual_length = std::min<int32_t>(length, filled_length_ - index); local
55 return InternalGet(index, b, offset, actual_length);
89 int32_t actual_length = std::min<int32_t>(length, Size() - index); local
90 int32_t bytes_written = InternalPut(index, b, offset, actual_length);
/external/sfntly/cpp/src/sfntly/data/
H A Dbyte_array.cc54 int32_t actual_length = std::min<int32_t>(length, filled_length_ - index); local
55 return InternalGet(index, b, offset, actual_length);
89 int32_t actual_length = std::min<int32_t>(length, Size() - index); local
90 int32_t bytes_written = InternalPut(index, b, offset, actual_length);
/external/chromium_org/chrome/browser/usb/
H A Dusb_device_handle.cc218 DCHECK_GE(handle->actual_length, 0) << "Negative actual length received";
219 size_t actual_length = local
220 static_cast<size_t>(std::max(handle->actual_length, 0));
222 DCHECK(transfer.length >= actual_length) <<
231 if (actual_length > 0) {
235 if (transfer.length >= actual_length &&
236 actual_length >= LIBUSB_CONTROL_SETUP_SIZE) {
240 std::max(actual_length, static_cast<size_t>(1)));
243 actual_length);
254 if (actual_length
[all...]
/external/kernel-headers/original/linux/
H A Dusbdevice_fs.h91 unsigned int actual_length; member in struct:usbdevfs_iso_packet_desc
102 int actual_length; member in struct:usbdevfs_urb
136 compat_int_t actual_length; member in struct:usbdevfs_urb32
H A Dusb.h672 unsigned int actual_length; member in struct:usb_iso_packet_descriptor
716 * @actual_length: This is read in non-iso completion functions, and
832 * actual_length field tells how many bytes were transferred. This field
835 * ISO transfer status is reported in the status and actual_length fields
864 int actual_length; /* (return) actual transfer length */ member in struct:urb
1023 void *data, int len, int *actual_length, int timeout);
1025 void *data, int len, int *actual_length,
/external/libusb/libusb/os/
H A Dlinux_usbfs.h77 unsigned int actual_length; member in struct:usbfs_iso_packet_desc
92 int actual_length; member in struct:usbfs_urb
/external/chromium/chrome/browser/
H A Dbrowser_keyevents_browsertest.cc177 int actual_length; local
178 ASSERT_NO_FATAL_FAILURE(GetResultLength(tab_index, &actual_length));
179 ASSERT_GE(actual_length, length);
180 for (int i = 0; i < actual_length; ++i) {
/external/chromium_org/chrome/browser/
H A Dbrowser_keyevents_browsertest.cc187 int actual_length; local
188 ASSERT_NO_FATAL_FAILURE(GetResultLength(tab_index, &actual_length));
189 ASSERT_GE(actual_length, length);
190 for (int i = 0; i < actual_length; ++i) {
/external/chromium_org/third_party/libusb/src/libusb/os/
H A Dlinux_usbfs.h80 unsigned int actual_length; member in struct:usbfs_iso_packet_desc
95 int actual_length; member in struct:usbfs_urb
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dtestutils.h463 size_t actual_length)
465 if ((expected_length == actual_length)
474 size_t buffer_size = actual_length * 2 + 1;
477 reinterpret_cast<const char*>(actual), actual_length);
478 msg << "\n Actual: " << buffer << " [" << actual_length << "]"; local
513 #define EXPECT_MEMEQ(expected, expected_length, actual, actual_length) \
515 actual, actual_length)
517 #define ASSERT_MEMEQ(expected, expected_length, actual, actual_length) \
519 actual, actual_length)
456 CmpHelperMemEq(const char* expected_expression, const char* expected_length_expression, const char* actual_expression, const char* actual_length_expression, const void* expected, size_t expected_length, const void* actual, size_t actual_length) argument
/external/chromium_org/v8/src/
H A Dprofile-generator.cc115 int actual_length = 0; local
118 &actual_length);
119 return AddOrDisposeString(data.Detach(), actual_length);
H A Dhydrogen-instructions.cc933 HValue* actual_length = length()->ActualValue(); local
935 Representation length_rep = actual_length->representation();
939 if (length_rep.IsTagged() && actual_length->type().IsSmi()) {
/external/libusb-compat/libusb/
H A Dcore.c749 int actual_length; local
753 &actual_length, timeout);
757 if (r == 0 || (r == LIBUSB_ERROR_TIMEOUT && actual_length > 0))
758 return actual_length;
794 int actual_length; local
798 &actual_length, timeout);
802 if (r == 0 || (r == LIBUSB_ERROR_TIMEOUT && actual_length > 0))
803 return actual_length;
/external/libusb/libusb/
H A Dlibusb.h691 unsigned int actual_length; member in struct:libusb_iso_packet_descriptor
748 int actual_length; member in struct:libusb_transfer
1127 int *actual_length, unsigned int timeout);
1131 int *actual_length, unsigned int timeout);
/external/chromium_org/third_party/libusb/src/libusb/
H A Dlibusb.h1185 unsigned int actual_length; member in struct:libusb_iso_packet_descriptor
1242 int actual_length; member in struct:libusb_transfer
1712 int *actual_length, unsigned int timeout);
1716 int *actual_length, unsigned int timeout);
/external/valgrind/main/include/vki/
H A Dvki-linux.h2427 unsigned int actual_length; member in struct:vki_usbdevfs_iso_packet_desc
2438 int actual_length; member in struct:vki_usbdevfs_urb
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 415 milliseconds