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

12

/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/base/libs/hwui/
H A DDisplayListLogBuffer.cpp85 int op = *tmpBufferPtr++; local
95 fprintf(file, "%s%s\n", indent, opNames[op]);
99 void DisplayListLogBuffer::writeCommand(int level, int op) { argument
101 writeInt(op);
H A DSnapshot.cpp60 mClipRegionRoot.op(*s->clipRegion, SkRegion::kUnion_Op);
109 bool Snapshot::clipRegionOp(float left, float top, float right, float bottom, SkRegion::Op op) { argument
113 clipRegion->op(tmp, op);
121 bool Snapshot::clip(float left, float top, float right, float bottom, SkRegion::Op op) { argument
124 return clipTransformed(r, op);
127 bool Snapshot::clipTransformed(const Rect& r, SkRegion::Op op) { argument
130 switch (op) {
158 clipped = clipRegionOp(r.left, r.top, r.right, r.bottom, op);
/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);
H A Dfill_common.cpp26 static void checkGlError(const char* op) { argument
29 ALOGE("after %s() glError (0x%x)\n", op, error);
/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/rs/driver/
H A DrsdGL.cpp53 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) { argument
78 fprintf(stderr, "%s() returned %d\n", op, returnVal);
83 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/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/base/core/java/android/util/
H A DBase64.java73 public int op; field in class:Base64.Coder
165 if (decoder.op == decoder.output.length) {
171 byte[] temp = new byte[decoder.op];
172 System.arraycopy(decoder.output, 0, temp, 0, decoder.op);
276 int op = 0;
301 output[op+2] = (byte) value;
302 output[op+1] = (byte) (value >> 8);
303 output[op] = (byte) (value >> 16);
304 op += 3;
345 output[op
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DRegion_Delegate.java372 int left, int top, int right, int bottom, int op) {
379 new Rectangle2D.Float(left, top, right - left, bottom - top), op);
390 /*package*/ static boolean nativeOp(int native_dst, Rect rect, int native_region, int op) { argument
397 new Rectangle2D.Float(rect.left, rect.top, rect.width(), rect.height()), op);
409 int native_region1, int native_region2, int op) {
425 dstRegion.mArea = combineShapes(region1.mArea, region2.mArea, op);
371 nativeOp(int native_dst, int left, int top, int right, int bottom, int op) argument
408 nativeOp(int native_dst, int native_region1, int native_region2, int op) argument
/frameworks/native/include/private/ui/
H A DRegionHelper.h35 * value is computed as 0b101 op 0b110
69 inline region_operator(int op, const region& lhs, const region& rhs) argument
70 : op_mask(op), spanner(lhs, rhs)
/frameworks/native/opengl/tests/gl2_basic/
H A Dgl2_basic.cpp47 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) { argument
49 fprintf(stderr, "%s() returned %d\n", op, returnVal);
54 fprintf(stderr, "after %s() eglError %s (0x%x)\n", op, EGLUtils::strerror(error),
59 static void checkGlError(const char* op) { argument
62 fprintf(stderr, "after %s() glError (0x%x)\n", op, error);
/frameworks/native/opengl/tests/gl_basic/
H A Dgl_basic.cpp148 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) { argument
150 fprintf(stderr, "%s() returned %d\n", op, returnVal);
155 fprintf(stderr, "after %s() eglError %s (0x%x)\n", op, EGLUtils::strerror(error),
/frameworks/native/opengl/tests/gl_yuvtex/
H A Dgl_yuvtex.cpp49 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) { argument
51 fprintf(stderr, "%s() returned %d\n", op, returnVal);
56 fprintf(stderr, "after %s() eglError %s (0x%x)\n", op, EGLUtils::strerror(error),
61 static void checkGlError(const char* op) { argument
64 fprintf(stderr, "after %s() glError (0x%x)\n", op, error);
/frameworks/native/opengl/tests/testLatency/src/com/android/testlatency/
H A DTestLatencyView.java216 private void checkGlError(String op) { argument
219 Log.e(TAG, op + ": glError " + error);
220 throw new RuntimeException(op + ": glError " + error);
/frameworks/wilhelm/tests/native-media/src/com/example/nativemedia/
H A DMyGLSurfaceView.java281 private void checkGlError(String op) { argument
284 Log.e(TAG, op + ": glError " + error);
285 throw new RuntimeException(op + ": glError " + error);
/frameworks/base/media/mca/filterfw/native/core/
H A Dgl_env.cpp297 bool GLEnv::CheckGLError(const std::string& op) { argument
301 op.c_str(),
308 bool GLEnv::CheckEGLError(const std::string& op) { argument
314 op.c_str(),
/frameworks/base/core/jni/android/graphics/
H A DRegion.cpp71 static jboolean Region_op0(JNIEnv* env, jobject, SkRegion* dst, int left, int top, int right, int bottom, int op) { argument
75 return dst->op(ir, (SkRegion::Op)op);
78 static jboolean Region_op1(JNIEnv* env, jobject, SkRegion* dst, jobject rectObject, const SkRegion* region, int op) { argument
81 return dst->op(ir, *region, (SkRegion::Op)op);
84 static jboolean Region_op2(JNIEnv* env, jobject, SkRegion* dst, const SkRegion* region1, const SkRegion* region2, int op) { argument
85 return dst->op(*region1, *region2, (SkRegion::Op)op);
145 tmp.op(
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DRegion.java243 return op(r, Op.UNION);
248 * true if the result of the op is not empty.
250 public boolean op(Rect r, Op op) { argument
252 op.nativeInt);
257 * true if the result of the op is not empty.
259 public boolean op(int left, int top, int right, int bottom, Op op) { argument
261 op.nativeInt);
266 * true if the result of the op i
268 op(Region region, Op op) argument
276 op(Rect rect, Region region, Op op) argument
285 op(Region region1, Region region2, Op op) argument
379 nativeOp(int native_dst, int left, int top, int right, int bottom, int op) argument
381 nativeOp(int native_dst, Rect rect, int native_region, int op) argument
383 nativeOp(int native_dst, int native_region1, int native_region2, int op) argument
[all...]
/frameworks/base/tools/aidl/
H A DAST.h174 string op; member in struct:Comparison
177 Comparison(Expression* lvalue, const string& op, Expression* rvalue);
/frameworks/native/opengl/libagl/
H A Dstate.cpp123 static bool stencilop_valid(GLenum op) { argument
124 switch (op) {
/frameworks/native/opengl/tests/gl2_cameraeye/src/com/android/gl2cameraeye/
H A DGL2CameraEye.java428 private void checkGlError(String op) { argument
431 Log.e(TAG, op + ": glError " + error);
432 throw new RuntimeException(op + ": glError " + error);

Completed in 399 milliseconds

12