Searched defs:region (Results 26 - 50 of 62) sorted by relevance

123

/frameworks/compile/mclinker/include/mcld/Script/
H A DOutputSectDesc.h109 const std::string& region() const { function in struct:mcld::OutputSectDesc::Epilog
/frameworks/base/core/java/android/view/
H A DDisplayListCanvas.java325 private static native void nDrawRects(long renderer, long region, long paint); argument
H A DSurfaceControl.java54 private static native void nativeSetTransparentRegionHint(long nativeObject, Region region); argument
391 public void setTransparentRegionHint(Region region) { argument
393 nativeSetTransparentRegionHint(mNativeObject, region);
H A DSurfaceView.java56 * <p> The transparent region that makes the surface visible is based on the
251 // This is needed because the transparent region is computed
306 public boolean gatherTransparentRegion(Region region) { argument
308 return super.gatherTransparentRegion(region);
313 // this view draws, remove it from the transparent region
314 opaque = super.gatherTransparentRegion(region);
315 } else if (region != null) {
323 region.op(l, t, l+w, t+h, Region.Op.UNION);
802 * @param inOutDirty A rectangle that represents the dirty region that the caller wants
805 * not available. The caller must redraw the entire dirty region a
[all...]
/frameworks/base/core/jni/android/graphics/
H A DRegion.cpp38 SkRegion* region = reinterpret_cast<SkRegion*>(regionHandle); local
39 SkASSERT(region != NULL);
40 return region;
48 SkRegion* region = reinterpret_cast<SkRegion*>(regionHandle); local
49 SkASSERT(region);
50 delete region;
78 SkRegion* region = reinterpret_cast<SkRegion*>(regionHandle); local
79 GraphicsJNI::irect_to_jrect(region->getBounds(), env, rectBounds);
80 bool result = !region->isEmpty();
85 const SkRegion* region local
102 const SkRegion* region = reinterpret_cast<SkRegion*>(regionHandle); local
119 Region_isEmpty(JNIEnv* env, jobject region) argument
124 Region_isRect(JNIEnv* env, jobject region) argument
129 Region_isComplex(JNIEnv* env, jobject region) argument
134 Region_contains(JNIEnv* env, jobject region, jint x, jint y) argument
139 Region_quickContains(JNIEnv* env, jobject region, jint left, jint top, jint right, jint bottom) argument
144 Region_quickRejectIIII(JNIEnv* env, jobject region, jint left, jint top, jint right, jint bottom) argument
151 Region_quickRejectRgn(JNIEnv* env, jobject region, jobject other) argument
156 Region_translate(JNIEnv* env, jobject region, jint x, jint y, jobject dst) argument
186 Region_scale(JNIEnv* env, jobject region, jfloat scale, jobject dst) argument
195 SkRegion* region = reinterpret_cast<SkRegion*>(regionHandle); local
221 SkRegion* region = new SkRegion; local
233 const SkRegion* region = reinterpret_cast<SkRegion*>(regionHandle); local
280 const SkRegion* region = reinterpret_cast<SkRegion*>(regionHandle); local
[all...]
H A DGraphics.cpp384 SkRegion* GraphicsJNI::getNativeRegion(JNIEnv* env, jobject region) argument
387 SkASSERT(region);
388 SkASSERT(env->IsInstanceOf(region, gRegion_class));
389 jlong regionHandle = env->GetLongField(region, gRegion_nativeInstanceID);
453 jobject GraphicsJNI::createRegion(JNIEnv* env, SkRegion* region) argument
455 SkASSERT(region != NULL);
457 reinterpret_cast<jlong>(region), 0);
598 // Create new ashmem region with read/write priv
634 // Map existing ashmem region if not already mapped.
/frameworks/base/libs/hwui/
H A DLayer.h89 * Sets this layer's region to a rectangle. Computes the appropriate
93 const android::Rect& bounds = region.getBounds();
314 * Dirty region indicating what parts of the layer
317 Region region; member in class:android::uirenderer::Layer
319 * If the region is a rectangle, coordinates of the
320 * region are stored here.
H A DSkiaCanvasProxy.cpp358 void SkiaCanvasProxy::onClipRegion(const SkRegion& region, SkRegion::Op op) { argument
359 mCanvas->clipRegion(&region, op);
H A DDisplayListCanvas.cpp217 bool DisplayListCanvas::clipRegion(const SkRegion* region, SkRegion::Op op) { argument
218 region = refRegion(region);
219 addStateOp(new (alloc()) ClipRegionOp(region, op));
220 return mState.clipRegion(region, op);
H A DSkiaCanvas.cpp83 virtual bool clipRegion(const SkRegion* region, SkRegion::Op op) override;
431 bool SkiaCanvas::clipRegion(const SkRegion* region, SkRegion::Op op) { argument
433 if (region->getBoundaryPath(&rgnPath)) {
434 // The region is specified in device space.
H A DDisplayListOp.h598 ClipRegionOp(const SkRegion* region, SkRegion::Op op) argument
599 : ClipOp(op), mRegion(region) {}
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DShaderProgram.java170 public void setSourceRegion(Quad region) { argument
171 setSourceRegion(region.p0.x, region.p0.y,
172 region.p1.x, region.p1.y,
173 region.p2.x, region.p2.y,
174 region.p3.x, region.p3.y);
177 public void setTargetRegion(Quad region) { argument
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DSession.java215 public void setTransparentRegion(IWindow window, Region region) { argument
216 mService.setTransparentRegionWindow(this, window, region);
/frameworks/compile/mclinker/lib/LD/
H A DELFObjectWriter.cpp54 MemoryRegion region; local
55 // Request output region
69 region = pOutput.request(section->offset(), section->size());
70 if (region.size() == 0) {
97 emitSectionData(*section, region);
100 emitEhFrame(pModule, *section->getEhFrame(), region);
106 emitRelocation(m_Config, *section, region);
109 target().emitSectionData(*section, region);
112 section->getDebugString()->emit(region);
211 MemoryRegion region local
306 MemoryRegion region = local
342 MemoryRegion region = pOutput.request( local
368 MemoryRegion region = pOutput.request(pShStrTab.offset(), pShStrTab.size()); local
[all...]
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMLDBackend.cpp553 llvm::StringRef region = pInput.memArea()->request(offset, size); local
554 if (region.size() == 0) {
555 // If the input section's size is zero, we got a NULL region.
559 frag = new RegionFragment(region);
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.cpp354 llvm::StringRef region = pInput.memArea()->request(offset, size); local
355 if (region.size() > 0) {
357 reinterpret_cast<const llvm::ELF::Elf_Options*>(region.begin());
359 reinterpret_cast<const llvm::ELF::Elf_Options*>(region.begin() +
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DRenderEngine.cpp198 void RenderEngine::fillRegionWithColor(const Region& region, uint32_t height, argument
201 Rect const* r = region.getArray(&c);
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DParameters.h122 // 3A region types, for use with ANDROID_CONTROL_MAX_REGIONS
127 NUM_REGION // Number of region types
128 } region; member in struct:android::camera2::Parameters
279 // Calculate the crop region rectangle, either tightly about the preview
280 // resolution, or a region just based on the active array; both take
339 // region.
352 // Convert from viewfinder crop-region relative array coordinates
358 // to viewfinder crop-region relative array coordinates
362 // Given a scaler crop region, calculate preview crop region base
[all...]
/frameworks/base/core/java/android/hardware/radio/
H A DRadioManager.java334 BandDescriptor(int region, int type, int lowerLimit, int upperLimit, int spacing) { argument
335 mRegion = region;
343 * @return the region this band is associated to.
461 FmBandDescriptor(int region, int type, int lowerLimit, int upperLimit, int spacing, argument
463 super(region, type, lowerLimit, upperLimit, spacing);
476 /** RDS or RBDS(if region is ITU2) is supported
573 AmBandDescriptor(int region, int type, int lowerLimit, int upperLimit, int spacing, argument
575 super(region, type, lowerLimit, upperLimit, spacing);
651 BandConfig(int region, int type, int lowerLimit, int upperLimit, int spacing) { argument
652 mDescriptor = new BandDescriptor(region, typ
766 FmBandConfig(int region, int type, int lowerLimit, int upperLimit, int spacing, boolean stereo, boolean rds, boolean ta, boolean af) argument
972 AmBandConfig(int region, int type, int lowerLimit, int upperLimit, int spacing, boolean stereo) argument
[all...]
/frameworks/base/core/java/android/text/
H A DSpannableStringBuilder.java1077 private static String region(int start, int end) { method in class:SpannableStringBuilder
1084 region(start, end) + " has end before start");
1091 region(start, end) + " ends beyond length " + len);
1096 region(start, end) + " starts before 0");
/frameworks/base/core/jni/
H A Dandroid_view_SurfaceControl.cpp260 SkRegion* region = android_graphics_Region_getSkRegion(env, regionObj); local
261 if (!region) {
266 const SkIRect& b(region->getBounds());
268 if (region->isComplex()) {
269 SkRegion::Iterator it(*region);
/frameworks/base/media/java/android/media/tv/
H A DTvView.java684 public boolean gatherTransparentRegion(Region region) { argument
686 if (region != null) {
694 region.op(left, top, left + width, top + height, Region.Op.UNION);
698 return super.gatherTransparentRegion(region);
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonLDBackend.cpp923 llvm::StringRef region = pInput.memArea()->request(offset, size); local
924 if (region.size() == 0) {
925 // If the input section's size is zero, we got a NULL region.
929 frag = new RegionFragment(region);
/frameworks/av/include/media/
H A DToneGenerator.h180 // These supervisory tones are different depending on the region (USA/CANADA, JAPAN, rest of the world).
181 // When a tone in the range [FIRST_SUP_TONE, LAST_SUP_TONE] is requested, the region is determined
199 enum region { enum in class:android::ToneGenerator
/frameworks/base/graphics/java/android/graphics/
H A DCanvas.java811 * Modify the current clip with the specified region. Note that unlike
817 * @param region The region to operate on the current clip, based on op
824 public boolean clipRegion(@NonNull Region region, @NonNull Region.Op op) { argument
825 return native_clipRegion(mNativeCanvasWrapper, region.ni(), op.nativeInt);
829 * Intersect the current clip with the specified region. Note that unlike
835 * @param region The region to operate on the current clip, based on op
841 public boolean clipRegion(@NonNull Region region) { argument
842 return clipRegion(region, Regio
[all...]

Completed in 596 milliseconds

123