Home
last modified time | relevance | path

Searched refs:shouldKeep (Results 1 – 15 of 15) sorted by relevance

/external/llvm-project/llvm/tools/llvm-reduce/deltas/
DReduceMetadata.cpp31 if (O.shouldKeep()) in getChunkMetadataNodes()
82 if (!O.shouldKeep()) in extractMetadataFromModule()
DReduceAliases.cpp28 if (!O.shouldKeep()) { in extractAliasesFromModule()
DReduceFunctionBodies.cpp30 if (!F.isDeclaration() && !O.shouldKeep()) { in extractFunctionBodiesFromModule()
DReduceFunctions.cpp37 return !F.isIntrinsic() && !O.shouldKeep(); in extractFunctionsFromModule()
DReduceInstructions.cpp32 if (O.shouldKeep()) in extractInstrFromModule()
DDelta.h68 bool shouldKeep() { in shouldKeep() function
DReduceGlobalVars.cpp28 if (GV.hasInitializer() && O.shouldKeep()) in extractGVsFromModule()
DReduceOperandBundles.cpp60 if (O.shouldKeep()) // Should we keep this one? in visitCallBase()
DReduceArguments.cpp54 if (O.shouldKeep()) in extractArgumentsFromModule()
DReduceBasicBlocks.cpp98 if (O.shouldKeep()) in extractBasicBlocksFromModule()
DReduceAttributes.cpp102 if (O.shouldKeep()) in visitAttributeSet()
/external/fonttools/Lib/fontTools/varLib/instancer/
D__init__.py789 shouldKeep = True
791 shouldKeep = False
793 return applies, shouldKeep
821 shouldKeep = True
823 shouldKeep = False
825 return shouldKeep
841 applies, shouldKeep = _instantiateFeatureVariationRecord(
844 if shouldKeep:
845 shouldKeep = _limitFeatureVariationRecord(record, axisRanges, fvarAxes)
847 if shouldKeep and _featureVariationRecordIsUnique(record, uniqueRecords):
/external/llvm-project/lld/ELF/
DLinkerScript.h313 bool shouldKeep(InputSectionBase *s);
DMarkLive.cpp267 if (isReserved(sec) || script->shouldKeep(sec)) { in run()
DLinkerScript.cpp348 bool LinkerScript::shouldKeep(InputSectionBase *s) { in shouldKeep() function in LinkerScript