HomeSort by relevance Sort by last modified time
    Searched refs:regions (Results 1 - 25 of 81) sorted by null

1 2 3 4

  /external/chromium_org/base/debug/
proc_maps_linux_unittest.cc 16 std::vector<MappedMemoryRegion> regions; local
17 EXPECT_TRUE(ParseProcMaps("", &regions));
18 EXPECT_EQ(0u, regions.size());
25 std::vector<MappedMemoryRegion> regions; local
26 ASSERT_TRUE(ParseProcMaps(kNoSpaces, &regions));
27 ASSERT_EQ(1u, regions.size());
29 EXPECT_EQ(0x00400000u, regions[0].start);
30 EXPECT_EQ(0x0040b000u, regions[0].end);
31 EXPECT_EQ(0x00002200u, regions[0].offset);
32 EXPECT_EQ("/bin/cat", regions[0].path)
39 std::vector<MappedMemoryRegion> regions; local
53 std::vector<MappedMemoryRegion> regions; local
61 std::vector<MappedMemoryRegion> regions; local
75 std::vector<MappedMemoryRegion> regions; local
90 std::vector<MappedMemoryRegion> regions; local
104 std::vector<MappedMemoryRegion> regions; local
121 std::vector<MappedMemoryRegion> regions; local
174 std::vector<MappedMemoryRegion> regions; local
187 std::vector<MappedMemoryRegion> regions; local
258 std::vector<MappedMemoryRegion> regions; local
275 std::vector<MappedMemoryRegion> regions; local
281 std::vector<MappedMemoryRegion> regions; local
291 std::vector<MappedMemoryRegion> regions; local
    [all...]
proc_maps_linux.h 82 // Parses /proc/<pid>/maps input data and stores in |regions|. Returns true
83 // and updates |regions| if and only if all of |input| was successfully parsed.
85 std::vector<MappedMemoryRegion>* regions);
stack_trace_android.cc 84 std::vector<MappedMemoryRegion> regions; local
94 } else if (!ParseProcMaps(proc_maps, &regions)) {
104 std::vector<MappedMemoryRegion>::iterator iter = regions.begin();
105 while (iter != regions.end()) {
115 if (iter != regions.end()) {
proc_maps_linux.cc 95 std::vector<MappedMemoryRegion> regions; local
158 regions.push_back(region);
159 regions.back().path.assign(line + path_index);
162 regions_out->swap(regions);
  /art/compiler/sea_ir/ir/
regions_test.cc 31 std::vector<sea_ir::Region*>* regions = sg.GetRegions(); local
32 // Test that regions have been registered correctly as children of the graph.
33 EXPECT_TRUE(std::find(regions->begin(), regions->end(), root) != regions->end());
34 EXPECT_TRUE(std::find(regions->begin(), regions->end(), then_region) != regions->end());
35 EXPECT_TRUE(std::find(regions->begin(), regions->end(), else_region) != regions->end())
    [all...]
  /external/chromium_org/chrome/browser/chromeos/ui/
accessibility_focus_ring_controller.cc 110 // Split the rects into contiguous regions.
111 std::vector<Region> regions; local
112 regions.push_back(Region(rects[0]));
115 for (size_t j = 0; j < regions.size(); ++j) {
116 if (Intersects(rects[i], regions[j].bounds)) {
117 regions[j].rects.push_back(rects[i]);
118 regions[j].bounds.Union(rects[i]);
123 regions.push_back(Region(rects[i]));
127 // Keep merging regions that intersect.
133 for (size_t i = 0; i < regions.size() - 1 && !merged; ++i)
    [all...]
  /external/clang/tools/clang-format/
clang-format-sublime.py 10 # or regions are extended to the next bigger syntactic entities.
34 regions = []
37 regions.append(region)
54 for region in regions:
  /external/chromium_org/content/shell/android/linker_test_apk/
chromium_linker_test_linker_tests.cc 68 std::vector<MappedMemoryRegion> regions; local
69 base::debug::ParseProcMaps(maps, &regions);
70 if (regions.empty()) {
78 for (size_t n = 0; n < regions.size(); ++n) {
79 MappedMemoryRegion& region = regions[n];
  /external/chromium_org/third_party/WebKit/Source/modules/geofencing/
Geofencing.cpp 25 // For CallbackPromiseAdapter to convert a WebVector of regions to a HeapVector.
32 HeapVector<Member<GeofencingRegion> > regions; local
34 regions.append(CircularGeofencingRegion::create((*webRegions)[i].id, (*webRegions)[i].region));
35 return regions;
  /cts/apps/CameraITS/tests/inprog/
test_crop_region.py 22 """Takes shots with different sensor crop regions.
26 # Regions specified here in x,y,w,h normalized form.
27 regions = [[0.0, 0.0, 0.5, 0.5], # top left
41 # Capture a frame for each of the regions.
42 for i,region in enumerate(regions):
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
TextTrack.idl 49 [RuntimeEnabled=WebVTTRegions] readonly attribute VTTRegionList regions;
  /external/chromium_org/third_party/icu/source/tools/tzcode/
tzselect.ksh 181 # Get list of names of time zone rule regions in the country.
182 regions=$($AWK -F'\t' \
200 case $regions in
203 'time zone regions.'
204 select region in $regions
215 region=$regions
  /external/icu/icu4c/source/tools/tzcode/
tzselect.ksh 181 # Get list of names of time zone rule regions in the country.
182 regions=$($AWK -F'\t' \
200 case $regions in
203 'time zone regions.'
204 select region in $regions
215 region=$regions
  /external/chromium_org/extensions/browser/app_window/
app_window_contents.h 52 void UpdateDraggableRegions(const std::vector<DraggableRegion>& regions);
native_app_window.h 46 // Called when the draggable regions are changed.
48 const std::vector<DraggableRegion>& regions) = 0;
app_window_contents.cc 125 const std::vector<DraggableRegion>& regions) {
126 host_->UpdateDraggableRegions(regions);
  /external/chromium_org/third_party/libaddressinput/chromium/
input_suggester.cc 82 // Marks all regions at |address_field| level as matching user input.
87 // Marks given regions at |address_field| level as matching user input. The
88 // |regions_match_key| parameter contains the regions that match user input by
89 // their keys. The |regions_match_name| parameter contains the regions that
109 // |parent_address_field| level regions.
117 RegionsMatchInput* regions = NULL; local
119 regions = &regions_match_input_[address_field];
138 // Regions that do not have a parent that also matches input will not
153 if (regions)
154 regions->names.insert(name_region)
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
live_regions_deprecated.js 6 * @fileoverview Keeps track of live regions on the page and speaks updates
26 * An array of all of the elements on the page that are live regions.
45 * updates, to avoid announcing regions as they're initially created.
58 * @return {boolean} true if any regions announced.
68 var regions = cvox.AriaUtil.getLiveRegions(document.body);
69 for (var i = 0; i < regions.length; i++) {
70 if (cvox.LiveRegionsDeprecated.updateLiveRegion(regions[i], queueMode,
live_regions.js 6 * @fileoverview Keeps track of live regions on the page and speaks updates
34 * updates, to avoid announcing regions as they're initially created.
43 * mutation. Needed to allow live regions to fade in and have an initial
88 * @return {boolean} true if any regions announced.
101 // Speak any live regions already on the page. The logic below will
104 var regions = cvox.AriaUtil.getLiveRegions(document.body);
105 for (var i = 0; i < regions.length; i++) {
107 regions[i],
108 regions[i],
294 * In order to handle live regions that fade in, if the node isn't currentl
    [all...]
  /external/blktrace/btt/
trace_complete.c 61 update_cregion(&c_iop->dip->regions, c_iop->t.time);
63 update_cregion(&c_iop->pip->regions, c_iop->t.time);
  /bionic/libc/kernel/uapi/linux/
vhost.h 61 struct vhost_memory_region regions[0]; member in struct:vhost_memory
  /development/ndk/platforms/android-L/include/linux/
vhost.h 61 struct vhost_memory_region regions[0]; member in struct:vhost_memory
  /external/chromium_org/third_party/WebKit/Source/web/
WebDocument.cpp 318 const Vector<AnnotatedRegionValue>& regions = document->annotatedRegions(); local
319 draggableRegions = WebVector<WebDraggableRegion>(regions.size());
320 for (size_t i = 0; i < regions.size(); i++) {
321 const AnnotatedRegionValue& value = regions[i];
  /external/kernel-headers/original/uapi/linux/
vhost.h 63 struct vhost_memory_region regions[0]; member in struct:vhost_memory
  /external/libunwind/src/mi/
Gdyn-remote.c 132 if (di->u.pi.regions)
134 free_regions (di->u.pi.regions);
135 di->u.pi.regions = NULL;
170 || (ret = intern_regions (as, a, &first_region, &di->u.pi.regions,

Completed in 733 milliseconds

1 2 3 4