/external/chromium_org/v8/src/ |
v8utils.cc | 124 int extra_space, 138 char* result = NewArray<char>(*size + extra_space); 154 int extra_space, 157 char* result = ReadCharsFromFile(file, size, extra_space, verbose, filename);
|
/external/v8/src/ |
v8utils.cc | 115 int extra_space, 129 char* result = NewArray<char>(*size + extra_space); 145 int extra_space, 148 char* result = ReadCharsFromFile(file, size, extra_space, verbose, filename);
|
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/ |
javascriptlintrules.py | 313 extra_space = state.GetLastNonSpaceToken().next 314 while extra_space != token: 315 if extra_space.type == Type.BLANK_LINE: 319 extra_space) 320 extra_space = extra_space.next 417 errors.EXTRA_SPACE,
|
/external/chromium_org/third_party/closure_linter/closure_linter/ |
javascriptlintrules.py | 313 extra_space = state.GetLastNonSpaceToken().next 314 while extra_space != token: 315 if extra_space.type == Type.BLANK_LINE: 319 extra_space) 320 extra_space = extra_space.next 417 errors.EXTRA_SPACE,
|
/external/chromium/chrome/browser/ui/gtk/bookmarks/ |
bookmark_bar_gtk.cc | 549 int extra_space = 0; local 551 extra_space = overflow_button_->allocation.width; 553 int overflow_idx = GetFirstHiddenBookmark(extra_space, NULL); 590 int extra_space, std::vector<GtkWidget*>* showing_folders) { 599 bookmark_toolbar_.get()->allocation.x - extra_space); 605 bookmark_toolbar_.get()->allocation.x + extra_space); [all...] |
bookmark_bar_gtk.h | 148 // |extra_space| is how much extra space to give the toolbar during the 153 int GetFirstHiddenBookmark(int extra_space,
|
/external/chromium_org/chrome/browser/ui/gtk/bookmarks/ |
bookmark_bar_gtk.h | 156 // |extra_space| is how much extra space to give the toolbar during the 161 int GetFirstHiddenBookmark(int extra_space,
|
bookmark_bar_gtk.cc | 528 int extra_space = 0; local 532 extra_space = allocation.width; 535 int overflow_idx = GetFirstHiddenBookmark(extra_space, NULL); 615 int BookmarkBarGtk::GetFirstHiddenBookmark(int extra_space, 637 // |extra_space| is available if we can remove the chevron, which happens 639 overflow = width_used > total_width + (g_list_next(iter) ? 0 : extra_space); [all...] |
/system/media/camera/tests/ |
camera_metadata_tests.cpp | 143 const size_t extra_space = 10; local 150 buf_size += extra_space; 163 EXPECT_EQ(buf + buf_size - extra_space, (uint8_t*)m + get_camera_metadata_size(m)); 459 const size_t extra_space = 10; local 469 buf_size += extra_space; 485 EXPECT_EQ(buf + buf_size - extra_space, [all...] |
/external/chromium/net/base/ |
net_util.cc | 715 for (int extra_space = 64; ; extra_space *= 2) { 717 out->resize(out->length() + extra_space); 719 static_cast<int32_t>(comp_len), &(*out)[original_length], extra_space, [all...] |