HomeSort by relevance Sort by last modified time
    Searched defs:isDef (Results 1 - 12 of 12) sorted by null

  /external/skia/src/svg/
SkSVGDefs.cpp 22 bool SkSVGDefs::isDef() {
SkSVGMask.cpp 31 bool SkSVGMask::isDef() {
SkSVGMetadata.cpp 23 bool SkSVGMetadata::isDef() {
SkSVGClipPath.cpp 24 bool SkSVGClipPath::isDef() {
SkSVGGroup.cpp 34 bool SkSVGGroup::isDef() {
35 return fParent ? fParent->isDef() : false;
SkSVGElements.cpp 52 bool SkSVGElement::isDef() {
53 return isGroupParent() == false ? fParent->isDef() : fIsDef;
85 fIsDef = isDef();
SkSVGGradient.cpp 29 bool SkSVGGradient::isDef() {
SkSVGParser.cpp 238 void SkSVGParser::translate(SkSVGElement* element, bool isDef) {
242 (element->fIsDef && isDef == false && element->fIsNotDef == false) ||
243 (element->fIsDef == false && isDef && element->fIsNotDef)) {
258 element->fPaintState.flush(*this, isFlushable, isDef);
259 element->translate(*this, isDef);
262 if (element->fPaintState.flush(*this, isFlushable, isDef)) {
269 element->fPaintState.flush(*this, isFlushable, isDef);
271 element->translate(*this, isDef);
395 bool isDef = created->fIsDef = created->isDef();
    [all...]
  /external/llvm/include/llvm/Analysis/
MemoryDependenceAnalysis.h 130 /// isDef - Return true if this MemDepResult represents a query that is
132 bool isDef() const { return Value.getInt() == Def; }
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 67 /// IsDef/IsImp/IsKill/IsDead flags - These are only valid for MO_Register
70 /// IsDef - True if this is a def, false if this is a use of the register.
72 bool IsDef : 1;
233 return !IsDef;
236 bool isDef() const {
238 return IsDef;
316 IsDef = !Val;
322 IsDef = Val;
331 assert(isReg() && !IsDef && "Wrong MachineOperand accessor");
337 assert(isReg() && IsDef && "Wrong MachineOperand accessor")
    [all...]
SlotIndexes.h 199 /// isDef - Return true if this is a DEF slot.
200 bool isDef() const {
  /external/llvm/lib/Target/ARM/
ARMLoadStoreOptimizer.cpp 351 bool isDef = (isi32Load(Opcode) || Opcode == ARM::VLDRS ||
359 MIB = MIB.addReg(Regs[i].first, getDefRegState(isDef)
    [all...]

Completed in 142 milliseconds