Searched refs:region (Results 151 - 175 of 793) sorted by relevance

1234567891011>>

/external/chromium_org/remoting/host/chromeos/
H A Daura_desktop_capturer.h32 virtual void Capture(const webrtc::DesktopRegion& region) OVERRIDE;
/external/chromium_org/remoting/host/
H A Dipc_video_frame_capturer.cc31 void IpcVideoFrameCapturer::Capture(const webrtc::DesktopRegion& region) { argument
H A Dipc_video_frame_capturer.h27 virtual void Capture(const webrtc::DesktopRegion& region) OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DMouseEventHitRegion.h17 static String region(MouseEvent& event) function in class:blink::MouseEventHitRegion
/external/chromium_org/third_party/icu/android/
H A Dpatch_locale.sh17 # Excludes region data. On Android Java API is used to get the data.
18 echo Overwriting region/reslocal.mk...
19 cat >region/reslocal.mk <<END
/external/chromium_org/third_party/libaddressinput/chromium/
H A Dinput_suggester.cc42 // A region and its metadata useful for constructing a suggestion.
58 // The region that should be suggested. For example, if the region is ("CA",
67 // True if the key of the region matches user input (the name may or may not
68 // match). "CA" should be suggested for a ("CA", "California") region.
70 // False if only the name of the region matches user input (the key does not
71 // match). "California" should be suggested for a ("CA", "California") region.
185 // Swaps the suggestions for the smallest sub-region into |suggestions|.
260 // All sub-regions of a COUNTRY level region, organized into tries for lookup by
261 // region nam
375 const RegionData* region = *it; local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_blorp.cpp128 struct intel_region *region = mt->region; local
131 intel_region_get_tile_masks(region, &mask_x, &mask_y,
137 return intel_region_get_aligned_offset(region, x_offset & ~mask_x,
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
H A Dintel_regions.h62 GLuint refcount; /**< Reference count for region */
67 GLubyte *map; /**< only non-NULL when region is actually mapped */
70 uint32_t tiling; /**< Which tiling mode the region is in */
77 /* Allocate a refcounted region. Pointers to regions should only be
93 intel_region_flink(struct intel_region *region, uint32_t *name);
137 intel_region_get_tile_masks(struct intel_region *region,
142 intel_region_get_aligned_offset(struct intel_region *region, uint32_t x,
163 struct intel_region *region; member in struct:__DRIimageRec
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Ddesktop_capturer.h50 // Captures next frame. |region| specifies region of the capture target that
52 // data for areas outside |region|. In that case capturer will include these
53 // areas in updated_region() of the frame. |region| is specified relative to
56 virtual void Capture(const DesktopRegion& region) = 0;
H A Dscreen_capturer_helper.h22 // ScreenCapturer interface. It maintains a thread-safe invalid region, and
30 // Clear out the invalid region.
33 // Invalidate the specified region.
39 // Copies current invalid region to |invalid_region| clears invalid region
53 // produce an invalid region expanded so that its vertices lie on a grid of
54 // size 2 ^ |log_grid_size|. The expanded region is then clipped to the size
57 // If |log_grid_size| is <= 0, then the invalid region is not expanded.
60 // Expands a region so that its vertices all lie on a grid.
62 static void ExpandToGrid(const DesktopRegion& region,
[all...]
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/prefixmapper/
H A DPrefixFileReader.java66 int prefixMapKey, String language, String script, String region) {
67 String fileName = mappingFileProvider.getFileName(prefixMapKey, language, script, region);
110 * @param region two-letter uppercase ISO country codes as defined by ISO 3166-1
115 PhoneNumber number, String lang, String script, String region) {
122 getPhonePrefixDescriptions(phonePrefix, lang, script, region);
65 getPhonePrefixDescriptions( int prefixMapKey, String language, String script, String region) argument
114 getDescriptionForNumber( PhoneNumber number, String lang, String script, String region) argument
/external/llvm/lib/Target/X86/Disassembler/
H A DX86Disassembler.h104 const MemoryObject &region, uint64_t address,
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_blorp.cpp128 struct intel_region *region = mt->region; local
131 intel_region_get_tile_masks(region, &mask_x, &mask_y,
137 return intel_region_get_aligned_offset(region, x_offset & ~mask_x,
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_regions.h62 GLuint refcount; /**< Reference count for region */
67 GLubyte *map; /**< only non-NULL when region is actually mapped */
70 uint32_t tiling; /**< Which tiling mode the region is in */
77 /* Allocate a refcounted region. Pointers to regions should only be
93 intel_region_flink(struct intel_region *region, uint32_t *name);
137 intel_region_get_tile_masks(struct intel_region *region,
142 intel_region_get_aligned_offset(struct intel_region *region, uint32_t x,
163 struct intel_region *region; member in struct:__DRIimageRec
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DRegion.cpp31 // A region class based on the paper "Scanline Coherent Shape Algebra"
68 bool Region::contains(const Region& region) const
70 if (!m_bounds.contains(region.m_bounds))
73 return Shape::compareShapes<Shape::CompareContainsOperation>(m_shape, region.m_shape);
104 bool Region::intersects(const Region& region) const
106 if (!m_bounds.intersects(region.m_bounds))
109 return Shape::compareShapes<Shape::CompareIntersectsOperation>(m_shape, region.m_shape);
573 void Region::intersect(const Region& region)
577 if (!m_bounds.intersects(region.m_bounds)) {
583 Shape intersectedShape = Shape::intersectShapes(m_shape, region
[all...]
/external/pixman/pixman/
H A Dpixman.h431 void pixman_region_init (pixman_region16_t *region);
432 void pixman_region_init_rect (pixman_region16_t *region,
437 pixman_bool_t pixman_region_init_rects (pixman_region16_t *region,
440 void pixman_region_init_with_extents (pixman_region16_t *region,
442 void pixman_region_init_from_image (pixman_region16_t *region,
444 void pixman_region_fini (pixman_region16_t *region);
448 void pixman_region_translate (pixman_region16_t *region,
477 pixman_bool_t pixman_region_contains_point (pixman_region16_t *region,
481 pixman_region_overlap_t pixman_region_contains_rectangle (pixman_region16_t *region,
483 pixman_bool_t pixman_region_not_empty (pixman_region16_t *region);
[all...]
/external/chromium_org/tools/deep_memory_profiler/lib/
H A Dsorter.py55 """Represents a Unit for a memory region on virtual memory."""
56 def __init__(self, unit_id, committed, reserved, mmap, region,
61 self._region = region
78 def region(self): member in class:VMUnit
91 """Represents a Unit for a mmap'ed region."""
92 def __init__(self, unit_id, committed, reserved, region, bucket_set,
95 region, pageframe, group_pfn_counts)
99 return str(self.region)
107 """Represents a Unit for a non-mmap'ed memory region on virtual memory."""
108 def __init__(self, unit_id, committed, reserved, region,
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DBlankDebugEventListener.cs100 #region Tree parsing stuff
110 #region AST Stuff
H A DIDebugEventListener.cs270 #region Tree Parsing
297 #region AST Events
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Debug/
H A DIDebugEventListener.cs272 #region Tree Parsing
299 #region AST Events
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DBlankDebugEventListener.cs126 #region Tree parsing stuff
138 #region AST Stuff
/external/chromium_org/base/files/
H A Dmemory_mapped_file.cc57 bool MemoryMappedFile::Initialize(File file, const Region& region) { argument
63 if (!MapFileRegionToMemory(region)) {
H A Dmemory_mapped_file.h27 // Used to hold information about a region [offset + size] of a file.
35 // Start of the region (measured in bytes from the beginning of the file).
38 // Length of the region in bytes.
58 // As above, but works with a region of an already-opened file.
59 bool Initialize(File file, const Region& region);
74 // Given the arbitrarily aligned memory region [start, size], returns the
75 // boundaries of the region aligned to the granularity specified by the OS,
88 bool MapFileRegionToMemory(const Region& region);
/external/chromium_org/chrome/browser/ui/views/apps/
H A Dshaped_app_window_targeter_unittest.cc74 scoped_ptr<SkRegion> region(new SkRegion);
75 region->op(SkIRect::MakeXYWH(40, 0, 20, 100), SkRegion::kUnion_Op);
76 region->op(SkIRect::MakeXYWH(0, 40, 100, 20), SkRegion::kUnion_Op);
77 app_window()->UpdateShape(region.Pass());
132 scoped_ptr<SkRegion> region(new SkRegion);
133 region->op(SkIRect::MakeXYWH(40, 0, 20, 100), SkRegion::kUnion_Op);
134 region->op(SkIRect::MakeXYWH(0, 40, 100, 20), SkRegion::kUnion_Op);
135 app_window()->UpdateShape(region.Pass());
/external/chromium_org/skia/ext/
H A Dbitmap_platform_device_cairo.h57 // case we'll probably create the buffer from a precreated region of memory.
87 virtual void setMatrixClip(const SkMatrix& transform, const SkRegion& region,
106 void SetMatrixClip(const SkMatrix& transform, const SkRegion& region);

Completed in 882 milliseconds

1234567891011>>