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

12

/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.java72 c.clipRect(new Rect(0, 0, dw, mThickness), Region.Op.REPLACE);
75 c.clipRect(new Rect(0, 0, mThickness, dh), Region.Op.REPLACE);
78 c.clipRect(new Rect(dw - mThickness, 0, dw, dh), Region.Op.REPLACE);
81 c.clipRect(new Rect(0, dh - mThickness, dw, dh), Region.Op.REPLACE);
/frameworks/base/graphics/java/android/graphics/
H A DRegion.java29 public enum Op { enum in class:Region
37 Op(int nativeInt) { method in class:Region.Op
243 return op(r, Op.UNION);
247 * Perform the specified Op on this region and the specified rect. Return
250 public boolean op(Rect r, Op op) {
256 * Perform the specified Op on this region and the specified rect. Return
259 public boolean op(int left, int top, int right, int bottom, Op op) {
265 * Perform the specified Op on this region and the specified region. Return
268 public boolean op(Region region, Op op) {
273 * Set this region to the result of performing the Op o
[all...]
H A DCanvas.java533 public boolean clipRect(RectF rect, Region.Op op) {
547 public boolean clipRect(Rect rect, Region.Op op) {
587 Region.Op op) {
631 public boolean clipPath(Path path, Region.Op op) {
642 return clipPath(path, Region.Op.INTERSECT);
656 public boolean clipRegion(Region region, Region.Op op) {
671 return clipRegion(region, Region.Op.INTERSECT);
H A DPath.java393 rects.op((int) left, (int) top, (int) right, (int) bottom, Region.Op.UNION);
/frameworks/base/core/java/android/app/
H A DBackStackRecord.java41 BackStackRecord.Op op = bse.mHead;
98 BackStackRecord.Op op = new BackStackRecord.Op();
179 static final class Op { class in class:BackStackRecord
180 Op next;
181 Op prev;
191 Op mHead;
192 Op mTail;
249 Op op = mHead;
252 writer.print(prefix); writer.print(" Op #"); write
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DBackStackRecord.java41 BackStackRecord.Op op = bse.mHead;
98 BackStackRecord.Op op = new BackStackRecord.Op();
179 static final class Op { class in class:BackStackRecord
180 Op next;
181 Op prev;
191 Op mHead;
192 Op mTail;
249 Op op = mHead;
252 writer.print(prefix); writer.print(" Op #"); write
[all...]
/frameworks/base/libs/hwui/
H A DSnapshot.h118 SkRegion::Op op = SkRegion::kIntersect_Op) {
129 bool clipTransformed(const Rect& r, SkRegion::Op op = SkRegion::kIntersect_Op) {
H A DDisplayListRenderer.h67 enum Op { enum in class:android::uirenderer::DisplayList
266 virtual bool clipRect(float left, float top, float right, float bottom, SkRegion::Op op);
343 inline void addOp(DisplayList::Op drawOp) {
H A DOpenGLRenderer.h98 virtual bool clipRect(float left, float top, float right, float bottom, SkRegion::Op op);
H A DDisplayListRenderer.cpp646 renderer.clipRect(f1, f2, f3, f4, (SkRegion::Op) regionOp);
1058 SkRegion::Op op) {
/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.cpp74 return dst->op(ir, (SkRegion::Op)op);
80 return dst->op(ir, *region, (SkRegion::Op)op);
84 return dst->op(*region1, *region2, (SkRegion::Op)op);
H A DCanvas.cpp258 return canvas->clipRect(rect, (SkRegion::Op)op);
263 return canvas->clipPath(*path, (SkRegion::Op)op);
268 return canvas->clipRegion(*deviceRgn, (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 DNotificationRowLayout.java274 android.graphics.Region.Op.DIFFERENCE);
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitcodeReader.cpp159 : ConstantExpr(Ty, Instruction::UserOp1, &Op<0>(), 1) {
160 Op<0>() = UndefValue::get(Type::getInt32Ty(Context));
1368 Constant *Op = ValueList.getConstantFwdRef(Record[2], OpTy);
1369 V = ConstantExpr::getCast(Opc, Op, CurTy);
2190 Value *Op; local
2191 if (getValueTypePair(Record, OpNum, NextValueNo, Op) ||
2199 I = CastInst::Create((Instruction::CastOps)Opc, Op, ResTy);
2212 Value *Op; local
2213 if (getValueTypePair(Record, OpNum, NextValueNo, Op))
2215 GEPIdx.push_back(Op);
2377 Value *Op; local
2395 Value *Op = NULL; local
2506 Value *Op; local
2568 Value *Op; local
2599 Value *Op; local
2671 Value *Op; local
2690 Value *Op = getFnValueByID(Record[1], OpTy); local
[all...]
/frameworks/base/core/java/android/view/
H A DGLES20Canvas.java412 public boolean clipPath(Path path, Region.Op op) {
418 return nClipRect(mRenderer, left, top, right, bottom, Region.Op.INTERSECT.nativeInt);
425 public boolean clipRect(float left, float top, float right, float bottom, Region.Op op) {
431 return nClipRect(mRenderer, left, top, right, bottom, Region.Op.INTERSECT.nativeInt);
440 Region.Op.INTERSECT.nativeInt);
444 public boolean clipRect(Rect rect, Region.Op op) {
451 Region.Op.INTERSECT.nativeInt);
455 public boolean clipRect(RectF rect, Region.Op op) {
465 public boolean clipRegion(Region region, Region.Op op) {
H A DSurfaceView.java300 region.op(l, t, l+w, t+h, Region.Op.UNION);
/frameworks/compile/slang/BitWriter_2_9/
H A DValueEnumerator.cpp368 const Value *Op = C->getOperand(i); local
372 if (isa<BasicBlock>(Op)) continue;
374 EnumerateOperandType(Op);
/frameworks/compile/slang/
H A Dslang_rs_metadata_spec_encoder.cpp44 llvm::SmallVectorImpl<llvm::Value*> &Op) {
50 Op.push_back(MDS);
42 EncodeInteger(llvm::LLVMContext &C, unsigned I, llvm::SmallVectorImpl<llvm::Value*> &Op) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DImageWallpaper.java27 import android.graphics.Region.Op;
370 c.clipRect(0, 0, mBackgroundWidth, mBackgroundHeight, Op.DIFFERENCE);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DGcSnapshot.java486 if (regionOp == Region.Op.INTERSECT.nativeInt && mLayers.size() > 0) {
497 if (regionOp == Region.Op.REPLACE.nativeInt) {
/frameworks/base/core/jni/
H A Dandroid_view_GLES20Canvas.cpp270 SkRegion::Op op) {
276 SkRegion::Op op) {

Completed in 4196 milliseconds

12