Searched defs:Op (Results 1 - 13 of 13) sorted by relevance

/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);
H A DBitcodeWriter.cpp105 static unsigned GetEncodedRMWOperation(AtomicRMWInst::BinOp Op) { argument
106 switch (Op) {
/frameworks/compile/slang/BitWriter_3_2/
H A DValueEnumerator.cpp415 const Value *Op = C->getOperand(i); local
419 if (isa<BasicBlock>(Op)) continue;
421 EnumerateOperandType(Op);
H A DBitcodeWriter.cpp110 static unsigned GetEncodedRMWOperation(AtomicRMWInst::BinOp Op) { argument
111 switch (Op) {
/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 DPath.java104 * @see #op(Path, android.graphics.Path.Op)
105 * @see #op(Path, Path, android.graphics.Path.Op)
107 public enum Op { enum in class:Path
131 * Set this path to the result of applying the Op to this path and the specified path.
140 * @see Op
141 * @see #op(Path, Path, android.graphics.Path.Op)
143 public boolean op(Path path, Op op) {
148 * Set this path to the result of applying the Op to the two specified paths.
158 * @see Op
159 * @see #op(Path, android.graphics.Path.Op)
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DAppOpsService.java103 public final static class Ops extends SparseArray<Op> {
115 public final static class Op { class in class:AppOpsService
125 public Op(int _uid, String _packageName, int _op) { method in class:AppOpsService.Op
168 final ArrayList<Op> mStartedOps;
177 mStartedOps = new ArrayList<Op>();
289 Op curOp = pkgOps.valueAt(j);
295 Op curOp = pkgOps.get(ops[j]);
354 private void pruneOp(Op op, int uid, String packageName) {
382 Op op = getOpLocked(code, uid, packageName, true);
468 Op curO
[all...]
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
H A DTestService.java60 final static Op[] mOpPairs = new Op[] {
116 final static Op[] mAvailOps = new Op[] {
244 Op mForegroundOp;
245 Op mBackgroundOp;
428 static public abstract class Op { class in class:TestService
432 public Op(String name, String longName) { method in class:TestService.Op
458 static class NoOp extends Op {
472 static class CpuOp extends Op {
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DBackStackRecord.java53 BackStackRecord.Op op = bse.mHead;
115 BackStackRecord.Op op = new BackStackRecord.Op();
206 static final class Op { class in class:BackStackRecord
207 Op next;
208 Op prev;
218 Op mHead;
219 Op mTail;
302 Op op = mHead;
317 writer.print(prefix); writer.print(" Op #"); write
[all...]
/frameworks/base/core/java/android/app/
H A DBackStackRecord.java58 BackStackRecord.Op op = bse.mHead;
122 BackStackRecord.Op op = new BackStackRecord.Op();
217 static final class Op { class in class:BackStackRecord
218 Op next;
219 Op prev;
229 Op mHead;
230 Op mTail;
323 Op op = mHead;
357 writer.print(" Op #");
[all...]
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitcodeReader.cpp213 : ConstantExpr(Ty, Instruction::UserOp1, &Op<0>(), 1) {
214 Op<0>() = UndefValue::get(Type::getInt32Ty(Context));
1449 Constant *Op = ValueList.getConstantFwdRef(Record[2], OpTy);
1450 V = ConstantExpr::getCast(Opc, Op, CurTy);
2315 Value *Op; local
2316 if (getValueTypePair(Record, OpNum, NextValueNo, Op) ||
2324 I = CastInst::Create((Instruction::CastOps)Opc, Op, ResTy);
2337 Value *Op; local
2338 if (getValueTypePair(Record, OpNum, NextValueNo, Op))
2340 GEPIdx.push_back(Op);
2502 Value *Op; local
2520 Value *Op = NULL; local
2633 Value *Op; local
2713 Value *Op; local
2746 Value *Op; local
2819 Value *Op; local
2838 Value *Op = getFnValueByID(Record[1], OpTy); local
[all...]
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DBitcodeReader.cpp492 : ConstantExpr(Ty, Instruction::UserOp1, &Op<0>(), 1) {
493 Op<0>() = UndefValue::get(Type::getInt32Ty(Context));
1750 Constant *Op = ValueList.getConstantFwdRef(Record[2], OpTy);
1751 V = ConstantExpr::getCast(Opc, Op, CurTy);
2573 Value *Op; local
2574 if (getValueTypePair(Record, OpNum, NextValueNo, Op) ||
2582 I = CastInst::Create((Instruction::CastOps)Opc, Op, ResTy);
2595 Value *Op; local
2596 if (getValueTypePair(Record, OpNum, NextValueNo, Op))
2598 GEPIdx.push_back(Op);
2765 Value *Op = NULL; local
2878 Value *Op; local
3000 Value *Op; local
3012 Value *Op; local
3157 Value *Op; local
3176 Value *Op = getFnValueByID(Record[1], OpTy); local
[all...]

Completed in 2221 milliseconds