/third_party/typescript/src/services/refactors/ |
D | moveToNewFile.ts | 353 …eFile, importDecl: SupportedImport, changes: textChanges.ChangeTracker, isUnused: (name: Identifie… 356 deleteUnusedImportsInDeclaration(sourceFile, importDecl, changes, isUnused); 359 if (isUnused(importDecl.name)) { 364 deleteUnusedImportsInVariableDeclaration(sourceFile, importDecl, changes, isUnused); 370 …ile, importDecl: ImportDeclaration, changes: textChanges.ChangeTracker, isUnused: (name: Identifie… 373 const defaultUnused = !name || isUnused(name); 375 …d.NamespaceImport ? isUnused(namedBindings.name) : namedBindings.elements.length !== 0 && namedBin… 393 if (isUnused(element.name)) changes.delete(sourceFile, element); 399 …File, varDecl: VariableDeclaration, changes: textChanges.ChangeTracker, isUnused: (name: Identifie… 403 if (isUnused(name)) { [all …]
|
/third_party/skia/src/gpu/v1/ |
D | PathRenderer.cpp | 61 canArgs.fHasUserStencilSettings = !args.fUserStencilSettings->isUnused(); in drawPath() 63 if (!args.fUserStencilSettings->isUnused()) { in drawPath()
|
D | SurfaceDrawContext.cpp | 1617 bool hasUserStencilSettings = !ss->isUnused(); in drawAndStencilPath()
|
/third_party/flutter/skia/src/gpu/ |
D | GrPathRenderer.cpp | 56 canArgs.fHasUserStencilSettings = !args.fUserStencilSettings->isUnused(); in drawPath() 58 if (!args.fUserStencilSettings->isUnused()) { in drawPath()
|
D | GrUserStencilSettings.h | 209 bool isUnused() const { return this == &kUnused; } in isUnused() function
|
D | GrRenderTargetContext.cpp | 2125 bool hasUserStencilSettings = !ss->isUnused(); in drawAndStencilPath()
|
/third_party/skia/src/gpu/ops/ |
D | TessellationPathRenderer.cpp | 148 SkASSERT(args.fUserStencilSettings->isUnused()); in onDrawPath() 180 SkASSERT(args.fUserStencilSettings->isUnused()); // See onGetStencilSupport(). in onDrawPath()
|
D | PathTessellateOp.h | 57 bool usesStencil() const override { return !fStencil->isUnused(); } in usesStencil()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | LiveInterval.cpp | 523 } while (!valnos.empty() && valnos.back()->isUnused()); in markValNoForDeletion() 538 assert(!VNI->isUnused() && "Unused valno used by live segment"); in RenumberValues() 895 if (VNI->isUnused()) in stripValuesNotDefiningMask() 1029 if (vni->isUnused()) { in print() 1328 if (VNI->isUnused()) { in Classify() 1405 if (VNI.isUnused()) { in Distribute()
|
D | SplitKit.cpp | 171 if (!VNI->isPHIDef() && !VNI->isUnused()) in analyzeUses() 956 if (VNI->isUnused()) in computeRedundantBackCopies() 1020 if (VNI->isUnused()) in hoistCopies() 1101 if (VNI->isUnused()) in hoistCopies() 1268 if (V->isUnused() || !V->isPHIDef()) in extendPHIKillRanges() 1284 if (V->isUnused() || !V->isPHIDef()) in extendPHIKillRanges() 1478 if (ParentVNI->isUnused()) in finish()
|
D | CalcSpillWeights.cpp | 94 if (VNI->isUnused()) in isRematerializable()
|
D | LiveIntervals.cpp | 358 if (VNI->isUnused()) in createSegmentsForValues() 511 if (VNI->isUnused()) in computeDeadValues() 605 if (VNI->isUnused()) in shrinkToUses() 851 if (PHI->isUnused() || !PHI->isPHIDef()) in hasPHIKill()
|
D | RenameIndependentSubregs.cpp | 320 if (VNI.isUnused() || !VNI.isPHIDef()) in computeMainRangesFixFlags()
|
D | LiveRangeEdit.cpp | 83 if (VNI->isUnused()) in scanRemattable()
|
D | RegisterCoalescer.cpp | 804 assert(AValNo && !AValNo->isUnused() && "COPY source not live"); in removeCopyByCommutingDef() 1075 assert(AValNo && !AValNo->isUnused() && "COPY source not live"); in removePartialRedundancy() 1106 if (VNI->isUnused()) in removePartialRedundancy() 1249 if (ValNo->isPHIDef() || ValNo->isUnused()) in reMaterializeTrivialDef() 2528 if (VNI->isUnused()) { in analyzeValue() 3136 if (VNI->isUnused() || VNI->isPHIDef() || isDefInSubRange(LI, VNI->def)) in pruneMainSegments()
|
D | LiveRangeCalc.cpp | 139 if (!VNI->isUnused() && !VNI->isPHIDef()) in constructMainRangeFromSubranges()
|
D | RegisterScavenging.cpp | 248 assert((KillRegs.test(Reg) || isUnused(Reg) || in forward()
|
D | MachineVerifier.cpp | 2388 if (VNI->isUnused()) in verifyLiveRangeValue() 2492 if (VNI->isUnused()) { in verifyLiveRangeSegment()
|
D | InlineSpiller.cpp | 670 if (VNI->isUnused() || VNI->isPHIDef() || UsedValues.count(VNI)) in reMaterializeAll()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceAssembler.h | 82 virtual bool isUnused() const { return Position == 0; } in isUnused() function
|
D | IceAssemblerX8632.h | 302 bool isUnused() const override { in isUnused() function 303 return Ice::Label::isUnused() && !hasNear(); in isUnused()
|
D | IceAssemblerX8664.h | 323 bool isUnused() const override { in isUnused() function 324 return Ice::Label::isUnused() && !hasNear(); in isUnused()
|
/third_party/skia/src/gpu/ |
D | GrUserStencilSettings.h | 210 bool isUnused() const { return this == &kUnused; } in isUnused() function
|
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/ |
D | Compiler.cpp | 1282 UnusedPredicate isUnused(&mCallDag, &mFunctionMetadata); in pruneUnusedFunctions() local 1287 sequence->erase(std::remove_if(sequence->begin(), sequence->end(), isUnused), in pruneUnusedFunctions()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | LiveInterval.h | 80 bool isUnused() const { return !def.isValid(); } in isUnused() function
|