Searched defs:isDef (Results 1 - 15 of 15) sorted by relevance

/external/skia/src/svg/
H A DSkSVGDefs.cpp14 bool SkSVGDefs::isDef() { function in class:SkSVGDefs
H A DSkSVGMetadata.cpp15 bool SkSVGMetadata::isDef() { function in class:SkSVGMetadata
H A DSkSVGMask.cpp23 bool SkSVGMask::isDef() { function in class:SkSVGMask
H A DSkSVGClipPath.cpp16 bool SkSVGClipPath::isDef() { function in class:SkSVGClipPath
H A DSkSVGGroup.cpp26 bool SkSVGGroup::isDef() { function in class:SkSVGGroup
27 return fParent ? fParent->isDef() : false;
H A DSkSVGElements.cpp44 bool SkSVGElement::isDef() { function in class:SkSVGElement
45 return isGroupParent() == false ? fParent->isDef() : fIsDef;
77 fIsDef = isDef();
H A DSkSVGGradient.cpp21 bool SkSVGGradient::isDef() { function in class:SkSVGGradient
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...]
/external/llvm/include/llvm/Analysis/
H A DMemoryDependenceAnalysis.h130 /// isDef - Return true if this MemDepResult represents a query that is
132 bool isDef() const { return Value.getInt() == Def; } function in class:llvm::MemDepResult
/external/llvm/lib/CodeGen/
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 DLiveIntervalAnalysis.cpp172 if (MO.getReg() == Reg && MO.isDef()) {
433 if (MO.isDef())
845 LiveIntervals::getSpillWeight(bool isDef, bool isUse, unsigned loopDepth) { argument
859 return (isDef + isUse) * lc;
1131 if (MO.isDef()) {
/external/llvm/lib/Target/NVPTX/
H A DVectorElementize.cpp179 if (!oper.isDef()) continue;
510 std::vector<bool> isDef; local
516 isDef.push_back(oper.isDef());
518 isDef.push_back(false);
533 copy->addOperand(MachineOperand::CreateReg(scalarRegs[i], isDef[j]));
612 if (oper.isDef()) continue;
640 if (oper.isDef())
/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/clang/lib/Sema/
H A DSemaStmtAsm.cpp594 bool isDef = NumDefs && (MCIdx < NumDefs); local
597 if (Op.isReg() && isDef) {
627 if (isDef || isMemDef) {
/external/llvm/lib/Target/ARM/
H A DARMLoadStoreOptimizer.cpp345 bool isDef = (isi32Load(Opcode) || Opcode == ARM::VLDRS || local
353 MIB = MIB.addReg(Regs[i].first, getDefRegState(isDef)
404 if (!MO->isReg() || !MO->isDef() || !MO->isImplicit() || MO->isDead())
520 if (MO.isDef() && MO.getReg() == ARM::CPSR && !MO.isDead())
1074 int Offset, bool isDef,
1081 if (isDef) {
1247 bool isKill = MO.isDef() ? false : MO.isKill();
1528 if (MO.isDef() && TRI->regsOverlap(Reg, Base))
1072 InsertLDR_STR(MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI, int Offset, bool isDef, DebugLoc dl, unsigned NewOpc, unsigned Reg, bool RegDeadKill, bool RegUndef, unsigned BaseReg, bool BaseKill, bool BaseUndef, bool OffKill, bool OffUndef, ARMCC::CondCodes Pred, unsigned PredReg, const TargetInstrInfo *TII, bool isT2) argument

Completed in 7902 milliseconds