Home
last modified time | relevance | path

Searched refs:isUsed (Results 1 – 25 of 50) sorted by relevance

12

/external/proguard/src/proguard/shrink/
DUsedMemberFilter.java61 if (usageMarker.isUsed(programField)) in visitProgramField()
70 if (usageMarker.isUsed(programMethod)) in visitProgramMethod()
79 if (usageMarker.isUsed(libraryField)) in visitLibraryField()
88 if (usageMarker.isUsed(libraryMethod)) in visitLibraryMethod()
DClassShrinker.java161 !usageMarker.isUsed(enclosingMethodAttribute.referencedMethod)) in visitEnclosingMethodAttribute()
256 usageMarker.isUsed(referencedClass)) in visitSignatureAttribute()
330 boolean isUsed = false; in shrinkConstantPool()
342 isUsed = usageMarker.isUsed(constant); in shrinkConstantPool()
345 if (isUsed) in shrinkConstantPool()
373 if (usageMarker.isUsed(constantPool[array[index]])) in shrinkConstantIndexArray()
434 if (usageMarker.isUsed(array[index])) in shrinkArray()
DInterfaceUsageMarker.java65 boolean classUsed = usageMarker.isUsed(programClass); in visitProgramClass()
120 boolean classUsed = usageMarker.isUsed(classConstant); in visitClassConstant()
147 if (!usageMarker.isUsed(utf8Constant)) in visitUtf8Constant()
DInnerUsageMarker.java90 boolean innerClassesInfoUsed = usageMarker.isUsed(innerClassesInfo); in visitInnerClassesInfo()
123 classUsed = usageMarker.isUsed(classConstant); in visitClassConstant()
154 classUsed = usageMarker.isUsed(programClass); in visitProgramClass()
DUsagePrinter.java89 if (usageMarker.isUsed(programClass)) in visitProgramClass()
119 if (usageMarker.isUsed(programField) ^ printUnusedItems) in visitProgramField()
135 if (usageMarker.isUsed(programMethod) ^ printUnusedItems) in visitProgramMethod()
DUsedClassFilter.java60 if (usageMarker.isUsed(programClass)) in visitProgramClass()
69 if (usageMarker.isUsed(libraryClass)) in visitLibraryClass()
DAnnotationUsageMarker.java272 classUsed = usageMarker.isUsed(classConstant); in visitClassConstant()
297 classUsed = usageMarker.isUsed(programClass); in visitProgramClass()
311 methodUsed = usageMarker.isUsed(programMethod); in visitProgramMethod()
DShortestUsageMarker.java145 protected boolean isUsed(VisitorAccepter visitorAccepter) in isUsed() method in ShortestUsageMarker
261 if (ShortestUsageMarker.this.isUsed(visitorAccepter)) in checkCause()
DUsageMarker.java240 if (isUsed(programClass)) in visitProgramField()
264 if (isUsed(programClass)) in visitProgramMethod()
867 protected boolean isUsed(VisitorAccepter visitorAccepter) in isUsed() method in UsageMarker
DShortestUsagePrinter.java181 if (shortestUsageMarker.isUsed(visitorAccepter)) in printReason()
/external/proguard/src/proguard/obfuscate/
DUtf8Shrinker.java80 boolean isUsed = false; in shrinkConstantPool()
92 isUsed = constant.getTag() != ClassConstants.CONSTANT_Utf8 || in shrinkConstantPool()
93 Utf8UsageMarker.isUsed(constant); in shrinkConstantPool()
96 if (isUsed) in shrinkConstantPool()
DNameAndTypeShrinker.java82 boolean isUsed = false; in shrinkConstantPool()
94 isUsed = constant.getTag() != ClassConstants.CONSTANT_NameAndType || in shrinkConstantPool()
95 NameAndTypeUsageMarker.isUsed(constant); in shrinkConstantPool()
98 if (isUsed) in shrinkConstantPool()
DAttributeUsageMarker.java67 static boolean isUsed(VisitorAccepter visitorAccepter) in isUsed() method in AttributeUsageMarker
DAttributeShrinker.java107 if (AttributeUsageMarker.isUsed(array[index])) in shrinkArray()
DNameAndTypeUsageMarker.java131 static boolean isUsed(VisitorAccepter visitorAccepter) in isUsed() method in NameAndTypeUsageMarker
DUtf8UsageMarker.java388 static boolean isUsed(VisitorAccepter visitorAccepter) in isUsed() method in Utf8UsageMarker
/external/jmonkeyengine/engine/src/core/com/jme3/util/
DTempVars.java82 private boolean isUsed = false; field in TempVars
111 instance.isUsed = true; in get()
124 if (!isUsed) { in release()
128 isUsed = false; in release()
/external/valgrind/main/coregrind/
Dm_sparsewa.c87 Int isUsed; member
121 Int sp = swa->isUsed; in swa_PUSH()
129 swa->isUsed = sp+1; in swa_PUSH()
136 Int sp = swa->isUsed - 1; in swa_POP()
144 swa->isUsed = sp; in swa_POP()
171 swa->isUsed = 0; in VG_()
188 if (swa->isUsed == 0) in VG_()
/external/llvm/lib/CodeGen/
DRegisterScavenging.cpp42 if (isUsed(*AI, *AI == Reg)) in isAliasUsed()
178 if (!isUsed(Reg)) { in forward()
189 if (isUsed(*SubRegs)) { in forward()
/external/llvm/include/llvm/MC/
DMCSymbol.h79 bool isUsed() const { return IsUsed; } in isUsed() function
/external/llvm/include/llvm/CodeGen/
DRegisterScavenging.h136 bool isUsed(unsigned Reg, bool CheckReserved = true) const {
/external/webkit/Source/JavaScriptCore/assembler/
DAbstractMacroAssembler.h263 bool isUsed() const { return m_label.isUsed(); } in isUsed() function
/external/clang/lib/Serialization/
DASTWriterDecl.cpp158 Record.push_back(D->isUsed(false)); in VisitDecl()
191 !D->isUsed(false) && in VisitTypedefDecl()
246 !D->isUsed(false) && in VisitEnumDecl()
272 !D->isUsed(false) && in VisitRecordDecl()
521 !D->isUsed(false) && in VisitObjCIvarDecl()
649 !D->isUsed(false) && in VisitFieldDecl()
708 !D->isUsed(false) && in VisitVarDecl()
753 !D->isUsed(false) && in VisitParmVarDecl()
/external/clang/include/clang/Lex/
DMacroInfo.h210 bool isUsed() const { return IsUsed; } in isUsed() function
/external/clang/lib/Sema/
DSemaAttr.cpp287 if (VD->isUsed()) in ActOnPragmaUnused()

12