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

1 2 3 4 5

  /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...]
  /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/remoting/ios/bridge/
client_proxy_delegate.h 35 regions:(const std::vector<webrtc::DesktopRect>&)regions;
  /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];
  /frameworks/base/libs/hwui/
DisplayList.cpp 74 for (size_t i = 0; i < regions.size(); i++) {
75 delete regions.itemAt(i);
87 regions.clear();
  /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
  /packages/apps/Settings/src/com/android/settings/applications/
LinearColorPreference.java 58 public void setColoredRegions(int regions) {
59 mColoredRegions = regions;
  /pdk/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/apps/ui/
native_app_window.h 41 // Called when the draggable regions are changed.
43 const std::vector<extensions::DraggableRegion>& regions) = 0;
  /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;
  /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;
AndroidXmlAutoEditStrategy.java 18 import static org.eclipse.wst.xml.core.internal.regions.DOMRegionContext.XML_CONTENT;
19 import static org.eclipse.wst.xml.core.internal.regions.DOMRegionContext.XML_EMPTY_TAG_CLOSE;
20 import static org.eclipse.wst.xml.core.internal.regions.DOMRegionContext.XML_END_TAG_OPEN;
21 import static org.eclipse.wst.xml.core.internal.regions.DOMRegionContext.XML_TAG_CLOSE;
22 import static org.eclipse.wst.xml.core.internal.regions.DOMRegionContext.XML_TAG_NAME;
23 import static org.eclipse.wst.xml.core.internal.regions.DOMRegionContext.XML_TAG_OPEN;
  /external/sonivox/arm-fm-22k/lib_src/
eas_fmsndlib.c 27 const S_FM_REGION regions[] = variable
    [all...]
  /external/chromium_org/apps/
app_window_contents.h 66 const std::vector<extensions::DraggableRegion>& regions);
  /external/chromium_org/third_party/WebKit/Source/web/
WebDocument.cpp 285 const Vector<AnnotatedRegionValue>& regions = document->annotatedRegions(); local
286 draggableRegions = WebVector<WebDraggableRegion>(regions.size());
287 for (size_t i = 0; i < regions.size(); i++) {
288 const AnnotatedRegionValue& value = regions[i];
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringRefactoring.java 87 import org.eclipse.wst.xml.core.internal.regions.DOMRegionContext;
639 * where the selection starts, split using sub-regions. We now just
640 * need to iterate through the sub-regions to find which one
    [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...]

Completed in 745 milliseconds

1 2 3 4 5