HomeSort by relevance Sort by last modified time
    Searched refs:Region (Results 51 - 75 of 173) sorted by null

1 23 4 5 6 7

  /frameworks/base/services/surfaceflinger/DisplayHardware/
DisplayHardware.h 23 #include <ui/Region.h>
63 void flip(const Region& dirty) const;
  /frameworks/base/core/java/android/view/
IWindowSession.aidl 23 import android.graphics.Region;
97 void setTransparentRegion(IWindow window, in Region region);
110 in Rect visibleInsets, in Region touchableRegion);
  /external/llvm/include/llvm/Analysis/
RegionIterator.h 9 // This file defines the iterators to iterate over the elements of a Region.
28 /// the parent Region. Furthermore for BasicBlocks that start a subregion, a
38 // The iterator works in two modes, bb mode or region mode.
43 // In region mode there is only one successor, thats the regionnode mapping
55 // advanceRegionSucc - A region node has only one successor. It reaches end
58 assert(Node.getInt() == ItRgBegin && "Cannot advance region successor!");
64 // isRegionMode - Is the current iterator in region mode?
72 assert(succ && "BB not in Region or entered subregion!");
78 assert(Node.getInt() == ItRgBegin && "Cannot get the region successor!");
79 return getNode()->template getNodeAs<Region>()->getExit()
    [all...]
  /frameworks/base/include/surfaceflinger/
Surface.h 28 #include <ui/Region.h>
73 status_t setTransparentRegionHint(const Region& transparent);
139 status_t lock(SurfaceInfo* info, Region* dirty = NULL);
SurfaceComposerClient.h 31 #include <ui/Region.h>
43 class Region;
143 status_t setTransparentRegionHint(SurfaceID id, const Region& transparent);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeWindowSession.java 22 import android.graphics.Region;
104 public void setTransparentRegion(IWindow arg0, Region arg1) throws RemoteException {
109 Rect visibleInsets, Region touchableRegion) {
  /external/qemu/android/skin/
region.c 12 #include "android/skin/region.h"
53 /* this implementation of regions encodes the the region's spans with the
56 region ::= yband+ YSENTINEL
73 typedef SkinRegion Region;
84 region_isEmpty( Region* r )
90 region_isRect( Region* r )
96 region_isComplex( Region* r )
176 region_edit( Region* r )
369 /* empty region */
765 Region result[1]
    [all...]
  /frameworks/base/services/surfaceflinger/
Transform.cpp 21 #include <ui/Region.h>
228 Region Transform::transform(const Region& reg) const
230 Region out;
233 Region::const_iterator it = reg.begin();
234 Region::const_iterator const end = reg.end();
SurfaceFlinger.cpp 630 const LayerVector& currentLayers, Region& dirtyRegion, Region& opaqueRegion)
635 const Region screenRegion(hw.bounds());
637 Region aboveOpaqueLayers;
638 Region aboveCoveredLayers;
639 Region dirty;
654 Region opaqueRegion;
662 Region visibleRegion;
668 Region coveredRegion;
671 // handle hidden surfaces by setting the visible region to empt
    [all...]
  /frameworks/base/graphics/java/android/graphics/
NinePatch.java 149 public final Region getTransparentRegion(Rect location) {
151 return r != 0 ? new Region(r) : null;
  /frameworks/base/include/gui/
SurfaceTextureClient.h 24 #include <ui/Region.h>
158 mutable Region mOldDirtyRegion;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
EventHole.java 21 import android.graphics.Region;
92 info.touchableRegion.op(l, t, r, b, Region.Op.DIFFERENCE);
  /packages/apps/Settings/src/com/android/settings/drawable/
DrawableWrapper.java 22 import android.graphics.Region;
119 public Region getTransparentRegion() {
  /frameworks/base/media/libeffects/lvm/wrapper/Reverb/
EffectReverb.cpp 593 if (MemTab.Region[i].Size != 0){
594 if (MemTab.Region[i].pBaseAddress != NULL){
595 LOGV("\tfree() - START freeing %ld bytes for region %u at %p\n",
596 MemTab.Region[i].Size, i, MemTab.Region[i].pBaseAddress);
598 free(MemTab.Region[i].pBaseAddress);
600 LOGV("\tfree() - END freeing %ld bytes for region %u at %p\n",
601 MemTab.Region[i].Size, i, MemTab.Region[i].pBaseAddress);
604 "for region %u at %p ERROR\n"
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
SurfaceViewTest.java 23 import android.graphics.Region;
99 args = {Region.class}
151 Region region = new Region(); local
152 region.set(left, top, right, bottom);
153 assertTrue(mMockSurfaceView.gatherTransparentRegion(region));
156 assertFalse(mMockSurfaceView.gatherTransparentRegion(region));
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
DrawingAreaImpl.h 31 #include "Region.h"
82 Region m_dirtyRegion;
97 // Whether painting is suspended. We'll still keep track of the dirty region but we
DrawingAreaImpl.cpp 132 // Get the part of the dirty region that is in the scroll rect.
133 Region dirtyRegionInScrollRect = intersect(scrollRect, m_dirtyRegion);
135 // There are parts of the dirty region that are inside the scroll rect.
136 // We need to subtract them from the region, move them and re-add them.
140 Region movedDirtyRegionInScrollRect = intersect(translate(dirtyRegionInScrollRect, scrollOffset), scrollRect);
146 // Compute the scroll repaint region.
147 Region scrollRepaintRegion = subtract(scrollRect, translate(scrollRect, scrollOffset));
396 m_dirtyRegion = Region();
536 // Attempt to guess whether or not we should use the region bounds rect or the individual rects.
557 // ASSUMPTION: the custom representation will be painting the dirty region for us
    [all...]
  /frameworks/base/media/libeffects/lvm/lib/Common/lib/
LVM_Types.h 53 #define LVM_MEMREGION_PERSISTENT_SLOW_DATA 0 /* Offset to the instance memory region */
54 #define LVM_MEMREGION_PERSISTENT_FAST_DATA 1 /* Offset to the persistent data memory region */
55 #define LVM_MEMREGION_PERSISTENT_FAST_COEF 2 /* Offset to the persistent coefficient memory region */
56 #define LVM_MEMREGION_TEMPORARY_FAST 3 /* Offset to temporary memory region */
151 /* Memory region definition */
154 LVM_UINT32 Size; /* Region size in bytes */
155 LVM_MemoryTypes_en Type; /* Region type */
156 void *pBaseAddress; /* Pointer to the region base address */
160 /* Memory table containing the region definitions */
163 LVM_MemoryRegion_st Region[LVM_NR_MEMORY_REGIONS]; /* One definition for each region *
    [all...]
  /frameworks/base/media/libeffects/lvm/lib/Reverb/lib/
LVREV.h 93 /* Memory table containing the region definitions */
96 LVM_MemoryRegion_st Region[LVREV_NR_MEMORY_REGIONS]; /* One definition for each region */
191 /* region base addresses in the memory table before calling this function. */
  /frameworks/base/media/libeffects/lvm/lib/SpectrumAnalyzer/lib/
LVPSA.h 89 /* Memory region definition */
92 LVM_UINT32 Size; /* Region size in bytes */
93 LVPSA_MemoryTypes_en Type; /* Region type */
94 void *pBaseAddress; /* Pointer to the region base address */
97 /* Memory table containing the region definitions */
100 LVPSA_MemoryRegion_t Region[LVPSA_NR_MEMORY_REGIONS];/* One definition for each region */
  /frameworks/base/media/libeffects/lvm/lib/StereoWidening/lib/
LVCS.h 81 #define LVCS_MEMREGION_PERSISTENT_SLOW_DATA 0 /* Offset to the instance memory region */
82 #define LVCS_MEMREGION_PERSISTENT_FAST_DATA 1 /* Offset to the persistent data memory region */
83 #define LVCS_MEMREGION_PERSISTENT_FAST_COEF 2 /* Offset to the persistent coefficient memory region */
84 #define LVCS_MEMREGION_TEMPORARY_FAST 3 /* Offset to temporary memory region */
182 /* Memory region definition */
185 LVM_UINT32 Size; /* Region size in bytes */
186 LVCS_MemoryTypes_en Type; /* Region type */
187 void *pBaseAddress; /* Pointer to the region base address */
191 /* Memory table containing the region definitions */
194 LVCS_MemoryRegion_t Region[LVCS_NR_MEMORY_REGIONS]; /* One definition for each region *
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
shape.h 71 int x, y; /* extents of new region */
73 Time time; /* server timestamp when region changed */
74 Bool shaped; /* true if the region exists */
97 Region /* region */,
  /external/llvm/lib/Target/ARM/Disassembler/
ARMDisassembler.cpp 393 const MemoryObject &Region,
401 if (Region.readBytes(Address, 4, (uint8_t*)bytes, NULL) == -1)
437 const MemoryObject &Region,
462 if (Region.readBytes(Address, 2, (uint8_t*)bytes, NULL) == -1)
474 if (Region.readBytes(Address + 2, 2, (uint8_t*)bytes, NULL) == -1)
  /frameworks/base/core/java/android/content/res/
CompatibilityInfo.java 23 import android.graphics.Region;
295 private Region mTouchableAreaBuffer = null;
315 * Translate the region in window to screen.
317 public void translateRegionInWindowToScreen(Region transparentRegion) {
421 public Region getTranslatedTouchableArea(Region touchableArea) {
422 if (mTouchableAreaBuffer == null) mTouchableAreaBuffer = new Region();
  /external/webkit/Source/WebKit/android/plugins/
ANPSurfaceInterface.cpp 37 #include <ui/Region.h>
105 Region dirtyRegion;
121 // the surface may have expanded the dirty region so we must to pass that

Completed in 437 milliseconds

1 23 4 5 6 7