region 576 apps/app_window.cc void AppWindow::UpdateShape(scoped_ptr<SkRegion> region) { region 577 apps/app_window.cc native_app_window_->UpdateShape(region.Pass()); region 1067 apps/app_window.cc const extensions::DraggableRegion& region = *iter; region 1069 apps/app_window.cc region.bounds.x(), region 1070 apps/app_window.cc region.bounds.y(), region 1071 apps/app_window.cc region.bounds.right(), region 1072 apps/app_window.cc region.bounds.bottom(), region 1073 apps/app_window.cc region.draggable ? SkRegion::kUnion_Op : SkRegion::kDifference_Op); region 297 apps/app_window.h void UpdateShape(scoped_ptr<SkRegion> region); region 50 apps/ui/native_app_window.h virtual void UpdateShape(scoped_ptr<SkRegion> region) = 0; region 352 apps/ui/views/native_app_window_views.cc void NativeAppWindowViews::UpdateShape(scoped_ptr<SkRegion> region) { region 143 apps/ui/views/native_app_window_views.h virtual void UpdateShape(scoped_ptr<SkRegion> region) OVERRIDE; region 64 ash/system/audio/volume_view.cc gfx::Rect region(0, image_index * kVolumeImageHeight, region 67 ash/system/audio/volume_view.cc *(image_.ToImageSkia()), region); region 233 ash/system/chromeos/power/power_status.cc gfx::Rect region( region 236 ash/system/chromeos/power/power_status.cc return gfx::ImageSkiaOperations::ExtractSubset(*all.ToImageSkia(), region); region 31 ash/wm/video_detector.cc bool RecordUpdateAndCheckForVideo(const gfx::Rect& region, region 33 ash/wm/video_detector.cc if (region.width() < kMinUpdateWidth || region.height() < kMinUpdateHeight) region 88 ash/wm/video_detector.cc const gfx::Rect& region) { region 97 ash/wm/video_detector.cc if (info->RecordUpdateAndCheckForVideo(region, now)) region 73 ash/wm/video_detector.h const gfx::Rect& region) OVERRIDE; region 112 base/debug/proc_maps_linux.cc MappedMemoryRegion region; region 129 base/debug/proc_maps_linux.cc ®ion.start, ®ion.end, permissions, ®ion.offset, region 135 base/debug/proc_maps_linux.cc region.permissions = 0; region 138 base/debug/proc_maps_linux.cc region.permissions |= MappedMemoryRegion::READ; region 143 base/debug/proc_maps_linux.cc region.permissions |= MappedMemoryRegion::WRITE; region 148 base/debug/proc_maps_linux.cc region.permissions |= MappedMemoryRegion::EXECUTE; region 153 base/debug/proc_maps_linux.cc region.permissions |= MappedMemoryRegion::PRIVATE; region 158 base/debug/proc_maps_linux.cc regions.push_back(region); region 559 base/debug/stack_trace_posix.cc const MappedMemoryRegion& region = *it; region 560 base/debug/stack_trace_posix.cc if (region.start <= pc && pc < region.end) { region 561 base/debug/stack_trace_posix.cc start_address = region.start; region 573 base/debug/stack_trace_posix.cc base_address = (is_first ? 0U : start_address) - region.offset; region 575 base/debug/stack_trace_posix.cc strncpy(file_path, region.path.c_str(), file_path_size); region 579 base/debug/stack_trace_posix.cc return instance->GetFileDescriptor(region.path.c_str()); region 618 base/debug/stack_trace_posix.cc const MappedMemoryRegion& region = *it; region 620 base/debug/stack_trace_posix.cc if ((region.permissions & MappedMemoryRegion::READ) == region 622 base/debug/stack_trace_posix.cc (region.permissions & MappedMemoryRegion::WRITE) == 0 && region 623 base/debug/stack_trace_posix.cc (region.permissions & MappedMemoryRegion::EXECUTE) == region 625 base/debug/stack_trace_posix.cc if (region.path.empty()) { region 629 base/debug/stack_trace_posix.cc if (region.path[0] == '[') { region 634 base/debug/stack_trace_posix.cc if (modules_.find(region.path) == modules_.end()) { region 635 base/debug/stack_trace_posix.cc int fd = open(region.path.c_str(), O_RDONLY | O_CLOEXEC); region 637 base/debug/stack_trace_posix.cc modules_.insert(std::make_pair(region.path, fd)); region 639 base/debug/stack_trace_posix.cc LOG(WARNING) << "Failed to open file: " << region.path region 540 base/memory/discardable_memory_allocator_android.cc AshmemRegion* region) { region 546 base/memory/discardable_memory_allocator_android.cc ashmem_regions_.begin(), ashmem_regions_.end(), region); region 55 base/memory/discardable_memory_allocator_android.h void DeleteAshmemRegion_Locked(AshmemRegion* region); region 87 base/win/i18n.cc bool GetUserDefaultUILanguage(std::wstring* language, std::wstring* region) { region 101 base/win/i18n.cc region->clear(); region 108 base/win/i18n.cc region->assign(&result_buffer[0], result_length - 1); region 124 base/win/i18n.cc std::wstring region; region 134 base/win/i18n.cc } else if (GetUserDefaultUILanguage(&language, ®ion)) { region 137 base/win/i18n.cc if (!region.empty()) region 140 base/win/i18n.cc .append(region)); region 21 cc/base/invalidation_region.cc void InvalidationRegion::Swap(Region* region) { region 22 cc/base/invalidation_region.cc region_.Swap(region); region 22 cc/base/invalidation_region.h void Swap(Region* region); region 13 cc/base/region.cc Region::Region(const Region& region) region 14 cc/base/region.cc : skregion_(region.skregion_) { region 29 cc/base/region.cc const Region& Region::operator=(const Region& region) { region 30 cc/base/region.cc skregion_ = region.skregion_; region 34 cc/base/region.cc void Region::Swap(Region* region) { region 35 cc/base/region.cc region->skregion_.swap(skregion_); region 60 cc/base/region.cc bool Region::Contains(const Region& region) const { region 61 cc/base/region.cc if (region.IsEmpty()) region 63 cc/base/region.cc return skregion_.contains(region.skregion_); region 70 cc/base/region.cc bool Region::Intersects(const Region& region) const { region 71 cc/base/region.cc return skregion_.intersects(region.skregion_); region 78 cc/base/region.cc void Region::Subtract(const Region& region) { region 79 cc/base/region.cc skregion_.op(region.skregion_, SkRegion::kDifference_Op); region 86 cc/base/region.cc void Region::Union(const Region& region) { region 87 cc/base/region.cc skregion_.op(region.skregion_, SkRegion::kUnion_Op); region 94 cc/base/region.cc void Region::Intersect(const Region& region) { region 95 cc/base/region.cc skregion_.op(region.skregion_, SkRegion::kIntersect_Op); region 126 cc/base/region.cc Region::Iterator::Iterator(const Region& region) region 127 cc/base/region.cc : it_(region.skregion_) { region 26 cc/base/region.h Region(const Region& region); region 31 cc/base/region.h const Region& operator=(const Region& region); region 33 cc/base/region.h void Swap(Region* region); region 40 cc/base/region.h bool Contains(const Region& region) const; region 43 cc/base/region.h bool Intersects(const Region& region) const; region 46 cc/base/region.h void Subtract(const Region& region); region 48 cc/base/region.h void Union(const Region& region); region 50 cc/base/region.h void Intersect(const Region& region); region 66 cc/base/region.h explicit Iterator(const Region& region); region 741 cc/layers/layer.cc void Layer::SetNonFastScrollableRegion(const Region& region) { region 743 cc/layers/layer.cc if (non_fast_scrollable_region_ == region) region 745 cc/layers/layer.cc non_fast_scrollable_region_ = region; region 749 cc/layers/layer.cc void Layer::SetTouchEventHandlerRegion(const Region& region) { region 751 cc/layers/layer.cc if (touch_event_handler_region_ == region) region 753 cc/layers/layer.cc touch_event_handler_region_ = region; region 650 cc/layers/layer_impl.cc scoped_ptr<base::Value> region = touch_event_handler_region_.AsValue(); region 651 cc/layers/layer_impl.cc result->Set("TouchRegion", region.release()); region 418 cc/layers/layer_impl.h void SetNonFastScrollableRegion(const Region& region) { region 419 cc/layers/layer_impl.h non_fast_scrollable_region_ = region; region 425 cc/layers/layer_impl.h void SetTouchEventHandlerRegion(const Region& region) { region 426 cc/layers/layer_impl.h touch_event_handler_region_ = region; region 54 cc/resources/picture_layer_tiling_perftest.cc void RunInvalidateTest(const std::string& test_name, const Region& region) { region 58 cc/resources/picture_layer_tiling_perftest.cc picture_layer_tiling_->Invalidate(region); region 57 cc/test/fake_picture_layer_impl.h void set_invalidation(const Region& region) { invalidation_ = region; } region 45 cc/test/fake_picture_layer_tiling_client.h void set_invalidation(const Region& region) { invalidation_ = region; } region 45 cc/test/test_occlusion_tracker.h void set_occlusion_from_outside_target(const Region& region) { region 47 cc/test/test_occlusion_tracker.h region; region 49 cc/test/test_occlusion_tracker.h void set_occlusion_from_inside_target(const Region& region) { region 51 cc/test/test_occlusion_tracker.h region; region 69 cc/trees/occlusion_tracker.cc const Region& region, region 73 cc/trees/occlusion_tracker.cc if (region.IsEmpty()) region 87 cc/trees/occlusion_tracker.cc for (Region::Iterator rects(region); rects.has_rect(); rects.next()) { region 333 chrome/browser/chrome_plugin_browsertest.cc RECT region; region 334 chrome/browser/chrome_plugin_browsertest.cc int result = GetWindowRgnBox(child, ®ion); region 409 chrome/browser/extensions/api/app_current_window_internal/app_current_window_internal_api.cc const Region& shape = params->region; region 416 chrome/browser/extensions/api/app_current_window_internal/app_current_window_internal_api.cc scoped_ptr<SkRegion> region(new SkRegion); region 429 chrome/browser/extensions/api/app_current_window_internal/app_current_window_internal_api.cc region->op(rect, SkRegion::kUnion_Op); region 432 chrome/browser/extensions/api/app_current_window_internal/app_current_window_internal_api.cc region.reset(NULL); region 435 chrome/browser/extensions/api/app_current_window_internal/app_current_window_internal_api.cc window->UpdateShape(region.Pass()); region 327 chrome/browser/first_run/try_chrome_dialog_view.cc HRGN region = ::CreatePolygonRgn(polygon, arraysize(polygon), WINDING); region 328 chrome/browser/first_run/try_chrome_dialog_view.cc ::SetWindowRgn(window, region, FALSE); region 42 chrome/browser/media/native_desktop_media_list_unittest.cc virtual void Capture(const webrtc::DesktopRegion& region) OVERRIDE { region 97 chrome/browser/media/native_desktop_media_list_unittest.cc virtual void Capture(const webrtc::DesktopRegion& region) OVERRIDE { region 550 chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc std::string region = AutofillCountry::GetCountryCode( region 553 chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc i18n::PhoneObject phone_object(number, region); region 561 chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc phone_object.region() != region)) { region 140 chrome/browser/ui/autofill/data_model_wrapper.cc std::string region = base::UTF16ToASCII( region 142 chrome/browser/ui/autofill/data_model_wrapper.cc i18n::PhoneObject phone(phone_number, region); region 118 chrome/browser/ui/cocoa/apps/native_app_window_cocoa.h virtual void UpdateShape(scoped_ptr<SkRegion> region) OVERRIDE; region 687 chrome/browser/ui/gtk/apps/native_app_window_gtk.cc void NativeAppWindowGtk::UpdateShape(scoped_ptr<SkRegion> region) { region 79 chrome/browser/ui/gtk/apps/native_app_window_gtk.h virtual void UpdateShape(scoped_ptr<SkRegion> region) OVERRIDE; region 284 chrome/browser/ui/gtk/tabs/tab_gtk.cc ui::ScopedRegion region(mask.CreateNativeRegion()); region 287 chrome/browser/ui/gtk/tabs/tab_gtk.cc region.Get(), region 2020 chrome/browser/ui/gtk/tabs/tab_strip_gtk.cc if (gdk_region_empty(event->region)) region 2027 chrome/browser/ui/gtk/tabs/tab_strip_gtk.cc gdk_region_get_rectangles(event->region, &rects, &num_rects); region 2067 chrome/browser/ui/gtk/tabs/tab_strip_gtk.cc gdk_region_union_with_rect(event->region, &event->area); region 630 chrome/browser/ui/views/apps/chrome_native_app_window_views.cc void ChromeNativeAppWindowViews::UpdateShape(scoped_ptr<SkRegion> region) { region 632 chrome/browser/ui/views/apps/chrome_native_app_window_views.cc shape_ = region.Pass(); region 81 chrome/browser/ui/views/apps/chrome_native_app_window_views.h virtual void UpdateShape(scoped_ptr<SkRegion> region) OVERRIDE; region 71 chrome/browser/ui/views/apps/shaped_app_window_targeter_unittest.cc scoped_ptr<SkRegion> region(new SkRegion); region 72 chrome/browser/ui/views/apps/shaped_app_window_targeter_unittest.cc region->op(SkIRect::MakeXYWH(40, 0, 20, 100), SkRegion::kUnion_Op); region 73 chrome/browser/ui/views/apps/shaped_app_window_targeter_unittest.cc region->op(SkIRect::MakeXYWH(0, 40, 100, 20), SkRegion::kUnion_Op); region 74 chrome/browser/ui/views/apps/shaped_app_window_targeter_unittest.cc app_window()->UpdateShape(region.Pass()); region 129 chrome/browser/ui/views/apps/shaped_app_window_targeter_unittest.cc scoped_ptr<SkRegion> region(new SkRegion); region 130 chrome/browser/ui/views/apps/shaped_app_window_targeter_unittest.cc region->op(SkIRect::MakeXYWH(40, 0, 20, 100), SkRegion::kUnion_Op); region 131 chrome/browser/ui/views/apps/shaped_app_window_targeter_unittest.cc region->op(SkIRect::MakeXYWH(0, 40, 100, 20), SkRegion::kUnion_Op); region 132 chrome/browser/ui/views/apps/shaped_app_window_targeter_unittest.cc app_window()->UpdateShape(region.Pass()); region 263 chrome/browser/ui/views/dropdown_bar_host.cc ScopedPlatformRegion region(path.CreateNativeRegion()); region 283 chrome/browser/ui/views/dropdown_bar_host.cc region.Set(Path::IntersectRegions(animation_region.Get(), region.Get())); region 298 chrome/browser/ui/views/dropdown_bar_host.cc region.Set(Path::CombineRegions(r.Get(), region.Get())); region 302 chrome/browser/ui/views/dropdown_bar_host.cc region.Set(Path::CombineRegions(r.Get(), region.Get())); region 336 chrome/browser/ui/views/dropdown_bar_host.cc region.Set(Path::SubtractRegion(region.Get(), exclude_region.Get())); region 340 chrome/browser/ui/views/dropdown_bar_host.cc host()->SetShape(region.release()); region 71 chrome/common/spellcheck_common.cc bool IsValidRegion(const std::string& region) { region 74 chrome/common/spellcheck_common.cc if (g_supported_spellchecker_languages[i].language_region == region) region 217 chrome/renderer/extensions/extension_helper.cc DraggableRegion region; region 218 chrome/renderer/extensions/extension_helper.cc region.bounds = webregions[i].bounds; region 219 chrome/renderer/extensions/extension_helper.cc region.draggable = webregions[i].draggable; region 220 chrome/renderer/extensions/extension_helper.cc regions.push_back(region); region 122 chrome/test/chromedriver/element_util.cc const WebRect& region, region 130 chrome/test/chromedriver/element_util.cc args.Append(CreateValueFrom(region)); region 143 chrome/test/chromedriver/element_util.cc middle.Offset(region.Width() / 2, region.Height() / 2); region 600 chrome/test/chromedriver/element_util.cc const WebRect& region, region 604 chrome/test/chromedriver/element_util.cc WebPoint region_offset = region.origin; region 605 chrome/test/chromedriver/element_util.cc WebSize region_size = region.size; region 607 chrome/test/chromedriver/element_util.cc session->GetCurrentFrameId(), web_view, element_id, region, region 145 chrome/test/chromedriver/element_util.h const WebRect& region, region 115 components/autofill/core/browser/android/auxiliary_profile_unittest_android.cc base::string16 region = ASCIIToUTF16("Georgian Terrace"); region 121 components/autofill/core/browser/android/auxiliary_profile_unittest_android.cc profile_loader().SetRegion(region); region 128 components/autofill/core/browser/android/auxiliary_profile_unittest_android.cc EXPECT_EQ(profile->GetRawInfo(ADDRESS_HOME_STATE), region); region 87 components/autofill/core/browser/android/auxiliary_profiles_android.cc base::string16 region = profile_loader_.GetRegion(); region 95 components/autofill/core/browser/android/auxiliary_profiles_android.cc profile->SetRawInfo(ADDRESS_HOME_STATE, region); region 105 components/autofill/core/browser/android/test_auxiliary_profile_loader_android.cc void TestAuxiliaryProfileLoader::SetRegion(const base::string16& region) { region 106 components/autofill/core/browser/android/test_auxiliary_profile_loader_android.cc region_ = region; region 48 components/autofill/core/browser/android/test_auxiliary_profile_loader_android.h void SetRegion(const base::string16& region); region 178 components/autofill/core/browser/phone_number.cc std::string region = GetRegion(*profile_, app_locale); region 179 components/autofill/core/browser/phone_number.cc if (!number_.empty() && cached_parsed_phone_.region() != region) region 180 components/autofill/core/browser/phone_number.cc cached_parsed_phone_ = i18n::PhoneObject(number_, region); region 23 components/autofill/core/browser/phone_number_i18n.cc std::string SanitizeRegion(const std::string& region, region 25 components/autofill/core/browser/phone_number_i18n.cc if (region.length() == 2) region 26 components/autofill/core/browser/phone_number_i18n.cc return region; region 158 components/autofill/core/browser/phone_number_i18n.cc const std::string& region) { region 159 components/autofill/core/browser/phone_number_i18n.cc DCHECK_EQ(2u, region.size()); region 163 components/autofill/core/browser/phone_number_i18n.cc if (!ParsePhoneNumber(value, region, &country_code, &unused_city_code, region 176 components/autofill/core/browser/phone_number_i18n.cc const std::string& region, region 178 components/autofill/core/browser/phone_number_i18n.cc DCHECK_EQ(2u, region.size()); region 184 components/autofill/core/browser/phone_number_i18n.cc if (!ParsePhoneNumber(country_code + city_code + number, region, region 199 components/autofill/core/browser/phone_number_i18n.cc const std::string region = SanitizeRegion(raw_region, app_locale); region 206 components/autofill/core/browser/phone_number_i18n.cc base::UTF16ToUTF8(number_a), region.c_str(), &i18n_number1) != region 213 components/autofill/core/browser/phone_number_i18n.cc base::UTF16ToUTF8(number_b), region.c_str(), &i18n_number2) != region 234 components/autofill/core/browser/phone_number_i18n.cc const std::string& region) { region 235 components/autofill/core/browser/phone_number_i18n.cc DCHECK_EQ(2u, region.size()); region 243 components/autofill/core/browser/phone_number_i18n.cc if (ParsePhoneNumber(number, region, &country_code_, &city_code_, &number_, region 68 components/autofill/core/browser/phone_number_i18n.h const std::string& region, region 80 components/autofill/core/browser/phone_number_i18n.h const std::string& region() const { return region_; } region 102 content/browser/media/capture/desktop_capture_device_unittest.cc virtual void Capture(const webrtc::DesktopRegion& region) OVERRIDE { region 799 content/common/gpu/client/gl_helper.cc SkRegion region(old_damage); region 800 content/common/gpu/client/gl_helper.cc if (region.op(new_damage, SkRegion::kDifference_Op)) { region 810 content/common/gpu/client/gl_helper.cc for (SkRegion::Iterator it(region); !it.done(); it.next()) { region 37 content/renderer/android/phone_number_detector.cc PhoneNumberDetector::PhoneNumberDetector(const std::string& region) region 38 content/renderer/android/phone_number_detector.cc : region_code_(region.empty() ? RegionCode::GetUnknown() region 39 content/renderer/android/phone_number_detector.cc : StringToUpperASCII(region)) { region 20 content/renderer/android/phone_number_detector.h explicit PhoneNumberDetector(const std::string& region); region 15 content/renderer/android/phone_number_detector_unittest.cc const std::string& region) { region 19 content/renderer/android/phone_number_detector_unittest.cc PhoneNumberDetector detector(region); region 28 content/renderer/android/phone_number_detector_unittest.cc const std::string& region) { region 32 content/renderer/android/phone_number_detector_unittest.cc PhoneNumberDetector detector(region); region 158 content/renderer/gpu/compositor_software_output_device.cc SkRegion region; region 160 content/renderer/gpu/compositor_software_output_device.cc current->FindDamageDifferenceFrom(previous, ®ion) || region 161 content/renderer/gpu/compositor_software_output_device.cc previous->FindDamageDifferenceFrom(current, ®ion); region 163 content/renderer/gpu/compositor_software_output_device.cc region = SkRegion(RectToSkIRect(gfx::Rect(viewport_size_))); region 164 content/renderer/gpu/compositor_software_output_device.cc region.op(RectToSkIRect(damage_rect), SkRegion::kDifference_Op); region 167 content/renderer/gpu/compositor_software_output_device.cc if (!region.isEmpty()) { region 174 content/renderer/gpu/compositor_software_output_device.cc for (SkRegion::Iterator it(region); !it.done(); it.next()) { region 79 content/shell/android/linker_test_apk/chromium_linker_test_linker_tests.cc MappedMemoryRegion& region = regions[n]; region 81 content/shell/android/linker_test_apk/chromium_linker_test_linker_tests.cc if (region.path.find(kRelroSectionPrefix) != 0) { region 88 content/shell/android/linker_test_apk/chromium_linker_test_linker_tests.cc void* region_start = reinterpret_cast<void*>(region.start); region 89 content/shell/android/linker_test_apk/chromium_linker_test_linker_tests.cc void* region_end = reinterpret_cast<void*>(region.end); region 97 content/shell/android/linker_test_apk/chromium_linker_test_linker_tests.cc uint8 region_flags = region.permissions & expected_mask; region 113 content/shell/android/linker_test_apk/chromium_linker_test_linker_tests.cc size_t region_size = region.end - region.start; region 40 courgette/difference_estimator.cc explicit Base(const Region& region) : region_(region) { } region 63 courgette/difference_estimator.cc explicit Subject(const Region& region) : region_(region) {} region 82 courgette/difference_estimator.cc DifferenceEstimator::Base* DifferenceEstimator::MakeBase(const Region& region) { region 83 courgette/difference_estimator.cc Base* base = new Base(region); region 90 courgette/difference_estimator.cc const Region& region) { region 91 courgette/difference_estimator.cc Subject* subject = new Subject(region); region 98 courgette/difference_estimator.cc const uint8* start = subject->region().start(); region 99 courgette/difference_estimator.cc const uint8* end = subject->region().end() - (kTupleSize - 1); region 111 courgette/difference_estimator.cc if (RegionsEqual(base->region(), subject->region())) region 42 courgette/difference_estimator.h Base* MakeBase(const Region& region); region 43 courgette/difference_estimator.h Subject* MakeSubject(const Region& region); region 18 courgette/ensemble.cc const Region& region) region 19 courgette/ensemble.cc : kind_(kind), ensemble_(ensemble), region_(region) { region 28 courgette/ensemble.cc + base::Uint64ToString(region().length()) + ")"; region 48 courgette/ensemble.cc Region region(start + position, detected_length); region 50 courgette/ensemble.cc Element* element = new Element(type, this, region); region 53 courgette/ensemble.cc position += region.length(); region 40 courgette/ensemble.h const Region& region); region 45 courgette/ensemble.h const Region& region() const { return region_; } region 65 courgette/ensemble.h Ensemble(const Region& region, const char* name) region 66 courgette/ensemble.h : region_(region), name_(name) {} region 69 courgette/ensemble.h const Region& region() const { return region_; } region 91 courgette/ensemble.h return region().start() - ensemble_->region().start(); region 30 courgette/ensemble_apply.cc Status InitBase(const Region& region); region 114 courgette/ensemble_apply.cc Status EnsemblePatchApplication::InitBase(const Region& region) { region 115 courgette/ensemble_apply.cc base_region_.assign(region); region 75 courgette/ensemble_create.cc new PatcherX86_32(old_element->region()), region 84 courgette/ensemble_create.cc new PatcherX86_32(old_element->region()), region 93 courgette/ensemble_create.cc new PatcherX86_32(old_element->region()), region 102 courgette/ensemble_create.cc new PatcherX86_32(old_element->region()), region 127 courgette/ensemble_create.cc size_t old_size = old_element->region().length(); region 128 courgette/ensemble_create.cc size_t new_size = new_element->region().length(); region 162 courgette/ensemble_create.cc difference_estimator.MakeBase(old_elements[i]->region())); region 170 courgette/ensemble_create.cc difference_estimator.MakeSubject(new_element->region()); region 34 courgette/patch_generator_x86_32.h !parameter_stream->WriteSizeVarint32(old_element_->region().length())) { region 66 courgette/patch_generator_x86_32.h ParseDetectedExecutable(old_element_->region().start(), region 67 courgette/patch_generator_x86_32.h old_element_->region().length(), region 76 courgette/patch_generator_x86_32.h ParseDetectedExecutable(new_element_->region().start(), region 77 courgette/patch_generator_x86_32.h new_element_->region().length(), region 20 courgette/patcher_x86_32.h explicit PatcherX86_32(const Region& region) region 21 courgette/patcher_x86_32.h : ensemble_region_(region), region 52 courgette/streams.h void Init(const Region& region) { Init(region.start(), region.length()); } region 53 mojo/public/cpp/bindings/tests/type_conversion_unittest.cc test_structs::NamedRegion::Builder region(buf); region 54 mojo/public/cpp/bindings/tests/type_conversion_unittest.cc region.set_name(String(input.name, buf)); region 55 mojo/public/cpp/bindings/tests/type_conversion_unittest.cc region.set_rects(mojo::Array<test_structs::Rect>(input.rects, buf)); region 56 mojo/public/cpp/bindings/tests/type_conversion_unittest.cc return region.Finish(); region 59 mojo/public/cpp/bindings/tests/type_conversion_unittest.cc RedmondNamedRegion region; region 60 mojo/public/cpp/bindings/tests/type_conversion_unittest.cc region.name = input.name().To<std::string>(); region 61 mojo/public/cpp/bindings/tests/type_conversion_unittest.cc region.rects = input.rects().To<std::vector<RedmondRect> >(); region 62 mojo/public/cpp/bindings/tests/type_conversion_unittest.cc return region; region 191 native_client_sdk/src/examples/demo/earth/earth.cc void wRenderRegion(int region); region 192 native_client_sdk/src/examples/demo/earth/earth.cc static void wRenderRegionEntry(int region, void *thiz); region 513 native_client_sdk/src/examples/demo/earth/earth.cc void Planet::wRenderRegion(int region) { region 516 native_client_sdk/src/examples/demo/earth/earth.cc wMakeRect(region, &x, &y, &w, &h); region 523 native_client_sdk/src/examples/demo/earth/earth.cc void Planet::wRenderRegionEntry(int region, void* thiz) { region 524 native_client_sdk/src/examples/demo/earth/earth.cc static_cast<Planet*>(thiz)->wRenderRegion(region); region 117 native_client_sdk/src/examples/demo/voronoi/voronoi.cc void wMakeRect(int region, int *x, int *y, int *w, int *h); region 121 native_client_sdk/src/examples/demo/voronoi/voronoi.cc void wRenderRegion(int region); region 122 native_client_sdk/src/examples/demo/voronoi/voronoi.cc static void wRenderRegionEntry(int region, void *thiz); region 347 native_client_sdk/src/examples/demo/voronoi/voronoi.cc void Voronoi::wRenderRegion(int region) { region 350 native_client_sdk/src/examples/demo/voronoi/voronoi.cc wMakeRect(region, &x, &y, &w, &h); region 357 native_client_sdk/src/examples/demo/voronoi/voronoi.cc void Voronoi::wRenderRegionEntry(int region, void* thiz) { region 358 native_client_sdk/src/examples/demo/voronoi/voronoi.cc static_cast<Voronoi*>(thiz)->wRenderRegion(region); region 190 native_client_sdk/src/gonacl_appengine/src/earth/earth.cc void wRenderRegion(int region); region 191 native_client_sdk/src/gonacl_appengine/src/earth/earth.cc static void wRenderRegionEntry(int region, void *thiz); region 551 native_client_sdk/src/gonacl_appengine/src/earth/earth.cc void Planet::wRenderRegion(int region) { region 554 native_client_sdk/src/gonacl_appengine/src/earth/earth.cc wMakeRect(region, &x, &y, &w, &h); region 561 native_client_sdk/src/gonacl_appengine/src/earth/earth.cc void Planet::wRenderRegionEntry(int region, void* thiz) { region 562 native_client_sdk/src/gonacl_appengine/src/earth/earth.cc static_cast<Planet*>(thiz)->wRenderRegion(region); region 111 native_client_sdk/src/gonacl_appengine/src/voronoi/voronoi.cc void wMakeRect(int region, int *x, int *y, int *w, int *h); region 115 native_client_sdk/src/gonacl_appengine/src/voronoi/voronoi.cc void wRenderRegion(int region); region 116 native_client_sdk/src/gonacl_appengine/src/voronoi/voronoi.cc static void wRenderRegionEntry(int region, void *thiz); region 344 native_client_sdk/src/gonacl_appengine/src/voronoi/voronoi.cc void Voronoi::wRenderRegion(int region) { region 347 native_client_sdk/src/gonacl_appengine/src/voronoi/voronoi.cc wMakeRect(region, &x, &y, &w, &h); region 354 native_client_sdk/src/gonacl_appengine/src/voronoi/voronoi.cc void Voronoi::wRenderRegionEntry(int region, void* thiz) { region 355 native_client_sdk/src/gonacl_appengine/src/voronoi/voronoi.cc static_cast<Voronoi*>(thiz)->wRenderRegion(region); region 40 remoting/client/frame_consumer.h const webrtc::DesktopRegion& region, region 27 remoting/client/frame_consumer_proxy.cc const webrtc::DesktopRegion& region, region 32 remoting/client/frame_consumer_proxy.cc view_size, clip_area, buffer, region, shape)); region 37 remoting/client/frame_consumer_proxy.cc frame_consumer_->ApplyBuffer(view_size, clip_area, buffer, region, shape); region 36 remoting/client/frame_consumer_proxy.h const webrtc::DesktopRegion& region, region 34 remoting/client/frame_producer.h virtual void InvalidateRegion(const webrtc::DesktopRegion& region) = 0; region 48 remoting/client/jni/jni_frame_consumer.cc const webrtc::DesktopRegion& region, region 70 remoting/client/jni/jni_frame_consumer.cc for (webrtc::DesktopRegion::Iterator i(region); !i.IsAtEnd(); i.Advance()) { region 46 remoting/client/jni/jni_frame_consumer.h const webrtc::DesktopRegion& region, region 167 remoting/client/plugin/pepper_view.cc const webrtc::DesktopRegion& region, region 184 remoting/client/plugin/pepper_view.cc FlushBuffer(clip_area, buffer, region); region 253 remoting/client/plugin/pepper_view.cc const webrtc::DesktopRegion& region) { region 263 remoting/client/plugin/pepper_view.cc merge_region_ = region; region 270 remoting/client/plugin/pepper_view.cc for (webrtc::DesktopRegion::Iterator i(region); !i.IsAtEnd(); i.Advance()) { region 293 remoting/client/plugin/pepper_view.cc webrtc::DesktopRegion not_painted = region; region 51 remoting/client/plugin/pepper_view.h const webrtc::DesktopRegion& region, region 81 remoting/client/plugin/pepper_view.h const webrtc::DesktopRegion& region); region 49 remoting/client/software_video_renderer.cc const webrtc::DesktopRegion& region) OVERRIDE { region 50 remoting/client/software_video_renderer.cc return parent_->Invalidate(view_size, region); region 88 remoting/client/software_video_renderer.cc void InvalidateRegion(const webrtc::DesktopRegion& region); region 272 remoting/client/software_video_renderer.cc const webrtc::DesktopRegion& region) { region 276 remoting/client/software_video_renderer.cc decoder_->Invalidate(view_size_, region); region 288 remoting/client/software_video_renderer.cc webrtc::DesktopRegion region; region 289 remoting/client/software_video_renderer.cc region.AddRect(webrtc::DesktopRect::MakeSize(view_size)); region 290 remoting/client/software_video_renderer.cc decoder_->Invalidate(view_size, region); region 392 remoting/client/software_video_renderer.cc const webrtc::DesktopRegion& region) { region 395 remoting/client/software_video_renderer.cc base::Unretained(core_.get()), region)); region 58 remoting/client/software_video_renderer.h virtual void InvalidateRegion(const webrtc::DesktopRegion& region) OVERRIDE; region 112 remoting/codec/codec_test.cc void AddRegion(const webrtc::DesktopRegion& region) { region 113 remoting/codec/codec_test.cc expected_region_.AddRegion(region); region 40 remoting/codec/video_decoder.h const webrtc::DesktopRegion& region) = 0; region 30 remoting/codec/video_decoder_verbatim.cc webrtc::DesktopRegion region; region 41 remoting/codec/video_decoder_verbatim.cc region.AddRect(rect); region 67 remoting/codec/video_decoder_verbatim.cc updated_region_.AddRegion(region); region 73 remoting/codec/video_decoder_verbatim.cc const webrtc::DesktopRegion& region) { region 74 remoting/codec/video_decoder_verbatim.cc updated_region_.AddRegion(region); region 29 remoting/codec/video_decoder_verbatim.h const webrtc::DesktopRegion& region) OVERRIDE; region 117 remoting/codec/video_decoder_vpx.cc webrtc::DesktopRegion region; region 120 remoting/codec/video_decoder_vpx.cc region.AddRect(webrtc::DesktopRect::MakeXYWH( region 125 remoting/codec/video_decoder_vpx.cc updated_region_.AddRegion(region); region 149 remoting/codec/video_decoder_vpx.cc const webrtc::DesktopRegion& region) { region 152 remoting/codec/video_decoder_vpx.cc for (webrtc::DesktopRegion::Iterator i(region); !i.IsAtEnd(); i.Advance()) { region 31 remoting/codec/video_decoder_vpx.h const webrtc::DesktopRegion& region) OVERRIDE; region 49 remoting/host/ipc_video_frame_capturer.cc void IpcVideoFrameCapturer::Capture(const webrtc::DesktopRegion& region) { region 35 remoting/host/ipc_video_frame_capturer.h virtual void Capture(const webrtc::DesktopRegion& region) OVERRIDE; region 47 remoting/host/screen_capturer_fake.cc void ScreenCapturerFake::Capture(const webrtc::DesktopRegion& region) { region 38 remoting/host/shaped_screen_capturer.cc void ShapedScreenCapturer::Capture(const webrtc::DesktopRegion& region) { region 39 remoting/host/shaped_screen_capturer.cc screen_capturer_->Capture(region); region 28 remoting/host/shaped_screen_capturer.h virtual void Capture(const webrtc::DesktopRegion& region) OVERRIDE; region 26 remoting/host/shaped_screen_capturer_unittest.cc virtual void Capture(const webrtc::DesktopRegion& region) OVERRIDE { region 82 remoting/host/video_scheduler_unittest.cc void OnCaptureFrame(const webrtc::DesktopRegion& region); region 143 remoting/host/video_scheduler_unittest.cc void VideoSchedulerTest::OnCaptureFrame(const webrtc::DesktopRegion& region) { region 183 skia/ext/benchmarking_canvas.cc virtual void onClipRegion(const SkRegion& region, region 186 skia/ext/benchmarking_canvas.cc SkProxyCanvas::onClipRegion(region, op); region 74 skia/ext/bitmap_platform_device_cairo.cc const SkRegion& region) { region 76 skia/ext/bitmap_platform_device_cairo.cc clip_region_ = region; region 194 skia/ext/bitmap_platform_device_cairo.cc const SkRegion& region, region 196 skia/ext/bitmap_platform_device_cairo.cc SetMatrixClip(transform, region); region 87 skia/ext/bitmap_platform_device_cairo.h virtual void setMatrixClip(const SkMatrix& transform, const SkRegion& region, region 106 skia/ext/bitmap_platform_device_cairo.h void SetMatrixClip(const SkMatrix& transform, const SkRegion& region); region 68 skia/ext/bitmap_platform_device_mac.cc const SkRegion& region) { region 70 skia/ext/bitmap_platform_device_mac.cc clip_region_ = region; region 205 skia/ext/bitmap_platform_device_mac.cc const SkRegion& region, region 207 skia/ext/bitmap_platform_device_mac.cc SetMatrixClip(transform, region); region 59 skia/ext/bitmap_platform_device_mac.h virtual void setMatrixClip(const SkMatrix& transform, const SkRegion& region, region 75 skia/ext/bitmap_platform_device_mac.h void SetMatrixClip(const SkMatrix& transform, const SkRegion& region); region 85 skia/ext/bitmap_platform_device_win.cc const SkRegion& region) { region 87 skia/ext/bitmap_platform_device_win.cc clip_region_ = region; region 204 skia/ext/bitmap_platform_device_win.cc const SkRegion& region, region 206 skia/ext/bitmap_platform_device_win.cc SetMatrixClip(transform, region); region 62 skia/ext/bitmap_platform_device_win.h virtual void setMatrixClip(const SkMatrix& transform, const SkRegion& region, region 111 skia/ext/bitmap_platform_device_win.h void SetMatrixClip(const SkMatrix& transform, const SkRegion& region); region 133 skia/ext/platform_device.h static void LoadClippingRegionToDC(HDC context, const SkRegion& region, region 145 skia/ext/platform_device.h const SkRegion& region, region 118 skia/ext/platform_device_mac.cc const SkRegion& region, region 120 skia/ext/platform_device_mac.cc if (region.isEmpty()) { region 125 skia/ext/platform_device_mac.cc } else if (region.isRect()) { region 136 skia/ext/platform_device_mac.cc rect.set(region.getBounds()); region 144 skia/ext/platform_device_mac.cc region.getBoundaryPath(&path); region 206 skia/ext/platform_device_win.cc const SkRegion& region, region 209 skia/ext/platform_device_win.cc if (region.isEmpty()) { region 212 skia/ext/platform_device_win.cc } else if (region.isRect()) { region 215 skia/ext/platform_device_win.cc hrgn = CreateRectRgnIndirect(&SkIRectToRECT(region.getBounds())); region 219 skia/ext/platform_device_win.cc region.getBoundaryPath(&path); region 679 skia/ext/vector_platform_device_emf_win.cc const SkRegion& region, region 683 skia/ext/vector_platform_device_emf_win.cc clip_region_ = region; region 76 skia/ext/vector_platform_device_emf_win.h virtual void setMatrixClip(const SkMatrix& transform, const SkRegion& region, region 68 third_party/libva/va/x11/va_dri2.h VA_DRI2CopyRegion(Display *dpy, XID drawable, XserverRegion region, region 179 third_party/libva/va/x11/va_dri2str.h CARD32 region B32; region 84 third_party/libxslt/libxslt/xsltlocale.c const char *region = NULL; region 134 third_party/libxslt/libxslt/xsltlocale.c region = (char *)xsltDefaultRegion((xmlChar *)localeName); region 135 third_party/libxslt/libxslt/xsltlocale.c if (region == NULL) region 139 third_party/libxslt/libxslt/xsltlocale.c *q++ = region[0]; region 140 third_party/libxslt/libxslt/xsltlocale.c *q++ = region[1]; region 154 third_party/libxslt/libxslt/xsltlocale.c const xmlChar *region = NULL; region 178 third_party/libxslt/libxslt/xsltlocale.c region = xsltDefaultRegion(localeName); region 179 third_party/libxslt/libxslt/xsltlocale.c if (region == NULL) goto end; region 181 third_party/libxslt/libxslt/xsltlocale.c strcpy(localeName + llen + 1, region); region 197 third_party/libxslt/libxslt/xsltlocale.c const char *region = NULL; region 204 third_party/libxslt/libxslt/xsltlocale.c if (c == 'a' || c == 'm') region = "ET"; region 205 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'f') region = "ZA"; region 206 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'n') region = "ES"; region 207 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'r') region = "AE"; region 208 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'z') region = "AZ"; region 211 third_party/libxslt/libxslt/xsltlocale.c if (c == 'e') region = "BY"; region 212 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'g') region = "BG"; region 213 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'n') region = "BD"; region 214 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'r') region = "FR"; region 215 third_party/libxslt/libxslt/xsltlocale.c else if (c == 's') region = "BA"; region 218 third_party/libxslt/libxslt/xsltlocale.c if (c == 'a') region = "ES"; region 219 third_party/libxslt/libxslt/xsltlocale.c else if (c == 's') region = "CZ"; region 220 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'y') region = "GB"; region 223 third_party/libxslt/libxslt/xsltlocale.c if (c == 'a') region = "DK"; region 224 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'e') region = "DE"; region 227 third_party/libxslt/libxslt/xsltlocale.c if (c == 'l') region = "GR"; region 228 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'n' || c == 'o') region = "US"; region 229 third_party/libxslt/libxslt/xsltlocale.c else if (c == 's' || c == 'u') region = "ES"; region 230 third_party/libxslt/libxslt/xsltlocale.c else if (c == 't') region = "EE"; region 233 third_party/libxslt/libxslt/xsltlocale.c if (c == 'a') region = "IR"; region 234 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'i') region = "FI"; region 235 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'o') region = "FO"; region 236 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'r') region = "FR"; region 239 third_party/libxslt/libxslt/xsltlocale.c if (c == 'a') region = "IE"; region 240 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'l') region = "ES"; region 241 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'v') region = "GB"; region 244 third_party/libxslt/libxslt/xsltlocale.c if (c == 'e') region = "IL"; region 245 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'i') region = "IN"; region 246 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'r') region = "HT"; region 247 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'u') region = "HU"; region 250 third_party/libxslt/libxslt/xsltlocale.c if (c == 'd') region = "ID"; region 251 third_party/libxslt/libxslt/xsltlocale.c else if (c == 's') region = "IS"; region 252 third_party/libxslt/libxslt/xsltlocale.c else if (c == 't') region = "IT"; region 253 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'w') region = "IL"; region 256 third_party/libxslt/libxslt/xsltlocale.c if (c == 'a') region = "JP"; region 259 third_party/libxslt/libxslt/xsltlocale.c if (c == 'l') region = "GL"; region 260 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'o') region = "KR"; region 261 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'w') region = "GB"; region 264 third_party/libxslt/libxslt/xsltlocale.c if (c == 't') region = "LT"; region 265 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'v') region = "LV"; region 268 third_party/libxslt/libxslt/xsltlocale.c if (c == 'k') region = "MK"; region 269 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'l' || c == 'r') region = "IN"; region 270 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'n') region = "MN"; region 271 third_party/libxslt/libxslt/xsltlocale.c else if (c == 's') region = "MY"; region 272 third_party/libxslt/libxslt/xsltlocale.c else if (c == 't') region = "MT"; region 275 third_party/libxslt/libxslt/xsltlocale.c if (c == 'b' || c == 'n' || c == 'o') region = "NO"; region 276 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'e') region = "NP"; region 277 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'l') region = "NL"; region 280 third_party/libxslt/libxslt/xsltlocale.c if (c == 'm') region = "ET"; region 283 third_party/libxslt/libxslt/xsltlocale.c if (c == 'a') region = "IN"; region 284 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'l') region = "PL"; region 285 third_party/libxslt/libxslt/xsltlocale.c else if (c == 't') region = "PT"; region 288 third_party/libxslt/libxslt/xsltlocale.c if (c == 'o') region = "RO"; region 289 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'u') region = "RU"; region 293 third_party/libxslt/libxslt/xsltlocale.c case 'e': region = "NO"; break; region 294 third_party/libxslt/libxslt/xsltlocale.c case 'h': region = "YU"; break; region 295 third_party/libxslt/libxslt/xsltlocale.c case 'k': region = "SK"; break; region 296 third_party/libxslt/libxslt/xsltlocale.c case 'l': region = "SI"; break; region 297 third_party/libxslt/libxslt/xsltlocale.c case 'o': region = "ET"; break; region 298 third_party/libxslt/libxslt/xsltlocale.c case 'q': region = "AL"; break; region 299 third_party/libxslt/libxslt/xsltlocale.c case 't': region = "ZA"; break; region 300 third_party/libxslt/libxslt/xsltlocale.c case 'v': region = "SE"; break; region 304 third_party/libxslt/libxslt/xsltlocale.c if (c == 'a' || c == 'e') region = "IN"; region 305 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'h') region = "TH"; region 306 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'i') region = "ER"; region 307 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'r') region = "TR"; region 308 third_party/libxslt/libxslt/xsltlocale.c else if (c == 't') region = "RU"; region 311 third_party/libxslt/libxslt/xsltlocale.c if (c == 'k') region = "UA"; region 312 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'r') region = "PK"; region 315 third_party/libxslt/libxslt/xsltlocale.c if (c == 'i') region = "VN"; region 318 third_party/libxslt/libxslt/xsltlocale.c if (c == 'a') region = "BE"; region 321 third_party/libxslt/libxslt/xsltlocale.c if (c == 'h') region = "ZA"; region 324 third_party/libxslt/libxslt/xsltlocale.c if (c == 'h') region = "CN"; region 325 third_party/libxslt/libxslt/xsltlocale.c else if (c == 'u') region = "ZA"; region 328 third_party/libxslt/libxslt/xsltlocale.c return((xmlChar *)region); region 151 third_party/npapi/bindings/npapi_extensions.h void* region; region 93 third_party/npapi/bindings/npfunctions.h typedef void (*NPN_InvalidateRegionProcPtr)(NPP instance, NPRegion region); region 318 third_party/npapi/npspy/extern/plugin/npupp.h typedef void (* NP_LOADDS NPN_InvalidateRegionUPP)(NPP instance, NPRegion region); region 648 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java matcher.region(matcher.end(), matcher.regionEnd()); region 652 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java matcher.region(pos + 1, matcher.regionEnd()); region 666 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java matcher.region(matcher.end(), matcher.regionEnd()); region 322 third_party/tcmalloc/chromium/src/base/low_level_alloc.cc AllocList *region = arena->freelist.next[0]; region 323 third_party/tcmalloc/chromium/src/base/low_level_alloc.cc size_t size = region->header.size; region 324 third_party/tcmalloc/chromium/src/base/low_level_alloc.cc arena->freelist.next[0] = region->next[0]; region 325 third_party/tcmalloc/chromium/src/base/low_level_alloc.cc RAW_CHECK(region->header.magic == region 326 third_party/tcmalloc/chromium/src/base/low_level_alloc.cc Magic(kMagicUnallocated, ®ion->header), region 328 third_party/tcmalloc/chromium/src/base/low_level_alloc.cc RAW_CHECK(region->header.arena == arena, region 332 third_party/tcmalloc/chromium/src/base/low_level_alloc.cc RAW_CHECK(reinterpret_cast<intptr_t>(region) % arena->pagesize == 0, region 336 third_party/tcmalloc/chromium/src/base/low_level_alloc.cc munmap_result = munmap(region, size); region 338 third_party/tcmalloc/chromium/src/base/low_level_alloc.cc munmap_result = MallocHook::UnhookedMUnmap(region, size); region 648 third_party/tcmalloc/chromium/src/heap-checker.cc MemoryRegionMap::Region region; region 649 third_party/tcmalloc/chromium/src/heap-checker.cc if (MemoryRegionMap::FindAndMarkStackRegion(top, ®ion)) { region 653 third_party/tcmalloc/chromium/src/heap-checker.cc top_ptr, region.end_addr - top); region 654 third_party/tcmalloc/chromium/src/heap-checker.cc live_objects->push_back(AllocObject(top_ptr, region.end_addr - top, region 658 third_party/tcmalloc/chromium/src/heap-checker.cc AsPtr(region.start_addr), region 659 third_party/tcmalloc/chromium/src/heap-checker.cc top - region.start_addr); region 660 third_party/tcmalloc/chromium/src/heap-checker.cc live_objects->push_back(AllocObject(AsPtr(region.start_addr), region 661 third_party/tcmalloc/chromium/src/heap-checker.cc top - region.start_addr, region 1153 third_party/tcmalloc/chromium/src/heap-checker.cc for (MemoryRegionMap::RegionIterator region = region 1155 third_party/tcmalloc/chromium/src/heap-checker.cc region != MemoryRegionMap::EndRegionLocked(); ++region) { region 1165 third_party/tcmalloc/chromium/src/heap-checker.cc if (!region->is_stack && global_region_caller_ranges) { region 1166 third_party/tcmalloc/chromium/src/heap-checker.cc if (region->caller() == static_cast<uintptr_t>(NULL)) { region 1170 third_party/tcmalloc/chromium/src/heap-checker.cc = global_region_caller_ranges->upper_bound(region->caller()); region 1172 third_party/tcmalloc/chromium/src/heap-checker.cc RAW_DCHECK(iter->first > region->caller(), ""); region 1173 third_party/tcmalloc/chromium/src/heap-checker.cc if (iter->second < region->caller()) { // in special region region 1186 third_party/tcmalloc/chromium/src/heap-checker.cc if (region->start_addr <= start && end <= region->end_addr) { region 1188 third_party/tcmalloc/chromium/src/heap-checker.cc } else if (start < region->start_addr && region 1189 third_party/tcmalloc/chromium/src/heap-checker.cc region->end_addr < end) { // cutting-out split region 1191 third_party/tcmalloc/chromium/src/heap-checker.cc region->start_addr - start, region 1193 third_party/tcmalloc/chromium/src/heap-checker.cc live_objects->push_back(AllocObject(AsPtr(region->end_addr), region 1194 third_party/tcmalloc/chromium/src/heap-checker.cc end - region->end_addr, region 1196 third_party/tcmalloc/chromium/src/heap-checker.cc } else if (region->end_addr > start && region 1197 third_party/tcmalloc/chromium/src/heap-checker.cc region->start_addr <= start) { // cut from start region 1198 third_party/tcmalloc/chromium/src/heap-checker.cc live_objects->push_back(AllocObject(AsPtr(region->end_addr), region 1199 third_party/tcmalloc/chromium/src/heap-checker.cc end - region->end_addr, region 1201 third_party/tcmalloc/chromium/src/heap-checker.cc } else if (region->start_addr > start && region 1202 third_party/tcmalloc/chromium/src/heap-checker.cc region->start_addr < end) { // cut from end region 1204 third_party/tcmalloc/chromium/src/heap-checker.cc region->start_addr - start, region 340 third_party/tcmalloc/chromium/src/memory_region_map.cc RegionSet::iterator region = regions_->lower_bound(sample); region 341 third_party/tcmalloc/chromium/src/memory_region_map.cc if (region != regions_->end()) { region 342 third_party/tcmalloc/chromium/src/memory_region_map.cc RAW_CHECK(addr <= region->end_addr, ""); region 343 third_party/tcmalloc/chromium/src/memory_region_map.cc if (region->start_addr <= addr && addr < region->end_addr) { region 344 third_party/tcmalloc/chromium/src/memory_region_map.cc return &(*region); region 353 third_party/tcmalloc/chromium/src/memory_region_map.cc const Region* region = DoFindRegionLocked(addr); region 354 third_party/tcmalloc/chromium/src/memory_region_map.cc if (region != NULL) *result = *region; // create it as an independent copy region 356 third_party/tcmalloc/chromium/src/memory_region_map.cc return region != NULL; region 362 third_party/tcmalloc/chromium/src/memory_region_map.cc const Region* region = DoFindRegionLocked(stack_top); region 363 third_party/tcmalloc/chromium/src/memory_region_map.cc if (region != NULL) { region 366 third_party/tcmalloc/chromium/src/memory_region_map.cc reinterpret_cast<void*>(region->start_addr), region 367 third_party/tcmalloc/chromium/src/memory_region_map.cc reinterpret_cast<void*>(region->end_addr)); region 368 third_party/tcmalloc/chromium/src/memory_region_map.cc const_cast<Region*>(region)->set_is_stack(); // now we know region 370 third_party/tcmalloc/chromium/src/memory_region_map.cc *result = *region; // create *result as an independent copy region 373 third_party/tcmalloc/chromium/src/memory_region_map.cc return region != NULL; region 444 third_party/tcmalloc/chromium/src/memory_region_map.cc inline void MemoryRegionMap::DoInsertRegionLocked(const Region& region) { region 446 third_party/tcmalloc/chromium/src/memory_region_map.cc reinterpret_cast<void*>(region.start_addr), region 447 third_party/tcmalloc/chromium/src/memory_region_map.cc reinterpret_cast<void*>(region.end_addr), region 448 third_party/tcmalloc/chromium/src/memory_region_map.cc reinterpret_cast<void*>(region.caller())); region 449 third_party/tcmalloc/chromium/src/memory_region_map.cc RegionSet::const_iterator i = regions_->lower_bound(region); region 450 third_party/tcmalloc/chromium/src/memory_region_map.cc if (i != regions_->end() && i->start_addr <= region.start_addr) { region 451 third_party/tcmalloc/chromium/src/memory_region_map.cc RAW_DCHECK(region.end_addr <= i->end_addr, ""); // lower_bound ensures this region 457 third_party/tcmalloc/chromium/src/memory_region_map.cc RAW_CHECK(i == regions_->end() || !region.Overlaps(*i), region 460 third_party/tcmalloc/chromium/src/memory_region_map.cc sample.SetRegionSetKey(region.start_addr); region 462 third_party/tcmalloc/chromium/src/memory_region_map.cc RAW_CHECK(i == regions_->end() || !region.Overlaps(*i), region 465 third_party/tcmalloc/chromium/src/memory_region_map.cc region.AssertIsConsistent(); // just making sure region 468 third_party/tcmalloc/chromium/src/memory_region_map.cc regions_->insert(region); region 470 third_party/tcmalloc/chromium/src/memory_region_map.cc reinterpret_cast<void*>(region.start_addr), region 471 third_party/tcmalloc/chromium/src/memory_region_map.cc reinterpret_cast<void*>(region.end_addr)); region 489 third_party/tcmalloc/chromium/src/memory_region_map.cc void (*insert_func)(const Region& region)) { region 547 third_party/tcmalloc/chromium/src/memory_region_map.cc inline void MemoryRegionMap::InsertRegionLocked(const Region& region) { region 557 third_party/tcmalloc/chromium/src/memory_region_map.cc reinterpret_cast<void*>(region.start_addr), region 558 third_party/tcmalloc/chromium/src/memory_region_map.cc reinterpret_cast<void*>(region.end_addr), region 559 third_party/tcmalloc/chromium/src/memory_region_map.cc reinterpret_cast<void*>(region.caller())); region 564 third_party/tcmalloc/chromium/src/memory_region_map.cc saved_regions[saved_regions_count++] = region; region 570 third_party/tcmalloc/chromium/src/memory_region_map.cc DoInsertRegionLocked(region); region 586 third_party/tcmalloc/chromium/src/memory_region_map.cc Region region; region 587 third_party/tcmalloc/chromium/src/memory_region_map.cc region.Create(start, size); region 591 third_party/tcmalloc/chromium/src/memory_region_map.cc ? MallocHook::GetCallerStackTrace(const_cast<void**>(region.call_stack), region 594 third_party/tcmalloc/chromium/src/memory_region_map.cc region.set_call_stack_depth(depth); // record stack info fully region 596 third_party/tcmalloc/chromium/src/memory_region_map.cc reinterpret_cast<void*>(region.start_addr), region 597 third_party/tcmalloc/chromium/src/memory_region_map.cc reinterpret_cast<void*>(region.end_addr), region 598 third_party/tcmalloc/chromium/src/memory_region_map.cc reinterpret_cast<void*>(region.caller())); region 602 third_party/tcmalloc/chromium/src/memory_region_map.cc InsertRegionLocked(region); region 606 third_party/tcmalloc/chromium/src/memory_region_map.cc HeapProfileBucket* b = GetBucket(depth, region.call_stack); region 667 third_party/tcmalloc/chromium/src/memory_region_map.cc for (RegionSet::iterator region = regions_->lower_bound(sample); region 668 third_party/tcmalloc/chromium/src/memory_region_map.cc region != regions_->end() && region->start_addr < end_addr; region 671 third_party/tcmalloc/chromium/src/memory_region_map.cc reinterpret_cast<void*>(region->start_addr), region 672 third_party/tcmalloc/chromium/src/memory_region_map.cc reinterpret_cast<void*>(region->end_addr)); region 673 third_party/tcmalloc/chromium/src/memory_region_map.cc if (start_addr <= region->start_addr && region 674 third_party/tcmalloc/chromium/src/memory_region_map.cc region->end_addr <= end_addr) { // full deletion region 676 third_party/tcmalloc/chromium/src/memory_region_map.cc reinterpret_cast<void*>(region->start_addr), region 677 third_party/tcmalloc/chromium/src/memory_region_map.cc reinterpret_cast<void*>(region->end_addr)); region 678 third_party/tcmalloc/chromium/src/memory_region_map.cc RecordRegionRemovalInBucket(region->call_stack_depth, region->call_stack, region 679 third_party/tcmalloc/chromium/src/memory_region_map.cc region->end_addr - region->start_addr); region 680 third_party/tcmalloc/chromium/src/memory_region_map.cc RegionSet::iterator d = region; region 681 third_party/tcmalloc/chromium/src/memory_region_map.cc ++region; region 684 third_party/tcmalloc/chromium/src/memory_region_map.cc } else if (region->start_addr < start_addr && region 685 third_party/tcmalloc/chromium/src/memory_region_map.cc end_addr < region->end_addr) { // cutting-out split region 687 third_party/tcmalloc/chromium/src/memory_region_map.cc reinterpret_cast<void*>(region->start_addr), region 688 third_party/tcmalloc/chromium/src/memory_region_map.cc reinterpret_cast<void*>(region->end_addr)); region 689 third_party/tcmalloc/chromium/src/memory_region_map.cc RecordRegionRemovalInBucket(region->call_stack_depth, region->call_stack, region 694 third_party/tcmalloc/chromium/src/memory_region_map.cc Region r = *region; region 698 third_party/tcmalloc/chromium/src/memory_region_map.cc const_cast<Region&>(*region).set_start_addr(end_addr); region 699 third_party/tcmalloc/chromium/src/memory_region_map.cc } else if (end_addr > region->start_addr && region 700 third_party/tcmalloc/chromium/src/memory_region_map.cc start_addr <= region->start_addr) { // cut from start region 702 third_party/tcmalloc/chromium/src/memory_region_map.cc reinterpret_cast<void*>(region->start_addr), region 703 third_party/tcmalloc/chromium/src/memory_region_map.cc reinterpret_cast<void*>(region->end_addr)); region 704 third_party/tcmalloc/chromium/src/memory_region_map.cc RecordRegionRemovalInBucket(region->call_stack_depth, region->call_stack, region 705 third_party/tcmalloc/chromium/src/memory_region_map.cc end_addr - region->start_addr); region 706 third_party/tcmalloc/chromium/src/memory_region_map.cc const_cast<Region&>(*region).set_start_addr(end_addr); region 707 third_party/tcmalloc/chromium/src/memory_region_map.cc } else if (start_addr > region->start_addr && region 708 third_party/tcmalloc/chromium/src/memory_region_map.cc start_addr < region->end_addr) { // cut from end region 710 third_party/tcmalloc/chromium/src/memory_region_map.cc reinterpret_cast<void*>(region->start_addr), region 711 third_party/tcmalloc/chromium/src/memory_region_map.cc reinterpret_cast<void*>(region->end_addr)); region 712 third_party/tcmalloc/chromium/src/memory_region_map.cc RecordRegionRemovalInBucket(region->call_stack_depth, region->call_stack, region 713 third_party/tcmalloc/chromium/src/memory_region_map.cc region->end_addr - start_addr); region 715 third_party/tcmalloc/chromium/src/memory_region_map.cc Region r = *region; region 717 third_party/tcmalloc/chromium/src/memory_region_map.cc RegionSet::iterator d = region; region 718 third_party/tcmalloc/chromium/src/memory_region_map.cc ++region; region 725 third_party/tcmalloc/chromium/src/memory_region_map.cc ++region; region 354 third_party/tcmalloc/chromium/src/memory_region_map.h inline static void DoInsertRegionLocked(const Region& region); region 358 third_party/tcmalloc/chromium/src/memory_region_map.h void (*insert_func)(const Region& region)); region 369 third_party/tcmalloc/chromium/src/memory_region_map.h inline static void InsertRegionLocked(const Region& region); region 322 third_party/tcmalloc/vendor/src/base/low_level_alloc.cc AllocList *region = arena->freelist.next[0]; region 323 third_party/tcmalloc/vendor/src/base/low_level_alloc.cc size_t size = region->header.size; region 324 third_party/tcmalloc/vendor/src/base/low_level_alloc.cc arena->freelist.next[0] = region->next[0]; region 325 third_party/tcmalloc/vendor/src/base/low_level_alloc.cc RAW_CHECK(region->header.magic == region 326 third_party/tcmalloc/vendor/src/base/low_level_alloc.cc Magic(kMagicUnallocated, ®ion->header), region 328 third_party/tcmalloc/vendor/src/base/low_level_alloc.cc RAW_CHECK(region->header.arena == arena, region 332 third_party/tcmalloc/vendor/src/base/low_level_alloc.cc RAW_CHECK(reinterpret_cast<intptr_t>(region) % arena->pagesize == 0, region 336 third_party/tcmalloc/vendor/src/base/low_level_alloc.cc munmap_result = munmap(region, size); region 338 third_party/tcmalloc/vendor/src/base/low_level_alloc.cc munmap_result = MallocHook::UnhookedMUnmap(region, size); region 648 third_party/tcmalloc/vendor/src/heap-checker.cc MemoryRegionMap::Region region; region 649 third_party/tcmalloc/vendor/src/heap-checker.cc if (MemoryRegionMap::FindAndMarkStackRegion(top, ®ion)) { region 653 third_party/tcmalloc/vendor/src/heap-checker.cc top_ptr, region.end_addr - top); region 654 third_party/tcmalloc/vendor/src/heap-checker.cc live_objects->push_back(AllocObject(top_ptr, region.end_addr - top, region 658 third_party/tcmalloc/vendor/src/heap-checker.cc AsPtr(region.start_addr), region 659 third_party/tcmalloc/vendor/src/heap-checker.cc top - region.start_addr); region 660 third_party/tcmalloc/vendor/src/heap-checker.cc live_objects->push_back(AllocObject(AsPtr(region.start_addr), region 661 third_party/tcmalloc/vendor/src/heap-checker.cc top - region.start_addr, region 1153 third_party/tcmalloc/vendor/src/heap-checker.cc for (MemoryRegionMap::RegionIterator region = region 1155 third_party/tcmalloc/vendor/src/heap-checker.cc region != MemoryRegionMap::EndRegionLocked(); ++region) { region 1165 third_party/tcmalloc/vendor/src/heap-checker.cc if (!region->is_stack && global_region_caller_ranges) { region 1166 third_party/tcmalloc/vendor/src/heap-checker.cc if (region->caller() == static_cast<uintptr_t>(NULL)) { region 1170 third_party/tcmalloc/vendor/src/heap-checker.cc = global_region_caller_ranges->upper_bound(region->caller()); region 1172 third_party/tcmalloc/vendor/src/heap-checker.cc RAW_DCHECK(iter->first > region->caller(), ""); region 1173 third_party/tcmalloc/vendor/src/heap-checker.cc if (iter->second < region->caller()) { // in special region region 1186 third_party/tcmalloc/vendor/src/heap-checker.cc if (region->start_addr <= start && end <= region->end_addr) { region 1188 third_party/tcmalloc/vendor/src/heap-checker.cc } else if (start < region->start_addr && region 1189 third_party/tcmalloc/vendor/src/heap-checker.cc region->end_addr < end) { // cutting-out split region 1191 third_party/tcmalloc/vendor/src/heap-checker.cc region->start_addr - start, region 1193 third_party/tcmalloc/vendor/src/heap-checker.cc live_objects->push_back(AllocObject(AsPtr(region->end_addr), region 1194 third_party/tcmalloc/vendor/src/heap-checker.cc end - region->end_addr, region 1196 third_party/tcmalloc/vendor/src/heap-checker.cc } else if (region->end_addr > start && region 1197 third_party/tcmalloc/vendor/src/heap-checker.cc region->start_addr <= start) { // cut from start region 1198 third_party/tcmalloc/vendor/src/heap-checker.cc live_objects->push_back(AllocObject(AsPtr(region->end_addr), region 1199 third_party/tcmalloc/vendor/src/heap-checker.cc end - region->end_addr, region 1201 third_party/tcmalloc/vendor/src/heap-checker.cc } else if (region->start_addr > start && region 1202 third_party/tcmalloc/vendor/src/heap-checker.cc region->start_addr < end) { // cut from end region 1204 third_party/tcmalloc/vendor/src/heap-checker.cc region->start_addr - start, region 303 third_party/tcmalloc/vendor/src/memory_region_map.cc RegionSet::iterator region = regions_->lower_bound(sample); region 304 third_party/tcmalloc/vendor/src/memory_region_map.cc if (region != regions_->end()) { region 305 third_party/tcmalloc/vendor/src/memory_region_map.cc RAW_CHECK(addr <= region->end_addr, ""); region 306 third_party/tcmalloc/vendor/src/memory_region_map.cc if (region->start_addr <= addr && addr < region->end_addr) { region 307 third_party/tcmalloc/vendor/src/memory_region_map.cc return &(*region); region 316 third_party/tcmalloc/vendor/src/memory_region_map.cc const Region* region = DoFindRegionLocked(addr); region 317 third_party/tcmalloc/vendor/src/memory_region_map.cc if (region != NULL) *result = *region; // create it as an independent copy region 319 third_party/tcmalloc/vendor/src/memory_region_map.cc return region != NULL; region 325 third_party/tcmalloc/vendor/src/memory_region_map.cc const Region* region = DoFindRegionLocked(stack_top); region 326 third_party/tcmalloc/vendor/src/memory_region_map.cc if (region != NULL) { region 329 third_party/tcmalloc/vendor/src/memory_region_map.cc reinterpret_cast<void*>(region->start_addr), region 330 third_party/tcmalloc/vendor/src/memory_region_map.cc reinterpret_cast<void*>(region->end_addr)); region 331 third_party/tcmalloc/vendor/src/memory_region_map.cc const_cast<Region*>(region)->set_is_stack(); // now we know region 333 third_party/tcmalloc/vendor/src/memory_region_map.cc *result = *region; // create *result as an independent copy region 336 third_party/tcmalloc/vendor/src/memory_region_map.cc return region != NULL; region 351 third_party/tcmalloc/vendor/src/memory_region_map.cc inline void MemoryRegionMap::DoInsertRegionLocked(const Region& region) { region 353 third_party/tcmalloc/vendor/src/memory_region_map.cc reinterpret_cast<void*>(region.start_addr), region 354 third_party/tcmalloc/vendor/src/memory_region_map.cc reinterpret_cast<void*>(region.end_addr), region 355 third_party/tcmalloc/vendor/src/memory_region_map.cc reinterpret_cast<void*>(region.caller())); region 356 third_party/tcmalloc/vendor/src/memory_region_map.cc RegionSet::const_iterator i = regions_->lower_bound(region); region 357 third_party/tcmalloc/vendor/src/memory_region_map.cc if (i != regions_->end() && i->start_addr <= region.start_addr) { region 358 third_party/tcmalloc/vendor/src/memory_region_map.cc RAW_DCHECK(region.end_addr <= i->end_addr, ""); // lower_bound ensures this region 364 third_party/tcmalloc/vendor/src/memory_region_map.cc RAW_CHECK(i == regions_->end() || !region.Overlaps(*i), region 367 third_party/tcmalloc/vendor/src/memory_region_map.cc sample.SetRegionSetKey(region.start_addr); region 369 third_party/tcmalloc/vendor/src/memory_region_map.cc RAW_CHECK(i == regions_->end() || !region.Overlaps(*i), region 372 third_party/tcmalloc/vendor/src/memory_region_map.cc region.AssertIsConsistent(); // just making sure region 375 third_party/tcmalloc/vendor/src/memory_region_map.cc regions_->insert(region); region 377 third_party/tcmalloc/vendor/src/memory_region_map.cc reinterpret_cast<void*>(region.start_addr), region 378 third_party/tcmalloc/vendor/src/memory_region_map.cc reinterpret_cast<void*>(region.end_addr)); region 396 third_party/tcmalloc/vendor/src/memory_region_map.cc void (*insert_func)(const Region& region)) { region 407 third_party/tcmalloc/vendor/src/memory_region_map.cc inline void MemoryRegionMap::InsertRegionLocked(const Region& region) { region 417 third_party/tcmalloc/vendor/src/memory_region_map.cc reinterpret_cast<void*>(region.start_addr), region 418 third_party/tcmalloc/vendor/src/memory_region_map.cc reinterpret_cast<void*>(region.end_addr), region 419 third_party/tcmalloc/vendor/src/memory_region_map.cc reinterpret_cast<void*>(region.caller())); region 424 third_party/tcmalloc/vendor/src/memory_region_map.cc saved_regions[saved_regions_count++] = region; region 436 third_party/tcmalloc/vendor/src/memory_region_map.cc DoInsertRegionLocked(region); region 452 third_party/tcmalloc/vendor/src/memory_region_map.cc Region region; region 453 third_party/tcmalloc/vendor/src/memory_region_map.cc region.Create(start, size); region 457 third_party/tcmalloc/vendor/src/memory_region_map.cc ? MallocHook::GetCallerStackTrace(const_cast<void**>(region.call_stack), region 460 third_party/tcmalloc/vendor/src/memory_region_map.cc region.set_call_stack_depth(depth); // record stack info fully region 462 third_party/tcmalloc/vendor/src/memory_region_map.cc reinterpret_cast<void*>(region.start_addr), region 463 third_party/tcmalloc/vendor/src/memory_region_map.cc reinterpret_cast<void*>(region.end_addr), region 464 third_party/tcmalloc/vendor/src/memory_region_map.cc reinterpret_cast<void*>(region.caller())); region 468 third_party/tcmalloc/vendor/src/memory_region_map.cc InsertRegionLocked(region); region 522 third_party/tcmalloc/vendor/src/memory_region_map.cc for (RegionSet::iterator region = regions_->lower_bound(sample); region 523 third_party/tcmalloc/vendor/src/memory_region_map.cc region != regions_->end() && region->start_addr < end_addr; region 526 third_party/tcmalloc/vendor/src/memory_region_map.cc reinterpret_cast<void*>(region->start_addr), region 527 third_party/tcmalloc/vendor/src/memory_region_map.cc reinterpret_cast<void*>(region->end_addr)); region 528 third_party/tcmalloc/vendor/src/memory_region_map.cc if (start_addr <= region->start_addr && region 529 third_party/tcmalloc/vendor/src/memory_region_map.cc region->end_addr <= end_addr) { // full deletion region 531 third_party/tcmalloc/vendor/src/memory_region_map.cc reinterpret_cast<void*>(region->start_addr), region 532 third_party/tcmalloc/vendor/src/memory_region_map.cc reinterpret_cast<void*>(region->end_addr)); region 533 third_party/tcmalloc/vendor/src/memory_region_map.cc RegionSet::iterator d = region; region 534 third_party/tcmalloc/vendor/src/memory_region_map.cc ++region; region 537 third_party/tcmalloc/vendor/src/memory_region_map.cc } else if (region->start_addr < start_addr && region 538 third_party/tcmalloc/vendor/src/memory_region_map.cc end_addr < region->end_addr) { // cutting-out split region 540 third_party/tcmalloc/vendor/src/memory_region_map.cc reinterpret_cast<void*>(region->start_addr), region 541 third_party/tcmalloc/vendor/src/memory_region_map.cc reinterpret_cast<void*>(region->end_addr)); region 545 third_party/tcmalloc/vendor/src/memory_region_map.cc Region r = *region; region 549 third_party/tcmalloc/vendor/src/memory_region_map.cc const_cast<Region&>(*region).set_start_addr(end_addr); region 550 third_party/tcmalloc/vendor/src/memory_region_map.cc } else if (end_addr > region->start_addr && region 551 third_party/tcmalloc/vendor/src/memory_region_map.cc start_addr <= region->start_addr) { // cut from start region 553 third_party/tcmalloc/vendor/src/memory_region_map.cc reinterpret_cast<void*>(region->start_addr), region 554 third_party/tcmalloc/vendor/src/memory_region_map.cc reinterpret_cast<void*>(region->end_addr)); region 555 third_party/tcmalloc/vendor/src/memory_region_map.cc const_cast<Region&>(*region).set_start_addr(end_addr); region 556 third_party/tcmalloc/vendor/src/memory_region_map.cc } else if (start_addr > region->start_addr && region 557 third_party/tcmalloc/vendor/src/memory_region_map.cc start_addr < region->end_addr) { // cut from end region 559 third_party/tcmalloc/vendor/src/memory_region_map.cc reinterpret_cast<void*>(region->start_addr), region 560 third_party/tcmalloc/vendor/src/memory_region_map.cc reinterpret_cast<void*>(region->end_addr)); region 562 third_party/tcmalloc/vendor/src/memory_region_map.cc Region r = *region; region 564 third_party/tcmalloc/vendor/src/memory_region_map.cc RegionSet::iterator d = region; region 565 third_party/tcmalloc/vendor/src/memory_region_map.cc ++region; region 572 third_party/tcmalloc/vendor/src/memory_region_map.cc ++region; region 306 third_party/tcmalloc/vendor/src/memory_region_map.h inline static void DoInsertRegionLocked(const Region& region); region 310 third_party/tcmalloc/vendor/src/memory_region_map.h void (*insert_func)(const Region& region)); region 313 third_party/tcmalloc/vendor/src/memory_region_map.h inline static void InsertRegionLocked(const Region& region); region 1830 third_party/wtl/include/atlgdi.h int GetClipRgn(CRgn& region) const region 1833 third_party/wtl/include/atlgdi.h if(region.IsNull()) region 1834 third_party/wtl/include/atlgdi.h region.CreateRectRgn(0, 0, 0, 0); region 1836 third_party/wtl/include/atlgdi.h int nRet = ::GetClipRgn(m_hDC, region); region 1838 third_party/wtl/include/atlgdi.h region.DeleteObject(); region 88 ui/aura/window_observer.h const gfx::Rect& region) {} region 13 ui/base/gtk/scoped_region.cc ScopedRegion::ScopedRegion(GdkRegion* region) : region_(region) {} region 19 ui/base/gtk/scoped_region.cc void ScopedRegion::Set(GdkRegion* region) { region 21 ui/base/gtk/scoped_region.cc region_ = region; region 29 ui/base/gtk/scoped_region.cc GdkRegion* region = region_; region 31 ui/base/gtk/scoped_region.cc return region; region 20 ui/base/gtk/scoped_region.h explicit ScopedRegion(GdkRegion* region); region 24 ui/base/gtk/scoped_region.h void Set(GdkRegion* region); region 249 ui/base/ime/remote_input_method_win.cc const std::string& region = region 251 ui/base/ime/remote_input_method_win.cc if (region.empty()) region 253 ui/base/ime/remote_input_method_win.cc return language.append(1, '-').append(region); region 498 ui/base/ime/win/imm32_manager.cc std::string region; region 499 ui/base/ime/win/imm32_manager.cc base::WideToUTF8(buffer, length - 1, ®ion); region 500 ui/base/ime/win/imm32_manager.cc return language.append(1, '-').append(region); region 342 ui/base/l10n/l10n_util.cc std::string region(locale, hyphen_pos + 1); region 347 ui/base/l10n/l10n_util.cc !LowerCaseEqualsASCII(region, "es")) { region 351 ui/base/l10n/l10n_util.cc if (LowerCaseEqualsASCII(region, "hk") || region 352 ui/base/l10n/l10n_util.cc LowerCaseEqualsASCII(region, "mo")) { // Macao region 362 ui/base/l10n/l10n_util.cc if (LowerCaseEqualsASCII(region, "au") || region 363 ui/base/l10n/l10n_util.cc LowerCaseEqualsASCII(region, "ca") || region 364 ui/base/l10n/l10n_util.cc LowerCaseEqualsASCII(region, "nz") || region 365 ui/base/l10n/l10n_util.cc LowerCaseEqualsASCII(region, "za")) { region 18 ui/gfx/canvas_paint_gtk.cc region_(gdk_region_copy(event->region)), region 26 ui/gfx/canvas_paint_gtk.cc region_(gdk_region_copy(event->region)), region 129 ui/gfx/gtk_util.cc void SubtractRectanglesFromRegion(GdkRegion* region, region 134 ui/gfx/gtk_util.cc gdk_region_subtract(region, rect_region); region 39 ui/gfx/gtk_util.h GFX_EXPORT void SubtractRectanglesFromRegion(GdkRegion* region, region 20 ui/gfx/path_aura.cc SkRegion* region = new SkRegion; region 21 ui/gfx/path_aura.cc region->setPath(*this, clip_region); region 22 ui/gfx/path_aura.cc return region; region 14 ui/gfx/path_win.cc HRGN CreateHRGNFromSkRegion(const SkRegion& region) { region 18 ui/gfx/path_win.cc for (SkRegion::Iterator i(region); !i.done(); i.next()) { region 15 ui/gfx/path_x11.cc Region CreateRegionFromSkRegion(const SkRegion& region) { region 18 ui/gfx/path_x11.cc for (SkRegion::Iterator i(region); !i.done(); i.next()) { region 20 ui/gfx/path_x11.h GFX_EXPORT REGION* CreateRegionFromSkRegion(const SkRegion& region); region 16 ui/gfx/scoped_sk_region.h explicit ScopedSkRegion(SkRegion* region) : region_(region) {} region 22 ui/gfx/scoped_sk_region.h void Set(SkRegion* region) { region 24 ui/gfx/scoped_sk_region.h region_ = region; region 32 ui/gfx/scoped_sk_region.h SkRegion* region = region_; region 34 ui/gfx/scoped_sk_region.h return region; region 537 ui/gfx/skbitmap_operations_unittest.cc SkRegion region; region 539 ui/gfx/skbitmap_operations_unittest.cc region.setRect(0, 0, src_w / 2, src_h / 2); region 540 ui/gfx/skbitmap_operations_unittest.cc canvas.setClipRegion(region); region 543 ui/gfx/skbitmap_operations_unittest.cc region.setRect(src_w / 2, 0, src_w, src_h / 2); region 544 ui/gfx/skbitmap_operations_unittest.cc canvas.setClipRegion(region); region 546 ui/gfx/skbitmap_operations_unittest.cc region.setRect(0, src_h / 2, src_w / 2, src_h); region 547 ui/gfx/skbitmap_operations_unittest.cc canvas.setClipRegion(region); region 549 ui/gfx/skbitmap_operations_unittest.cc region.setRect(src_w / 2, src_h / 2, src_w, src_h); region 550 ui/gfx/skbitmap_operations_unittest.cc canvas.setClipRegion(region); region 482 ui/views/controls/table/table_view.cc const PaintRegion region(GetPaintRegion(GetPaintBounds(canvas))); region 483 ui/views/controls/table/table_view.cc if (region.min_column == -1) region 492 ui/views/controls/table/table_view.cc for (int i = region.min_row; i < region.max_row; ++i) { region 504 ui/views/controls/table/table_view.cc for (int j = region.min_column; j < region.max_column; ++j) { region 540 ui/views/controls/table/table_view.cc if (!grouper_ || region.min_column > 0) region 551 ui/views/controls/table/table_view.cc for (int i = region.min_row; i < region.max_row; ) { region 705 ui/views/controls/table/table_view.cc PaintRegion region; region 706 ui/views/controls/table/table_view.cc region.min_row = std::min(RowCount() - 1, region 708 ui/views/controls/table/table_view.cc region.max_row = bounds.bottom() / row_height_; region 710 ui/views/controls/table/table_view.cc region.max_row++; region 711 ui/views/controls/table/table_view.cc region.max_row = std::min(region.max_row, RowCount()); region 714 ui/views/controls/table/table_view.cc region.max_column = 1; region 715 ui/views/controls/table/table_view.cc return region; region 720 ui/views/controls/table/table_view.cc region.min_column = -1; region 721 ui/views/controls/table/table_view.cc region.max_column = visible_columns_.size(); region 724 ui/views/controls/table/table_view.cc if (region.min_column == -1 && max_x >= paint_x) region 725 ui/views/controls/table/table_view.cc region.min_column = static_cast<int>(i); region 726 ui/views/controls/table/table_view.cc if (region.min_column != -1 && visible_columns_[i].x >= paint_max_x) { region 727 ui/views/controls/table/table_view.cc region.max_column = i; region 731 ui/views/controls/table/table_view.cc return region; region 23 ui/views/controls/table/table_view_unittest.cc TableView::PaintRegion region(table_->GetPaintRegion(bounds)); region 24 ui/views/controls/table/table_view_unittest.cc return "rows=" + base::IntToString(region.min_row) + " " + region 25 ui/views/controls/table/table_view_unittest.cc base::IntToString(region.max_row) + " cols=" + region 26 ui/views/controls/table/table_view_unittest.cc base::IntToString(region.min_column) + " " + region 27 ui/views/controls/table/table_view_unittest.cc base::IntToString(region.max_column); region 1210 ui/views/widget/desktop_aura/desktop_window_tree_host_x11.cc Region region = gfx::CreateRegionFromSkPath(window_mask); region 1212 ui/views/widget/desktop_aura/desktop_window_tree_host_x11.cc 0, 0, region, false); region 1213 ui/views/widget/desktop_aura/desktop_window_tree_host_x11.cc XDestroyRegion(region); region 439 ui/views/widget/native_widget_aura.cc void NativeWidgetAura::SetShape(gfx::NativeRegion region) { region 441 ui/views/widget/native_widget_aura.cc delete region; region 549 ui/views/win/hwnd_message_handler.cc void HWNDMessageHandler::SetRegion(HRGN region) { region 550 ui/views/win/hwnd_message_handler.cc custom_window_region_.Set(region); region 304 webkit/renderer/compositor_bindings/web_layer_impl.cc cc::Region region; region 306 webkit/renderer/compositor_bindings/web_layer_impl.cc region.Union(rects[i]); region 307 webkit/renderer/compositor_bindings/web_layer_impl.cc layer_->SetNonFastScrollableRegion(region); region 329 webkit/renderer/compositor_bindings/web_layer_impl.cc cc::Region region; region 331 webkit/renderer/compositor_bindings/web_layer_impl.cc region.Union(rects[i]); region 332 webkit/renderer/compositor_bindings/web_layer_impl.cc layer_->SetTouchEventHandlerRegion(region); region 123 webkit/renderer/compositor_bindings/web_layer_impl.h const blink::WebVector<blink::WebRect>& region); region 126 webkit/renderer/compositor_bindings/web_layer_impl.h const blink::WebVector<blink::WebRect>& region);