/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/ |
GraphicsContext.cpp | 572 focusRingRegion.op(r, SkRegion::kUnion_Op); 966 void GraphicsContext::drawImage(Image* image, const IntPoint& p, CompositeOperator op, RespectImageOrientationEnum shouldRespectImageOrientation) 970 drawImage(image, FloatRect(IntRect(p, image->size())), FloatRect(FloatPoint(), FloatSize(image->size())), op, shouldRespectImageOrientation); 973 void GraphicsContext::drawImage(Image* image, const IntRect& r, CompositeOperator op, RespectImageOrientationEnum shouldRespectImageOrientation, bool useLowQualityScale) 977 drawImage(image, FloatRect(r), FloatRect(FloatPoint(), FloatSize(image->size())), op, shouldRespectImageOrientation, useLowQualityScale); 980 void GraphicsContext::drawImage(Image* image, const IntPoint& dest, const IntRect& srcRect, CompositeOperator op, RespectImageOrientationEnum shouldRespectImageOrientation) 982 drawImage(image, FloatRect(IntRect(dest, srcRect.size())), FloatRect(srcRect), op, shouldRespectImageOrientation); 985 void GraphicsContext::drawImage(Image* image, const FloatRect& dest, const FloatRect& src, CompositeOperator op, RespectImageOrientationEnum shouldRespectImageOrientation, bool useLowQualityScale) 987 drawImage(image, dest, src, op, BlendModeNormal, shouldRespectImageOrientation, useLowQualityScale); 997 void GraphicsContext::drawImage(Image* image, const FloatRect& dest, const FloatRect& src, CompositeOperator op, BlendMode blendMode, RespectImageOrientationEnum shouldRespectImageOrientation, bool useLowQualit (…) [all...] |
/external/chromium_org/third_party/skia/src/pdf/ |
SkPDFDevice.cpp | 342 return Op(clipPath, invPath, kIntersect_PathOp, outPath); 361 static SkPathOp region_op_to_pathops_op(SkRegion::Op op) { 362 SkASSERT(op >= 0); 363 SkASSERT(op <= SkRegion::kReverseDifference_Op); 364 return (SkPathOp)op; 399 SkPathOp op = region_op_to_pathops_op(clipEntry->getOp()); local 400 if (!Op(*outClipPath, entryPath, op, outClipPath)) { [all...] |
/external/llvm/lib/TableGen/ |
Record.cpp | [all...] |
/external/skia/src/pdf/ |
SkPDFDevice.cpp | 359 return Op(clipPath, invPath, kIntersect_PathOp, outPath); 378 static SkPathOp region_op_to_pathops_op(SkRegion::Op op) { 379 SkASSERT(op >= 0); 380 SkASSERT(op <= SkRegion::kReverseDifference_Op); 381 return (SkPathOp)op; 416 SkPathOp op = region_op_to_pathops_op(clipEntry->getOp()); local 417 if (!Op(*outClipPath, entryPath, op, outClipPath)) { [all...] |
/external/clang/include/clang/Sema/ |
Sema.h | [all...] |
DeclSpec.h | [all...] |
/external/llvm/lib/CodeGen/ |
TargetLoweringBase.cpp | 763 bool TargetLoweringBase::canOpTrap(unsigned Op, EVT VT) const { 765 switch (Op) { [all...] |
/frameworks/base/core/java/android/inputmethodservice/ |
KeyboardView.java | 28 import android.graphics.Region.Op; 652 canvas.clipRect(mDirtyRect, Op.REPLACE); [all...] |
/external/chromium_org/third_party/sqlite/src/src/ |
vdbeapi.c | 69 ** pointer is a harmless no-op. */ [all...] |
/frameworks/native/libs/ui/ |
Region.cpp | 269 Region& Region::operationSelf(const Rect& r, int op) { 271 boolean_operation(op, *this, lhs, r); 289 Region& Region::operationSelf(const Region& rhs, int op) { 291 boolean_operation(op, *this, lhs, rhs); 314 const Region Region::operation(const Rect& rhs, int op) const { 316 boolean_operation(op, result, *this, rhs); 334 const Region Region::operation(const Region& rhs, int op) const { 336 boolean_operation(op, result, *this, rhs); 360 Region& Region::operationSelf(const Region& rhs, int dx, int dy, int op) { 362 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);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
KeyboardView.java | 279 canvas.clipRegion(mClipRegion, Region.Op.REPLACE);
|
/external/llvm/lib/Target/ARM/Disassembler/ |
ARMDisassembler.cpp | 3085 unsigned op = fieldFromInstruction(Insn, 6, 1); local 4852 unsigned op = fieldFromInstruction(Insn, 5, 1); local 4882 unsigned op = fieldFromInstruction(Insn, 5, 1); local [all...] |
/external/llvm/lib/Bitcode/Writer/ |
BitcodeWriter.cpp | 111 static unsigned GetEncodedRMWOperation(AtomicRMWInst::BinOp Op) { 112 switch (Op) { [all...] |
/frameworks/compile/slang/BitWriter_2_9_func/ |
BitcodeWriter.cpp | 105 static unsigned GetEncodedRMWOperation(AtomicRMWInst::BinOp Op) { 106 switch (Op) { [all...] |
/frameworks/compile/slang/BitWriter_3_2/ |
BitcodeWriter.cpp | 110 static unsigned GetEncodedRMWOperation(AtomicRMWInst::BinOp Op) { 111 switch (Op) { [all...] |
/frameworks/base/core/java/android/widget/ |
StackView.java | 548 canvas.clipRect(stackInvalidateRect, Region.Op.UNION); [all...] |
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
Canvas_Delegate.java | 212 return canvasDelegate.clipRect(left, top, right, bottom, Region.Op.INTERSECT.nativeInt); [all...] |
/external/clang/lib/CodeGen/ |
CodeGenModule.cpp | [all...] |
/external/clang/lib/Serialization/ |
ASTReaderStmt.cpp | 899 E->Op = AtomicExpr::AtomicOp(Record[Idx++]); 900 E->NumSubExprs = AtomicExpr::getNumSubExprs(E->Op); [all...] |
/external/llvm/lib/Transforms/Scalar/ |
SROA.cpp | 479 // For non-volatile transfers this is a no-op. 556 Value *Op = SI->getOperand(0); 557 if (Op == UsedI) 559 Size = std::max(Size, DL.getTypeStoreSize(Op->getType())); [all...] |
/frameworks/base/libs/hwui/ |
OpenGLRenderer.cpp | [all...] |
/external/jdiff/ |
xerces.jar | |
/prebuilts/tools/common/m2/internal/xerces/xercesImpl/2.6.2/ |
xercesImpl-2.6.2.jar | |
/frameworks/base/core/java/android/view/ |
View.java | [all...] |