Searched refs:isDef (Results 1 - 25 of 88) sorted by relevance

1234

/external/skia/src/svg/
H A DSkSVGMetadata.cpp15 bool SkSVGMetadata::isDef() { function in class:SkSVGMetadata
H A DSkSVGClipPath.h17 virtual bool isDef();
H A DSkSVGDefs.cpp14 bool SkSVGDefs::isDef() { function in class:SkSVGDefs
H A DSkSVGDefs.h17 virtual bool isDef();
H A DSkSVGMetadata.h17 virtual bool isDef();
H A DSkSVGGroup.cpp26 bool SkSVGGroup::isDef() { function in class:SkSVGGroup
27 return fParent ? fParent->isDef() : false;
H A DSkSVGGradient.h19 virtual bool isDef();
H A DSkSVGGroup.h19 virtual bool isDef();
H A DSkSVGMask.cpp23 bool SkSVGMask::isDef() { function in class:SkSVGMask
H A DSkSVGMask.h17 virtual bool isDef();
H A DSkSVGElements.cpp44 bool SkSVGElement::isDef() { function in class:SkSVGElement
45 return isGroupParent() == false ? fParent->isDef() : fIsDef;
77 fIsDef = isDef();
H A DSkSVGClipPath.cpp16 bool SkSVGClipPath::isDef() { function in class:SkSVGClipPath
H A DSkSVGParser.cpp232 void SkSVGParser::translate(SkSVGElement* element, bool isDef) { argument
236 (element->fIsDef && isDef == false && element->fIsNotDef == false) ||
237 (element->fIsDef == false && isDef && element->fIsNotDef)) {
252 element->fPaintState.flush(*this, isFlushable, isDef);
253 element->translate(*this, isDef);
256 if (element->fPaintState.flush(*this, isFlushable, isDef)) {
263 element->fPaintState.flush(*this, isFlushable, isDef);
265 element->translate(*this, isDef);
389 bool isDef = created->fIsDef = created->isDef(); local
[all...]
H A DSkSVGElements.h53 virtual bool isDef();
/external/llvm/lib/CodeGen/
H A DDeadMachineInstructionElim.cpp69 if (MO.isReg() && MO.isDef()) {
138 if (!MO.isReg() || !MO.isDef())
167 if (MO.isReg() && MO.isDef()) {
H A DMachineInstrBundle.cpp126 if (MO.isDef()) {
267 if (MO.isDef())
272 if (MO.isDef())
H A DLiveRangeEdit.cpp162 if (MO.isDef()) {
263 (MI->isCopy() || MOI->isDef() || MRI.hasOneNonDBGUse(Reg) ||
268 if (MOI->isDef()) {
H A DRegisterScavenging.cpp165 assert(MO.isDef());
207 assert(MO.isDef());
289 if (MO.isDef())
H A DMachineInstr.cpp130 void MachineOperand::ChangeToRegister(unsigned Reg, bool isDef, bool isImp, argument
148 IsDef = isDef;
178 return getReg() == Other.getReg() && isDef() == Other.isDef() &&
217 return hash_combine(MO.getType(), MO.getReg(), MO.getSubReg(), MO.isDef());
269 if (isDef() || isKill() || isDead() || isImplicit() || isUndef() ||
273 if (isDef()) {
866 if (MO.isDef()) {
1120 if (!MO.isReg() || !MO.isDef())
1173 assert(DefMO.isDef()
[all...]
H A DPeepholeOptimizer.cpp321 if (MO.isDef())
343 if (!MO.isReg() || MO.isDef())
348 if (!MO.isDef()) {
458 if (!MO.isReg() || MO.isDef())
H A DMachineLICM.cpp439 if (!MO.isDef()) {
567 if (!MO.isReg() || MO.isDef() || !MO.getReg())
597 if (!MO.isReg() || !MO.getReg() || MO.isDef()) continue;
824 if (MO.isDef())
854 if (MO.isDef())
976 if (!MO->isReg() || !MO->isDef())
1052 if (!DefMO.isReg() || !DefMO.isDef())
1116 if (MO.isDef()) {
1193 if (MO.isDef()) {
1348 if (MO.isReg() && MO.isDef()
[all...]
/external/llvm/include/llvm/CodeGen/
H A DMachineOperand.h272 bool isDef() const { function in class:llvm::MachineOperand
531 void ChangeToRegister(unsigned Reg, bool isDef, bool isImp = false,
557 static MachineOperand CreateReg(unsigned Reg, bool isDef, bool isImp = false,
565 Op.IsDef = isDef;
/external/llvm/lib/Target/MBlaze/
H A DMBlazeDelaySlotFiller.cpp137 bool aop_is_def = a->getOperand(aop).isDef();
145 bool mop_is_def = m->getOperand(mop).isDef();
/external/llvm/lib/Target/Mips/
H A DMipsDelaySlotFiller.cpp220 if (MO.isDef()) {
254 if (MO.isDef())
/external/llvm/lib/Target/Sparc/
H A DDelaySlotFiller.cpp218 if (MO.isDef()) {
271 if (MO.isDef())

Completed in 1093 milliseconds

1234