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

12

/external/chromium_org/third_party/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/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.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
550 void ChangeToRegister(unsigned Reg, bool isDef, bool isImp = false,
576 static MachineOperand CreateReg(unsigned Reg, bool isDef, bool isImp = false,
583 assert(!(isDead && !isDef) && "Dead flag on non-def");
584 assert(!(isKill && isDef) && "Kill flag on def");
586 Op.IsDef = isDef;
/external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/
H A Dbase.js98 goog.isDef = function(val) {
134 if (!parts.length && goog.isDef(opt_object)) {
/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.cpp636 LiveIntervals::getSpillWeight(bool isDef, bool isUse, argument
641 return (isDef + isUse) * (Freq.getFrequency() * Scale);
1135 if (MO.isDef()) {
H A DMachineInstr.cpp128 void MachineOperand::ChangeToRegister(unsigned Reg, bool isDef, bool isImp, argument
146 IsDef = isDef;
176 return getReg() == Other.getReg() && isDef() == Other.isDef() &&
219 return hash_combine(MO.getType(), MO.getReg(), MO.getSubReg(), MO.isDef());
274 if (isDef() || isKill() || isDead() || isImplicit() || isUndef() ||
278 if (isDef()) {
824 if (MO.isDef()) {
1127 if (!MO.isReg() || !MO.isDef())
1180 assert(DefMO.isDef()
[all...]
/external/llvm/lib/Target/ARM/
H A DARMLoadStoreOptimizer.cpp496 bool isDef = (isi32Load(Opcode) || Opcode == ARM::VLDRS || local
542 MIB = MIB.addReg(Regs[i].first, getDefRegState(isDef)
650 if (!MO->isReg() || !MO->isDef() || !MO->isImplicit() || MO->isDead())
784 if (MO.isDef() && MO.getReg() == ARM::CPSR && !MO.isDead())
1360 int Offset, bool isDef,
1367 if (isDef) {
1532 bool isKill = MO.isDef() ? false : MO.isKill();
1843 if (MO.isDef() && TRI->regsOverlap(Reg, Base))
1358 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.cpp2167 bool isDef = false; local
2168 if (!D->canBeWeakImported(isDef)) {
2169 if (isDef)
/external/chromium_org/third_party/accessibility-audit/
H A Daxs_testing.js25 goog.isDef = function(a) {
33 !a.length && goog.isDef(b) ? c[d] = b : c = c[d] ? c[d] : c[d] = {};

Completed in 409 milliseconds

12