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

123456

/external/skia/src/svg/parser/
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/Target/AArch64/
H A DAArch64DeadRegisterDefinitionsPass.cpp67 if (MO.isReg() && MO.isDef())
93 if (MO.isReg() && MO.isDead() && MO.isDef()) {
H A DAArch64Subtarget.cpp67 bool isDef = GV->isStrongDefinitionForLinker(); local
94 return isDef ? AArch64II::MO_NO_FLAG : AArch64II::MO_GOT;
/external/llvm/lib/Target/X86/
H A DX86Subtarget.cpp69 bool isDef = GV->isStrongDefinitionForLinker();
81 if (GV->hasDefaultVisibility() && !isDef)
107 if (isDef)
131 if (isDef)
/external/llvm/include/llvm/CodeGen/
H A DMachineOperand.h282 bool isDef() const { function in class:llvm::MachineOperand
571 void ChangeToRegister(unsigned Reg, bool isDef, bool isImp = false,
597 static MachineOperand CreateReg(unsigned Reg, bool isDef, bool isImp = false,
604 assert(!(isDead && !isDef) && "Dead flag on non-def");
605 assert(!(isKill && isDef) && "Kill flag on def");
607 Op.IsDef = isDef;
/external/llvm/lib/CodeGen/
H A DLiveRangeCalc.cpp62 if (!MO.isDef() && !MO.readsReg())
93 if (MO.isDef())
100 if (MO.isDef())
107 if (MO.isDef() && !LI.hasSubRanges())
172 assert(!MO.isDef() && "Cannot handle PHI def of partial register.");
180 if (MO.isDef())
H A DDeadMachineInstructionElim.cpp74 if (MO.isReg() && MO.isDef()) {
140 if (MO.isReg() && MO.isDef()) {
H A DLivePhysRegs.cpp48 if (!O->isDef())
81 if (O->isDef()) {
H A DMachineInstrBundle.cpp140 if (MO.isDef()) {
279 if (MO.isDef())
284 if (MO.isDef())
326 } else if (MO.isDef()) {
H A DMachineInstr.cpp176 void MachineOperand::ChangeToRegister(unsigned Reg, bool isDef, bool isImp, argument
194 IsDef = isDef;
224 return getReg() == Other.getReg() && isDef() == Other.isDef() &&
267 return hash_combine(MO.getType(), MO.getReg(), MO.getSubReg(), MO.isDef());
318 if (isDef() || isKill() || isDead() || isImplicit() || isUndef() ||
322 if (isDef()) {
919 if (MO.isDef()) {
973 if (!MO.isReg() || !MO.isDef())
1241 if (!MO.isReg() || !MO.isDef())
[all...]
/external/skia/include/svg/parser/
H A DSkSVGPaintState.h47 bool flush(SkSVGParser& , bool isFlushable, bool isDef);
H A DSkSVGParser.h41 void translate(SkSVGElement*, bool isDef);

Completed in 429 milliseconds

123456