HomeSort by relevance Sort by last modified time
    Searched full:expected_size (Results 1 - 25 of 106) sorted by null

1 2 3 4 5

  /external/chromium_org/gpu/command_buffer/common/
gles2_cmd_format_test.cc 30 const void* end, size_t expected_size, size_t written_size) {
35 EXPECT_EQ(expected_size, actual_size);
41 const void* end, size_t expected_size) {
42 CheckBytesWritten(end, expected_size, expected_size);
  /external/chromium_org/content/browser/aura/
compositor_resize_lock.cc 25 "width", expected_size().width(),
26 "height", expected_size().height());
39 "width", expected_size().width(),
40 "height", expected_size().height());
resize_lock.h 21 const gfx::Size& expected_size() const { return new_size_; } function in class:content::ResizeLock
  /external/chromium_org/ppapi/thunk/
ppb_file_system_api.h 21 virtual int32_t Open(int64_t expected_size,
ppb_file_system_thunk.cc 37 int64_t expected_size,
43 return enter.SetResult(enter.object()->Open(expected_size, enter.callback()));
  /external/chromium_org/net/http/
http_basic_state.cc 57 const size_t expected_size = request_info_->method.size() + 1 + path.size() + local
59 request_line.reserve(expected_size);
64 DCHECK_EQ(expected_size, request_line.size());
  /external/chromium_org/ui/base/ime/win/
tsf_input_scope_unittest.cc 17 size_t expected_size; member in struct:ui::__anon14779::GetInputScopesTestCase
111 EXPECT_EQ(test_case.expected_size, input_scopes.size());
112 for (size_t i = 0; i < test_case.expected_size; ++i)
  /external/chromium_org/chrome/browser/ui/views/
constrained_window_views_unittest.cc 92 gfx::Size expected_size = GetDialogSize(); local
94 expected_size.Enlarge(50, 50);
98 EXPECT_EQ(expected_size.ToString(), GetDialogSize().ToString());
105 gfx::Size expected_size = GetDialogSize(); local
107 expected_size.Enlarge(-50, -50);
111 EXPECT_EQ(expected_size.ToString(), GetDialogSize().ToString());
138 gfx::Size expected_size = max_dialog_size; local
141 expected_size.Enlarge(0, border->GetInsets().top());
142 EXPECT_EQ(expected_size.ToString(), GetDialogSize().ToString());
  /external/chromium_org/ppapi/cpp/
file_system.cc 53 int32_t FileSystem::Open(int64_t expected_size,
58 pp_resource(), expected_size, cc.pp_completion_callback());
file_system.h 59 /// @param[in] expected_size The expected size of the file system. Note that
70 int32_t Open(int64_t expected_size, const CompletionCallback& cc);
  /external/chromium_org/chrome/browser/sync_file_system/
file_change_unittest.cc 39 template <size_t EXPECTED_SIZE>
41 const FileChange (&expected)[EXPECTED_SIZE]) {
43 ASSERT_EQ(EXPECTED_SIZE, list.size());
  /external/chromium_org/ppapi/proxy/
file_system_resource.cc 53 int32_t FileSystemResource::Open(int64_t expected_size,
61 PpapiHostMsg_FileSystem_Open(expected_size),
66 PpapiHostMsg_FileSystem_Open(expected_size),
file_system_resource.h 48 virtual int32_t Open(int64_t expected_size,
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
videoframe.cc 299 size_t expected_size = (w * expected_bpp + 7) / 8 * h; local
303 expected_size = ((w + 15) / 16) * ((h + 15) / 16) * 4 / 8;
310 << " expected: " << expected_size
314 if (sample_size < expected_size) {
320 << " expected: " << expected_size
333 << " expected: " << 2 * expected_size
342 size_t large_expected_size = expected_size * 2;
367 << " expected: " << expected_size
382 << " expected: " << expected_size
  /external/chromium/net/base/
mime_util_unittest.cc 98 size_t expected_size; member in struct:net::__anon2668
115 EXPECT_EQ(tests[i].expected_size, codecs_out.size());
116 for (size_t j = 0; j < tests[i].expected_size; ++j) {
  /external/chromium_org/ppapi/api/
ppb_file_system.idl 52 * @param[in] expected_size The expected size of the file system. Note that
65 [in] int64_t expected_size,
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
mount_html5fs.cc 138 int64_t expected_size = 0; local
148 } else if (iter->first == "expected_size") {
149 expected_size = strtoull(iter->second.c_str(), NULL, 10);
169 ->Open(filesystem_resource_, expected_size, cc);
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
media_file_validator_browsertest.cc 40 void HandleCheckFileResult(int64 expected_size,
45 if (!file_info.is_directory && expected_size != kNoFileSize &&
46 file_info.size == expected_size) {
51 if (expected_size == kNoFileSize) {
169 // Helper that checks a file has the |expected_size|, which may be
173 int64 expected_size,
177 expected_size, callback));
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_store_file.cc 167 int64 expected_size = sizeof(FileHeader);
168 expected_size += header.add_chunk_count * sizeof(int32);
169 expected_size += header.sub_chunk_count * sizeof(int32);
170 expected_size += header.add_prefix_count * sizeof(SBAddPrefix);
171 expected_size += header.sub_prefix_count * sizeof(SBSubPrefix);
172 expected_size += header.add_hash_count * sizeof(SBAddFullHash);
173 expected_size += header.sub_hash_count * sizeof(SBSubFullHash);
174 expected_size += sizeof(MD5Digest);
175 if (size != expected_size)
568 int64 expected_size = ofs + sizeof(ChunkHeader)
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/
safe_browsing_store_file.cc 141 int64 expected_size = sizeof(FileHeader);
142 expected_size += header.add_chunk_count * sizeof(int32);
143 expected_size += header.sub_chunk_count * sizeof(int32);
144 expected_size += header.add_prefix_count * sizeof(SBAddPrefix);
145 expected_size += header.sub_prefix_count * sizeof(SBSubPrefix);
146 expected_size += header.add_hash_count * sizeof(SBAddFullHash);
147 expected_size += header.sub_hash_count * sizeof(SBSubFullHash);
148 expected_size += sizeof(base::MD5Digest);
149 if (size != expected_size)
572 int64 expected_size = ofs + sizeof(ChunkHeader)
    [all...]
  /external/chromium/chrome/browser/ui/webui/chromeos/login/
login_ui.cc 88 size_t expected_size = 2; local
89 CHECK_EQ(args->GetSize(), expected_size);
  /external/chromium_org/ppapi/c/
ppb_file_system.h 66 * @param[in] expected_size The expected size of the file system. Note that
79 int64_t expected_size,
  /external/chromium_org/ui/compositor/
scoped_layer_animation_settings.cc 59 const size_t expected_size = 1; local
60 DCHECK_EQ(expected_size, sequence->size()) <<
  /external/chromium_org/ppapi/tests/
test_flash_file.cc 292 size_t expected_size = sizeof(expected) / sizeof(expected[0]); local
294 std::sort(expected, expected + expected_size, DirEntryLessThan);
297 ASSERT_EQ(expected_size, result.size());
298 ASSERT_TRUE(std::equal(expected, expected + expected_size, result.begin(),
  /external/chromium/chrome/browser/autocomplete/
autocomplete_result_unittest.cc 46 const TestData* expected, size_t expected_size);
94 const TestData* expected, size_t expected_size) {
111 AssertResultMatches(current_result, expected, expected_size);

Completed in 1682 milliseconds

1 2 3 4 5