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

/external/skia/src/svg/parser/
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.h129 /// isDef - Return true if this MemDepResult represents a query that is
131 bool isDef() const { return Value.getInt() == Def; } function in class:llvm::MemDepResult
/external/llvm/include/llvm/CodeGen/
H A DMachineOperand.h279 bool isDef() const { function in class:llvm::MachineOperand
560 void ChangeToRegister(unsigned Reg, bool isDef, bool isImp = false,
586 static MachineOperand CreateReg(unsigned Reg, bool isDef, bool isImp = false,
593 assert(!(isDead && !isDef) && "Dead flag on non-def");
594 assert(!(isKill && isDef) && "Kill flag on def");
596 Op.IsDef = isDef;
/external/clang/tools/libclang/
H A DIndexingContext.cpp373 bool isDef = D->isThisDeclarationADefinition(); local
374 bool isContainer = isDef;
378 isDef = true;
382 DeclInfo DInfo(!D->isFirstDecl(), isDef, isContainer);
574 bool isDef = D->isThisDeclarationADefinition(); local
575 bool isContainer = isDef;
579 isDef = true;
583 DeclInfo DInfo(!D->isCanonicalDecl(), isDef, isContainer);
/external/llvm/lib/CodeGen/
H A DLiveIntervalAnalysis.cpp744 assert(MO.isDef());
811 LiveIntervals::getSpillWeight(bool isDef, bool isUse, argument
816 return (isDef + isUse) * (Freq.getFrequency() * Scale);
1289 if (MO.isDef()) {
H A DMachineInstr.cpp147 void MachineOperand::ChangeToRegister(unsigned Reg, bool isDef, bool isImp, argument
165 IsDef = isDef;
195 return getReg() == Other.getReg() && isDef() == Other.isDef() &&
238 return hash_combine(MO.getType(), MO.getReg(), MO.getSubReg(), MO.isDef());
285 if (isDef() || isKill() || isDead() || isImplicit() || isUndef() ||
289 if (isDef()) {
861 if (MO.isDef()) {
915 if (!MO.isReg() || !MO.isDef())
1184 if (!MO.isReg() || !MO.isDef())
[all...]
/external/llvm/lib/Target/ARM/
H A DARMLoadStoreOptimizer.cpp152 if (MO.isDef() && MO.getReg() == ARM::CPSR && !MO.isDead())
614 bool isDef = (isi32Load(Opcode) || Opcode == ARM::VLDRS || local
660 MIB = MIB.addReg(Regs[i].first, getDefRegState(isDef)
768 if (!MO->isReg() || !MO->isDef() || !MO->isImplicit() || MO->isDead())
1451 int Offset, bool isDef,
1458 if (isDef) {
1623 bool isKill = MO.isDef() ? false : MO.isKill();
1927 if (MO.isDef() && TRI->regsOverlap(Reg, Base))
1449 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
/external/clang/lib/Sema/
H A DSemaDeclAttr.cpp2283 bool isDef = false; local
2284 if (!D->canBeWeakImported(isDef)) {
2285 if (isDef)

Completed in 382 milliseconds