Searched refs:Op (Results 1 - 25 of 44) sorted by relevance

12

/frameworks/base/libs/hwui/
H A DSnapshot.h87 SkRegion::Op op = SkRegion::kIntersect_Op);
94 bool clipTransformed(const Rect& r, SkRegion::Op op = SkRegion::kIntersect_Op);
100 bool clipRegionTransformed(const SkRegion& region, SkRegion::Op op);
237 bool clipRegionOp(float left, float top, float right, float bottom, SkRegion::Op op);
H A DSnapshot.cpp98 bool Snapshot::clipRegionOp(float left, float top, float right, float bottom, SkRegion::Op op) {
106 bool Snapshot::clipRegionTransformed(const SkRegion& region, SkRegion::Op op) {
114 bool Snapshot::clip(float left, float top, float right, float bottom, SkRegion::Op op) {
120 bool Snapshot::clipTransformed(const Rect& r, SkRegion::Op op) {
H A DDisplayListRenderer.h92 virtual bool clipRect(float left, float top, float right, float bottom, SkRegion::Op op);
93 virtual bool clipPath(SkPath* path, SkRegion::Op op);
94 virtual bool clipRegion(SkRegion* region, SkRegion::Op op);
H A DDisplayListRenderer.cpp220 SkRegion::Op op) {
225 bool DisplayListRenderer::clipPath(SkPath* path, SkRegion::Op op) {
231 bool DisplayListRenderer::clipRegion(SkRegion* region, SkRegion::Op op) {
H A DOpenGLRenderer.h233 virtual bool clipRect(float left, float top, float right, float bottom, SkRegion::Op op);
234 virtual bool clipPath(SkPath* path, SkRegion::Op op);
235 virtual bool clipRegion(SkRegion* region, SkRegion::Op op);
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
H A DTestService.java56 final static Op[] mOpPairs = new Op[] {
112 final static Op[] mAvailOps = new Op[] {
228 Op mForegroundOp;
229 Op mBackgroundOp;
412 static public abstract class Op { class in class:TestService
416 public Op(String name, String longName) { method in class:TestService.Op
442 static class NoOp extends Op {
456 static class CpuOp extends Op {
[all...]
H A DFrameworkPerfActivity.java72 TestService.Op mFgTest;
73 TestService.Op mBgTest;
142 TestService.Op op = TestService.mAvailOps[i];
211 TestService.Op op = TestService.mAvailOps[position];
/frameworks/base/services/java/com/android/server/wm/
H A DStrictModeFlash.java76 c.clipRect(new Rect(0, 0, dw, mThickness), Region.Op.REPLACE);
79 c.clipRect(new Rect(0, 0, mThickness, dh), Region.Op.REPLACE);
82 c.clipRect(new Rect(dw - mThickness, 0, dw, dh), Region.Op.REPLACE);
85 c.clipRect(new Rect(0, dh - mThickness, dw, dh), Region.Op.REPLACE);
H A DDisplayMagnifier.java330 magnifiedBounds.op(windowBounds, Region.Op.UNION);
331 magnifiedBounds.op(availableBounds, Region.Op.INTERSECT);
339 nonMagnifiedBounds.op(windowBounds, Region.Op.UNION);
340 windowBounds.op(magnifiedBounds, Region.Op.DIFFERENCE);
341 availableBounds.op(windowBounds, Region.Op.DIFFERENCE);
346 accountedBounds.op(nonMagnifiedBounds, Region.Op.UNION);
347 accountedBounds.op(0, 0, screenWidth, screenHeight, Region.Op.INTERSECT);
367 Region.Op.INTERSECT);
385 dirtyRegion.op(mOldMagnifiedBounds, Region.Op.UNION);
386 dirtyRegion.op(nonMagnifiedBounds, Region.Op
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DRegion.java36 public enum Op { enum in class:Region
44 Op(int nativeInt) { method in class:Region.Op
251 return op(r, Op.UNION);
255 * Perform the specified Op on this region and the specified rect. Return
258 public boolean op(Rect r, Op op) {
264 * Perform the specified Op on this region and the specified rect. Return
267 public boolean op(int left, int top, int right, int bottom, Op op) {
273 * Perform the specified Op on this region and the specified region. Return
276 public boolean op(Region region, Op op) {
281 * Set this region to the result of performing the Op o
[all...]
H A DCanvas.java552 public boolean clipRect(RectF rect, Region.Op op) {
565 public boolean clipRect(Rect rect, Region.Op op) {
603 public boolean clipRect(float left, float top, float right, float bottom, Region.Op op) {
644 public boolean clipPath(Path path, Region.Op op) {
655 return clipPath(path, Region.Op.INTERSECT);
669 public boolean clipRegion(Region region, Region.Op op) {
684 return clipRegion(region, Region.Op.INTERSECT);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DClipRegion2Activity.java74 Region.Op.REPLACE);
76 Region.Op.DIFFERENCE);
/frameworks/base/core/java/android/app/
H A DBackStackRecord.java42 BackStackRecord.Op op = bse.mHead;
100 BackStackRecord.Op op = new BackStackRecord.Op();
187 static final class Op { class in class:BackStackRecord
188 Op next;
189 Op prev;
199 Op mHead;
200 Op mTail;
280 Op op = mHead;
295 writer.print(prefix); writer.print(" Op #"); write
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DBackStackRecord.java42 BackStackRecord.Op op = bse.mHead;
100 BackStackRecord.Op op = new BackStackRecord.Op();
187 static final class Op { class in class:BackStackRecord
188 Op next;
189 Op prev;
199 Op mHead;
200 Op mTail;
280 Op op = mHead;
295 writer.print(prefix); writer.print(" Op #"); write
[all...]
/frameworks/base/services/java/com/android/server/
H A DAppOpsService.java89 public final static class Ops extends SparseArray<Op> {
99 public final static class Op { class in class:AppOpsService
107 public Op(int _op) { method in class:AppOpsService.Op
226 Op curOp = pkgOps.valueAt(j);
232 Op curOp = pkgOps.get(ops[j]);
298 Op op = getOpLocked(code, uid, packageName, true);
409 Op op = getOpLocked(AppOpsManager.opToSwitch(code), uid, packageName, false);
428 Op op = getOpLocked(ops, code, true);
435 final Op switchOp = switchCode != code ? getOpLocked(ops, switchCode, true) : op;
461 Op o
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DRegion_Delegate.java70 * to the given {@link Region.Op}.
72 * If the Op is not one that combines two shapes, then this return null
80 if (regionOp == Region.Op.DIFFERENCE.nativeInt) {
91 } else if (regionOp == Region.Op.INTERSECT.nativeInt) {
102 } else if (regionOp == Region.Op.UNION.nativeInt) {
113 } else if (regionOp == Region.Op.XOR.nativeInt) {
124 } else if (regionOp == Region.Op.REVERSE_DIFFERENCE.nativeInt) {
/frameworks/base/core/jni/android/graphics/
H A DRegion.cpp75 return dst->op(ir, (SkRegion::Op)op);
81 return dst->op(ir, *region, (SkRegion::Op)op);
85 return dst->op(*region1, *region2, (SkRegion::Op)op);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DEventHole.java92 info.touchableRegion.op(l, t, r, b, Region.Op.DIFFERENCE);
H A DIntruderAlertView.java141 android.graphics.Region.Op.DIFFERENCE);
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitcodeReader.cpp221 : ConstantExpr(Ty, Instruction::UserOp1, &Op<0>(), 1) {
222 Op<0>() = UndefValue::get(Type::getInt32Ty(Context));
1417 Constant *Op = ValueList.getConstantFwdRef(Record[2], OpTy);
1418 V = ConstantExpr::getCast(Opc, Op, CurTy);
2260 Value *Op; local
2261 if (getValueTypePair(Record, OpNum, NextValueNo, Op) ||
2269 I = CastInst::Create((Instruction::CastOps)Opc, Op, ResTy);
2282 Value *Op; local
2283 if (getValueTypePair(Record, OpNum, NextValueNo, Op))
2285 GEPIdx.push_back(Op);
2447 Value *Op; local
2465 Value *Op = NULL; local
2576 Value *Op; local
2652 Value *Op; local
2683 Value *Op; local
2755 Value *Op; local
2774 Value *Op = getFnValueByID(Record[1], OpTy); local
[all...]
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DBitcodeReader.cpp501 : ConstantExpr(Ty, Instruction::UserOp1, &Op<0>(), 1) {
502 Op<0>() = UndefValue::get(Type::getInt32Ty(Context));
1719 Constant *Op = ValueList.getConstantFwdRef(Record[2], OpTy);
1720 V = ConstantExpr::getCast(Opc, Op, CurTy);
2520 Value *Op; local
2521 if (getValueTypePair(Record, OpNum, NextValueNo, Op) ||
2529 I = CastInst::Create((Instruction::CastOps)Opc, Op, ResTy);
2542 Value *Op; local
2543 if (getValueTypePair(Record, OpNum, NextValueNo, Op))
2545 GEPIdx.push_back(Op);
2712 Value *Op = NULL; local
2823 Value *Op; local
2941 Value *Op; local
2953 Value *Op; local
3097 Value *Op; local
3116 Value *Op = getFnValueByID(Record[1], OpTy); local
[all...]
/frameworks/base/core/java/android/view/
H A DGLES20Canvas.java427 return nClipPath(mRenderer, path.mNativePath, Region.Op.INTERSECT.nativeInt);
431 public boolean clipPath(Path path, Region.Op op) {
439 return nClipRect(mRenderer, left, top, right, bottom, Region.Op.INTERSECT.nativeInt);
446 public boolean clipRect(float left, float top, float right, float bottom, Region.Op op) {
452 return nClipRect(mRenderer, left, top, right, bottom, Region.Op.INTERSECT.nativeInt);
461 Region.Op.INTERSECT.nativeInt);
465 public boolean clipRect(Rect rect, Region.Op op) {
472 Region.Op.INTERSECT.nativeInt);
476 public boolean clipRect(RectF rect, Region.Op op) {
482 return nClipRegion(mRenderer, region.mNativeRegion, Region.Op
[all...]
/frameworks/compile/slang/BitWriter_2_9/
H A DValueEnumerator.cpp415 const Value *Op = C->getOperand(i); local
419 if (isa<BasicBlock>(Op)) continue;
421 EnumerateOperandType(Op);
/frameworks/compile/slang/BitWriter_2_9_func/
H A DValueEnumerator.cpp415 const Value *Op = C->getOperand(i); local
419 if (isa<BasicBlock>(Op)) continue;
421 EnumerateOperandType(Op);
/frameworks/compile/slang/BitWriter_3_2/
H A DValueEnumerator.cpp405 const Value *Op = C->getOperand(i); local
409 if (isa<BasicBlock>(Op)) continue;
411 EnumerateOperandType(Op);

Completed in 936 milliseconds

12