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

  /external/chromium_org/third_party/skia/src/svg/
SkSVGDefs.cpp 14 bool SkSVGDefs::isDef() {
SkSVGMask.cpp 23 bool SkSVGMask::isDef() {
SkSVGMetadata.cpp 15 bool SkSVGMetadata::isDef() {
SkSVGClipPath.cpp 16 bool SkSVGClipPath::isDef() {
SkSVGGroup.cpp 26 bool SkSVGGroup::isDef() {
27 return fParent ? fParent->isDef() : false;
SkSVGElements.cpp 44 bool SkSVGElement::isDef() {
45 return isGroupParent() == false ? fParent->isDef() : fIsDef;
77 fIsDef = isDef();
SkSVGGradient.cpp 21 bool SkSVGGradient::isDef() {
SkSVGParser.cpp 232 void SkSVGParser::translate(SkSVGElement* element, bool isDef) {
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();
    [all...]
  /external/skia/src/svg/
SkSVGDefs.cpp 14 bool SkSVGDefs::isDef() {
SkSVGMask.cpp 23 bool SkSVGMask::isDef() {
SkSVGMetadata.cpp 15 bool SkSVGMetadata::isDef() {
SkSVGClipPath.cpp 16 bool SkSVGClipPath::isDef() {
SkSVGGroup.cpp 26 bool SkSVGGroup::isDef() {
27 return fParent ? fParent->isDef() : false;
SkSVGElements.cpp 44 bool SkSVGElement::isDef() {
45 return isGroupParent() == false ? fParent->isDef() : fIsDef;
77 fIsDef = isDef();
SkSVGGradient.cpp 21 bool SkSVGGradient::isDef() {
SkSVGParser.cpp 232 void SkSVGParser::translate(SkSVGElement* element, bool isDef) {
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();
    [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/clang/tools/libclang/
IndexingContext.cpp 374 bool isDef = D->isThisDeclarationADefinition();
375 bool isContainer = isDef;
379 isDef = true;
383 DeclInfo DInfo(!D->isFirstDeclaration(), isDef, isContainer);
574 bool isDef = D->isThisDeclarationADefinition();
575 bool isContainer = isDef;
579 isDef = true;
583 DeclInfo DInfo(!D->isCanonicalDecl(), isDef, isContainer);
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 79 /// IsDef/IsImp/IsKill/IsDead flags - These are only valid for MO_Register
82 /// IsDef - True if this is a def, false if this is a use of the register.
84 bool IsDef : 1;
271 return !IsDef;
274 bool isDef() const {
276 return IsDef;
368 assert(isReg() && !IsDef && "Wrong MachineOperand accessor");
374 assert(isReg() && IsDef && "Wrong MachineOperand accessor");
389 assert(isReg() && IsDef && "Wrong MachineOperand accessor");
394 assert(isReg() && !IsDef && "Wrong MachineOperand accessor")
    [all...]
  /external/llvm/lib/Target/ARM/
ARMLoadStoreOptimizer.cpp 345 bool isDef = (isi32Load(Opcode) || Opcode == ARM::VLDRS ||
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())
    [all...]

Completed in 246 milliseconds