Searched defs:op (Results 1 - 25 of 85) sorted by relevance

1234

/frameworks/base/libs/hwui/
H A DDisplayList.cpp64 size_t DisplayListData::addChild(DrawRenderNodeOp* op) { argument
65 mReferenceHolders.push(op->renderNode());
66 return mChildren.add(op);
/frameworks/compile/mclinker/lib/Script/
H A DOperator.cpp58 static NullaryOp<Operator::SIZEOF_HEADERS> op; local
59 return op;
64 static NullaryOp<Operator::MAXPAGESIZE> op; local
65 return op;
70 static NullaryOp<Operator::COMMONPAGESIZE> op; local
71 return op;
77 static UnaryOp<Operator::UNARY_PLUS> op; local
78 return op;
83 static UnaryOp<Operator::UNARY_MINUS> op; local
84 return op;
89 static UnaryOp<Operator::LOGICAL_NOT> op; local
95 static UnaryOp<Operator::BITWISE_NOT> op; local
101 static UnaryOp<Operator::ABSOLUTE> op; local
107 static UnaryOp<Operator::ADDR> op; local
113 static UnaryOp<Operator::ALIGNOF> op; local
119 static UnaryOp<Operator::DATA_SEGMENT_END> op; local
125 static UnaryOp<Operator::DEFINED> op; local
131 static UnaryOp<Operator::LENGTH> op; local
137 static UnaryOp<Operator::LOADADDR> op; local
143 static UnaryOp<Operator::NEXT> op; local
149 static UnaryOp<Operator::ORIGIN> op; local
155 static UnaryOp<Operator::SIZEOF> op; local
162 static BinaryOp<Operator::MUL> op; local
168 static BinaryOp<Operator::DIV> op; local
174 static BinaryOp<Operator::MOD> op; local
180 static BinaryOp<Operator::ADD> op; local
186 static BinaryOp<Operator::SUB> op; local
192 static BinaryOp<Operator::LSHIFT> op; local
198 static BinaryOp<Operator::RSHIFT> op; local
204 static BinaryOp<Operator::LT> op; local
210 static BinaryOp<Operator::LE> op; local
216 static BinaryOp<Operator::GT> op; local
222 static BinaryOp<Operator::GE> op; local
228 static BinaryOp<Operator::EQ> op; local
234 static BinaryOp<Operator::NE> op; local
240 static BinaryOp<Operator::BITWISE_AND> op; local
246 static BinaryOp<Operator::BITWISE_XOR> op; local
252 static BinaryOp<Operator::BITWISE_OR> op; local
258 static BinaryOp<Operator::LOGICAL_AND> op; local
264 static BinaryOp<Operator::LOGICAL_OR> op; local
270 static BinaryOp<Operator::ALIGN> op; local
276 static BinaryOp<Operator::DATA_SEGMENT_RELRO_END> op; local
282 static BinaryOp<Operator::MAX> op; local
288 static BinaryOp<Operator::MIN> op; local
294 static BinaryOp<Operator::SEGMENT_START> op; local
301 static TernaryOp<Operator::TERNARY_IF> op; local
307 static TernaryOp<Operator::DATA_SEGMENT_ALIGN> op; local
[all...]
H A DRpnEvaluator.cpp39 Operator* op = llvm::cast<Operator>(*it); local
40 switch (op->arity()) {
42 operandStack.push(op->eval(m_Module, m_Backend));
48 op->appendOperand(opd);
49 operandStack.push(op->eval(m_Module, m_Backend));
57 op->appendOperand(opd1);
58 op->appendOperand(opd2);
59 operandStack.push(op->eval(m_Module, m_Backend));
69 op->appendOperand(opd1);
70 op
[all...]
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DBitShiftExpr.java26 BitShiftExpr(Expr left, String op, Expr right) { argument
28 mOp = op;
H A DMathExpr.java26 MathExpr(Expr left, String op, Expr right) { argument
28 mOp = op;
H A DUnaryExpr.java26 UnaryExpr(String op, Expr expr) { argument
28 mOp = op;
H A DComparisonExpr.java26 ComparisonExpr(String op, Expr left, Expr right) { argument
28 mOp = op;
/frameworks/native/libs/binder/
H A DIAppOpsCallback.cpp39 virtual void opChanged(int32_t op, const String16& packageName) { argument
42 data.writeInt32(op);
58 int32_t op = data.readInt32(); local
60 opChanged(op, packageName);
H A DAppOpsManager.cpp68 int32_t AppOpsManager::checkOp(int32_t op, int32_t uid, const String16& callingPackage) argument
71 return service != NULL ? service->checkOperation(op, uid, callingPackage) : MODE_IGNORED;
74 int32_t AppOpsManager::noteOp(int32_t op, int32_t uid, const String16& callingPackage) { argument
76 return service != NULL ? service->noteOperation(op, uid, callingPackage) : MODE_IGNORED;
79 int32_t AppOpsManager::startOp(int32_t op, int32_t uid, const String16& callingPackage) { argument
81 return service != NULL ? service->startOperation(getToken(service), op, uid, callingPackage)
85 void AppOpsManager::finishOp(int32_t op, int32_t uid, const String16& callingPackage) { argument
88 service->finishOperation(getToken(service), op, uid, callingPackage); local
92 void AppOpsManager::startWatchingMode(int32_t op, const String16& packageName, argument
96 service->startWatchingMode(op, packageNam
[all...]
H A DIAppOpsService.cpp88 virtual void startWatchingMode(int32_t op, const String16& packageName, argument
92 data.writeInt32(op);
179 int32_t op = data.readInt32(); local
182 startWatchingMode(op, packageName, callback);
/frameworks/native/opengl/tests/lib/
H A DglTestLib.cpp48 void glTestCheckEglError(const char* op, EGLBoolean returnVal) argument
51 testPrintE("%s() returned %d", op, returnVal);
57 op, EGLUtils::strerror(error), error);
61 void glTestCheckGlError(const char* op) argument
65 testPrintE("after %s() glError (0x%x)", op, error);
/frameworks/support/v4/api23/android/support/v4/app/
H A DAppOpsManagerCompat23.java30 public static int noteOp(Context context, String op, int uid, String packageName) { argument
32 return appOpsManager.noteOp(op, uid, packageName);
35 public static int noteProxyOp(Context context, String op, String proxiedPackageName) { argument
37 return appOpsManager.noteProxyOp(op, proxiedPackageName);
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
H A DRunResult.java31 RunResult(TestService.TestRunner op) { argument
32 name = op.getName();
33 fgLongName = op.getForegroundLongName();
34 bgLongName = op.getBackgroundLongName();
35 fgTime = op.getForegroundTime();
36 fgOps = op.getForegroundOps();
37 bgTime = op.getBackgroundTime();
38 bgOps = op.getBackgroundOps();
/frameworks/native/opengl/tests/gl_perf/
H A Dgl2_perf.cpp35 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) { argument
37 fprintf(stderr, "%s() returned %d\n", op, returnVal);
42 fprintf(stderr, "after %s() eglError %s (0x%x)\n", op, EGLUtils::strerror(error),
47 static void checkGlError(const char* op) { argument
50 fprintf(stderr, "after %s() glError (0x%x)\n", op, error);
/frameworks/support/v4/java/android/support/v4/app/
H A DAppOpsManagerCompat.java55 public int noteOp(Context context, String op, int uid, String packageName) { argument
59 public int noteProxyOp(Context context, String op, String proxiedPackageName) { argument
71 public int noteOp(Context context, String op, int uid, String packageName) { argument
72 return AppOpsManagerCompat23.noteOp(context, op, uid, packageName);
76 public int noteProxyOp(Context context, String op, String proxiedPackageName) { argument
77 return AppOpsManagerCompat23.noteProxyOp(context, op, proxiedPackageName);
91 * Gets the app op name associated with a given permission.
94 * @return The app op associated with the permission or null.
107 * @param op The operation to note. One of the OPSTR_* constants.
113 * @throws SecurityException If the app has been configured to crash on this op
115 noteOp(@onNull Context context, @NonNull String op, int uid, @NonNull String packageName) argument
136 noteProxyOp(@onNull Context context, @NonNull String op, @NonNull String proxiedPackageName) argument
[all...]
/frameworks/base/cmds/appops/src/com/android/commands/appops/
H A DAppOpsCommand.java89 private int strOpToOp(String op) { argument
91 return AppOpsManager.strOpToOp(op);
95 return Integer.parseInt(op);
99 return AppOpsManager.strDebugOpToOp(op);
108 String op = null;
117 } else if (op == null) {
118 op = argument;
131 } else if (op == null) {
139 final int opInt = strOpToOp(op);
181 String op
[all...]
/frameworks/data-binding/compiler/src/test/java/android/databinding/tool/
H A DExpressionVisitorTest.java86 public ComparisonExprTests(String op) { argument
87 mOp = op;
/frameworks/native/opengl/tests/gl2_java/src/com/android/gl2java/
H A DGL2JavaView.java142 private void checkGlError(String op) { argument
145 Log.e(TAG, op + ": glError " + error);
146 throw new RuntimeException(op + ": glError " + error);
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMnsObexServer.java78 public int onGet(final Operation op) { argument
85 public int onPut(final Operation op) { argument
90 headerset = op.getReceivedHeader();
101 BluetoothMapEventReport ev = BluetoothMapEventReport.fromStream(op
104 op.close();
/frameworks/rs/driver/
H A DrsdGL.cpp51 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) { argument
76 fprintf(stderr, "%s() returned %d\n", op, returnVal);
81 fprintf(stderr, "after %s() eglError %s (0x%x)\n", op, EGLUtils::strerror(error),
/frameworks/base/tools/obbtool/
H A DMain.cpp252 if (strncmp(op, name, opsize)) { \
253 fprintf(stderr, "ERROR: unknown function '%s'!\n\n", op); \
259 const char* op = argv[optind++]; local
260 const int opsize = strlen(op);
270 switch (op[0]) {
288 fprintf(stderr, "ERROR: unknown command '%s'!\n\n", op);
/frameworks/base/tools/split-select/
H A DRule.h46 Operator op; member in struct:split::Rule
73 : op(ALWAYS_TRUE)
/frameworks/native/opengl/tests/gl2_jni/jni/
H A Dgl_code.cpp20 static void checkGlError(const char* op) { argument
23 ALOGI("after %s() glError (0x%x)\n", op, error);
/frameworks/native/opengl/tests/gldual/jni/
H A Dgl_code.cpp20 static void checkGlError(const char* op) { argument
23 ALOGI("after %s() glError (0x%x)\n", op, error);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DOpReorderer.java236 void recycleUpdateOp(UpdateOp op); argument

Completed in 991 milliseconds

1234