HomeSort by relevance Sort by last modified time
    Searched refs:Op (Results 276 - 300 of 317) sorted by null

<<111213

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardView.java 29 import android.graphics.Region.Op;
473 canvas.clipRect(mDirtyRect, Op.REPLACE);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp     [all...]
LoopStrengthReduce.cpp 497 const SCEV *Op = getExactSDiv(*I, RHS, SE,
499 if (!Op) return 0;
500 Ops.push_back(Op);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp 78 BinaryOperatorKind Op = cast<BinaryOperator>(S)->getOpcode();
79 if (Op == BO_LAnd || Op == BO_LOr)
    [all...]
  /external/clang/lib/Sema/
SemaDeclCXX.cpp     [all...]
TreeTransform.h     [all...]
SemaExprCXX.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 219 // Emit by default LHS op RHS. MHS is used for range comparisons:
558 const char *implVisitAluOverflow(const CallInst &I, ISD::NodeType Op);
  /frameworks/base/core/java/android/view/
SurfaceView.java 300 region.op(l, t, l+w, t+h, Region.Op.UNION);
View.java     [all...]
  /frameworks/base/core/jni/
android_view_GLES20Canvas.cpp 270 SkRegion::Op op) {
271 return renderer->clipRect(left, top, right, bottom, op);
276 SkRegion::Op op) {
277 return renderer->clipRect(float(left), float(top), float(right), float(bottom), op);
    [all...]
  /frameworks/base/libs/hwui/
DisplayListRenderer.cpp 224 int op = mReader.readInt(); local
226 switch (op) {
229 LOGD("%s%s %p", (char*) indent, OP_NAMES[op], functor);
234 LOGD("%s%s %d", (char*) indent, OP_NAMES[op], rendererNum);
238 LOGD("%s%s", (char*) indent, OP_NAMES[op]);
243 LOGD("%s%s %d", (char*) indent, OP_NAMES[op], restoreCount);
254 OP_NAMES[op], f1, f2, f3, f4, paint, flags);
265 OP_NAMES[op], f1, f2, f3, f4, alpha, flags);
271 LOGD("%s%s %.2f, %.2f", (char*) indent, OP_NAMES[op], f1, f2);
276 LOGD("%s%s %.2f", (char*) indent, OP_NAMES[op], rotation)
548 int op = mReader.readInt(); local
    [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]
DeclSpec.h     [all...]
  /external/llvm/lib/TableGen/
Record.cpp     [all...]
  /external/llvm/lib/Target/ARM/Disassembler/
ARMDisassembler.cpp 2705 unsigned op = fieldFromInstruction32(Insn, 6, 1); local
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java 28 import android.graphics.Region.Op;
652 canvas.clipRect(mDirtyRect, Op.REPLACE);
    [all...]
  /frameworks/base/libs/ui/
Region.cpp 135 Region& Region::operationSelf(const Rect& r, int op) {
137 boolean_operation(op, *this, lhs, r);
152 Region& Region::operationSelf(const Region& rhs, int op) {
154 boolean_operation(op, *this, lhs, rhs);
174 const Region Region::operation(const Rect& rhs, int op) const {
176 boolean_operation(op, result, *this, rhs);
191 const Region Region::operation(const Region& rhs, int op) const {
193 boolean_operation(op, result, *this, rhs);
214 Region& Region::operationSelf(const Region& rhs, int dx, int dy, int op) {
216 boolean_operation(op, *this, lhs, rhs, dx, dy)
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
CropImage.java 283 c.clipPath(p, Region.Op.DIFFERENCE);
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 103 static unsigned GetEncodedRMWOperation(AtomicRMWInst::BinOp Op) {
104 switch (Op) {
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/webkit/Source/WebKit/android/jni/
PictureSet.cpp 342 drawn.op(current->mArea, SkRegion::kUnion_Op);
607 drawn.op(working->mArea, SkRegion::kUnion_Op);
625 inval->op(rect, SkRegion::kUnion_Op);
877 virtual bool clipPath(const SkPath&, SkRegion::Op) {
879 // question of emptiness, so we make it a no-op
    [all...]
  /frameworks/base/core/java/android/widget/
StackView.java 545 canvas.clipRect(stackInvalidateRect, Region.Op.UNION);
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Canvas_Delegate.java 214 return canvasDelegate.clipRect(left, top, right, bottom, Region.Op.INTERSECT.nativeInt);
    [all...]

Completed in 1000 milliseconds

<<111213