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

  /external/skia/src/svg/parser/
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/lib/Target/AArch64/
AArch64Subtarget.cpp 67 bool isDef = GV->isStrongDefinitionForLinker();
94 return isDef ? AArch64II::MO_NO_FLAG : AArch64II::MO_GOT;
  /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 82 /// IsDef/IsImp/IsKill/IsDead flags - These are only valid for MO_Register
85 /// IsDef - True if this is a def, false if this is a use of the register.
87 bool IsDef : 1;
279 return !IsDef;
282 bool isDef() const {
284 return IsDef;
376 assert(isReg() && !IsDef && "Wrong MachineOperand accessor");
382 assert(isReg() && IsDef && "Wrong MachineOperand accessor");
397 assert(isReg() && IsDef && "Wrong MachineOperand accessor");
402 assert(isReg() && !IsDef && "Wrong MachineOperand accessor")
    [all...]
  /external/clang/tools/libclang/
IndexingContext.cpp 373 bool isDef = D->isThisDeclarationADefinition();
374 bool isContainer = isDef;
378 isDef = true;
382 DeclInfo DInfo(!D->isFirstDecl(), isDef, isContainer);
574 bool isDef = D->isThisDeclarationADefinition();
575 bool isContainer = isDef;
579 isDef = true;
583 DeclInfo DInfo(!D->isCanonicalDecl(), isDef, isContainer);
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/experimental/javascript/closure/
base.js 185 if (!parts.length && goog.isDef(opt_object)) {
780 goog.isDef = function(val) {
    [all...]
  /external/llvm/lib/Target/ARM/
ARMLoadStoreOptimizer.cpp 165 if (MO.isDef() && MO.getReg() == ARM::CPSR && !MO.isDead())
719 bool isDef = isLoadSingle(Opcode);
768 MIB.addReg(R.first, getDefRegState(isDef) | getKillRegState(R.second));
819 if (!MO.isReg() || !MO.isDef() || MO.isDead())
886 else if (MO.isDef())
    [all...]
ARMISelLowering.cpp     [all...]
  /external/clang/lib/Sema/
SemaDeclAttr.cpp     [all...]

Completed in 163 milliseconds