Searched refs:kCapacity (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/chrome/installer/mini_installer/
H A Dmini_string.h71 template <size_t kCapacity>
75 COMPILE_ASSERT(kCapacity != 0, invalid_buffer_size);
76 buffer_[kCapacity] = L'\0'; // We always reserve 1 more than asked for.
86 return kCapacity;
94 return SafeStrCopy(buffer_, kCapacity, str);
98 return SafeStrCat(buffer_, kCapacity, str);
106 return SafeStrLen(buffer_, kCapacity);
128 if (location >= kCapacity)
137 wchar_t buffer_[kCapacity + 1];
/external/chromium_org/third_party/webrtc/modules/audio_device/android/
H A Dsingle_rw_fifo_unittest.cc25 kCapacity = 6, enumerator in enum:webrtc::SingleRwFifoTest::__anon15862
28 SingleRwFifoTest() : fifo_(kCapacity), pushed_(0), available_(0) {
33 for (int8_t i = 0; i < kCapacity; ++i) {
42 available_ = kCapacity;
77 EXPECT_EQ(current_index, ++previous_index % kCapacity);
93 scoped_ptr<int8_t[]> buffer_[kCapacity];
108 Push(kCapacity);
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Ddenseranges.cpp28 LargestGaps(int32_t max) : maxLength(max<=kCapacity ? max : kCapacity), length(0) {}
76 static const int32_t kCapacity=15; member in class:__anon12408::LargestGaps
80 int32_t gapStarts[kCapacity];
81 int64_t gapLengths[kCapacity];
/external/icu/icu4c/source/tools/toolutil/
H A Ddenseranges.cpp28 LargestGaps(int32_t max) : maxLength(max<=kCapacity ? max : kCapacity), length(0) {}
76 static const int32_t kCapacity=15; member in class:__anon22220::LargestGaps
80 int32_t gapStarts[kCapacity];
81 int64_t gapLengths[kCapacity];
/external/chromium_org/sandbox/linux/tests/
H A Dunit_tests.cc198 const size_t kCapacity = 256; local
200 msg_buf.resize(len + kCapacity);
201 rc = HANDLE_EINTR(read(fds[0], &msg_buf[len], kCapacity));
/external/chromium_org/media/filters/
H A Dffmpeg_demuxer.cc495 const base::TimeDelta kCapacity = base::TimeDelta::FromSeconds(1);
496 return buffer_queue_.IsEmpty() || buffer_queue_.Duration() < kCapacity;

Completed in 1950 milliseconds