HomeSort by relevance Sort by last modified time
    Searched refs:regions (Results 1 - 25 of 97) 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
194 std::vector<MappedMemoryRegion> regions; local
258 std::vector<MappedMemoryRegion> regions; local
275 std::vector<MappedMemoryRegion> regions; local
    [all...]
proc_maps_linux.cc 32 std::vector<MappedMemoryRegion> regions; local
92 regions.push_back(region);
93 regions.back().path.assign(line + path_index);
96 regions_out->swap(regions);
proc_maps_linux.h 48 // Parses /proc/<pid>/maps input data and stores in |regions|. Returns true
49 // and updates |regions| if and only if all of |input| was successfully parsed.
51 std::vector<MappedMemoryRegion>* regions);
stack_trace_android.cc 88 std::vector<MappedMemoryRegion> regions; local
98 } else if (!ParseProcMaps(proc_maps, &regions)) {
108 std::vector<MappedMemoryRegion>::iterator iter = regions.begin();
109 while (iter != regions.end()) {
119 if (iter != regions.end()) {
  /art/compiler/sea_ir/ir/
regions_test.cc 32 std::vector<sea_ir::Region*>* regions = sg.GetRegions(); local
33 // Test that regions have been registered correctly as children of the graph.
34 EXPECT_TRUE(std::find(regions->begin(), regions->end(), root) != regions->end());
35 EXPECT_TRUE(std::find(regions->begin(), regions->end(), then_region) != regions->end());
36 EXPECT_TRUE(std::find(regions->begin(), regions->end(), else_region) != regions->end())
    [all...]
  /packages/apps/Mms/src/com/android/mms/dom/smil/
SmilRegionMediaElementImpl.java 36 NodeList regions = doc.getLayout().getElementsByTagName("region"); local
38 for (int i = 0; i < regions.getLength(); i++) {
39 region = (SMILRegionElement)regions.item(i);
  /external/chromium_org/apps/
native_app_window.h 21 // Called when the draggable regions are changed.
23 const std::vector<extensions::DraggableRegion>& regions) = 0;
app_window_contents.h 63 const std::vector<extensions::DraggableRegion>& regions);
  /sdk/emulator/qtools/
read_trace.cpp 91 manager->regions[ii]->vstart,
92 manager->regions[ii]->vend,
93 manager->regions[ii]->base_addr,
94 manager->regions[ii]->file_offset,
95 manager->regions[ii]->nsymbols,
96 manager->regions[ii]->flags,
97 manager->regions[ii]->path);
98 int nsymbols = manager->regions[ii]->nsymbols;
101 manager->regions[ii]->symbols[jj].addr,
102 manager->regions[ii]->symbols[jj].name)
    [all...]
trace_reader.h 94 // The "regions" array below is a pointer to array of pointers to
95 // regions. The size of the pointer array is kInitialNumRegions,
99 // for this process, as well as a few regions for the kernel.
102 // regions array is unused. Instead, the "addr_manager" pointer is
134 regions = NULL;
148 // Free the regions. We must be careful not to free the symbols
150 // between multiple regions. The TraceReader class has a hash
151 // table containing all the unique regions and it will free the
153 // regions and the array of region pointers.
158 if (regions[ii]->refs > 0)
189 region_type **regions; member in class:TraceReader::ProcessState
882 region_type **regions = processes_[0]->regions; local
897 region_type **regions = pstate->regions; local
934 region_type **regions = new region_type*[max_regions]; local
1016 region_type **regions = new region_type*[manager->max_regions]; local
    [all...]
  /external/clang/tools/clang-format/
clang-format-sublime.py 10 # or regions are extended to the next bigger syntactic entities.
31 regions = []
34 regions.append(region)
49 for region in regions:
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
TextTrack.idl 42 [Conditional=WEBVTT_REGIONS] readonly attribute TextTrackRegionList 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/icu4c/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
  /packages/apps/Settings/src/com/android/settings/applications/
LinearColorPreference.java 48 public void setColoredRegions(int regions) {
49 mColoredRegions = regions;
  /external/chromium_org/chrome/browser/ui/ash/
window_positioner.cc 105 std::vector<const gfx::Rect*> regions; local
117 regions.push_back(&windows[i]->bounds());
121 if (regions.empty())
151 for (i = 0; i < regions.size(); i++) {
152 if (regions[i]->Intersects(gfx::Rect(x + work_area.x(),
154 y = regions[i]->bottom() - work_area.y();
158 if (i >= regions.size())
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
CSSNamedFlowView.js 56 var regions = flow.regions;
57 for (var i = 0; i < regions.length; ++i)
58 this._insertRegion(regions[i]);
250 this._mergeRegions(this._flow.regions, newFlow.regions);
CSSNamedFlowCollectionsView.js 128 for (var i = 0; i < flow.regions.length; ++i)
129 this._regionNodes[flow.regions[i].nodeId] = flowHash;
156 for (var i = 0; i < flow.regions.length; ++i)
157 delete this._regionNodes[flow.regions[i].nodeId];
181 for (var i = 0; i < oldFlow.regions.length; ++i)
182 delete this._regionNodes[oldFlow.regions[i].nodeId];
186 for (var i = 0; i < flow.regions.length; ++i)
187 this._regionNodes[flow.regions[i].nodeId] = flowHash;
  /packages/apps/Mms/src/com/android/mms/model/
LayoutModel.java 49 // Create default root-layout and regions.
55 public LayoutModel(RegionModel rootLayout, ArrayList<RegionModel> regions) {
60 for (RegionModel r : regions) {
145 * Get all regions except root-layout. The result is READ-ONLY.
148 ArrayList<RegionModel> regions = new ArrayList<RegionModel>(); local
150 regions.add(mImageRegion);
153 regions.add(mTextRegion);
155 return regions;
  /external/chromium_org/third_party/WebKit/PerformanceTests/Layout/resources/
regions.js 67 var regions = createRegions(regionWidth, regionHeight, regionCount, regionMaxHeight);
69 document.body.appendChild(regions);
71 description: "Testing regions with " + regionCount + " regions @{width: " + regionWidth + ", height: " + regionHeight +
84 document.body.removeChild(regions);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidXmlCharacterMatcher.java 18 import static org.eclipse.wst.xml.core.internal.regions.DOMRegionContext.XML_EMPTY_TAG_CLOSE;
19 import static org.eclipse.wst.xml.core.internal.regions.DOMRegionContext.XML_END_TAG_OPEN;
20 import static org.eclipse.wst.xml.core.internal.regions.DOMRegionContext.XML_TAG_CLOSE;
21 import static org.eclipse.wst.xml.core.internal.regions.DOMRegionContext.XML_TAG_NAME;
22 import static org.eclipse.wst.xml.core.internal.regions.DOMRegionContext.XML_TAG_OPEN;
  /bionic/libc/tools/zoneinfo/
update-tzdata.py 31 regions = ['africa', 'antarctica', 'asia', 'australasia', 'backward', variable
43 for region in regions:
126 for region in regions:
  /external/chromium_org/chrome/browser/ui/cocoa/apps/
native_app_window_cocoa.h 115 const std::vector<extensions::DraggableRegion>& regions) OVERRIDE;
151 const std::vector<extensions::DraggableRegion>& regions,
154 const std::vector<extensions::DraggableRegion>& regions);
172 // the complexity of draggable regions.
  /external/sonivox/arm-fm-22k/lib_src/
eas_fmsndlib.c 27 const S_FM_REGION regions[] = variable
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebDocument.cpp 272 const Vector<AnnotatedRegionValue>& regions = document->annotatedRegions(); local
273 draggableRegions = WebVector<WebDraggableRegion>(regions.size());
274 for (size_t i = 0; i < regions.size(); i++) {
275 const AnnotatedRegionValue& value = regions[i];

Completed in 5351 milliseconds

1 2 3 4