Searched refs:isUsed (Results 1 - 25 of 52) sorted by relevance

123

/external/proguard/src/proguard/shrink/
H A DUsedMemberFilter.java61 if (usageMarker.isUsed(programField))
70 if (usageMarker.isUsed(programMethod))
79 if (usageMarker.isUsed(libraryField))
88 if (usageMarker.isUsed(libraryMethod))
H A DUsedClassFilter.java60 if (usageMarker.isUsed(programClass))
69 if (usageMarker.isUsed(libraryClass))
H A DInterfaceUsageMarker.java65 boolean classUsed = usageMarker.isUsed(programClass);
120 boolean classUsed = usageMarker.isUsed(classConstant);
147 if (!usageMarker.isUsed(utf8Constant))
H A DInnerUsageMarker.java90 boolean innerClassesInfoUsed = usageMarker.isUsed(innerClassesInfo);
123 classUsed = usageMarker.isUsed(classConstant);
154 classUsed = usageMarker.isUsed(programClass);
H A DUsagePrinter.java92 if (usageMarker.isUsed(programClass))
122 if (usageMarker.isUsed(programField) ^ printUnusedItems)
137 if (usageMarker.isUsed(programMethod) ^ printUnusedItems)
H A DClassShrinker.java177 !usageMarker.isUsed(enclosingMethodAttribute.referencedMethod))
293 usageMarker.isUsed(referencedClass))
367 boolean isUsed = false;
379 isUsed = usageMarker.isUsed(constant);
382 if (isUsed)
407 if (usageMarker.isUsed(constantPool[array[index]]))
465 if (usageMarker.isUsed(array[index]))
H A DAnnotationUsageMarker.java245 if (!usageMarker.isUsed(classConstant))
267 allClassesUsed &= usageMarker.isUsed(programClass);
280 methodUsed = usageMarker.isUsed(programMethod);
H A DSignatureUsageMarker.java93 if (!usageMarker.isUsed(programClass))
H A DShortestUsageMarker.java145 protected boolean isUsed(VisitorAccepter visitorAccepter) method in class:ShortestUsageMarker
261 if (ShortestUsageMarker.this.isUsed(visitorAccepter))
H A DLocalVariableTypeUsageMarker.java154 if (!usageMarker.isUsed(programClass))
H A DShortestUsagePrinter.java204 if (shortestUsageMarker.isUsed(visitorAccepter))
H A DUsageMarker.java258 if (isUsed(programClass))
282 if (isUsed(programClass))
999 protected boolean isUsed(VisitorAccepter visitorAccepter) method in class:UsageMarker
/external/proguard/src/proguard/classfile/editor/
H A DNameAndTypeShrinker.java140 private boolean isUsed(VisitorAccepter visitorAccepter) method in class:NameAndTypeShrinker
161 boolean isUsed = false;
173 isUsed = constant.getTag() != ClassConstants.CONSTANT_NameAndType ||
174 isUsed(constant);
177 if (isUsed)
H A DUtf8Shrinker.java408 private boolean isUsed(VisitorAccepter visitorAccepter) method in class:Utf8Shrinker
428 boolean isUsed = false;
440 isUsed = constant.getTag() != ClassConstants.CONSTANT_Utf8 ||
441 isUsed(constant);
444 if (isUsed)
H A DConstantPoolShrinker.java532 private boolean isUsed(VisitorAccepter visitorAccepter) method in class:ConstantPoolShrinker
552 boolean isUsed = false;
564 isUsed = isUsed(constant);
567 if (isUsed)
/external/proguard/src/proguard/obfuscate/
H A DAttributeUsageMarker.java67 static boolean isUsed(VisitorAccepter visitorAccepter) method in class:AttributeUsageMarker
H A DParameterNameMarker.java60 if (!AttributeUsageMarker.isUsed(localVariableTableAttribute) &&
92 if (!AttributeUsageMarker.isUsed(localVariableTypeTableAttribute) &&
H A DAttributeShrinker.java109 if (AttributeUsageMarker.isUsed(array[index]))
/external/llvm/include/llvm/MC/
H A DMCSymbol.h78 /// isUsed - Check if this is used.
79 bool isUsed() const { return IsUsed; } function in class:llvm::MCSymbol
/external/valgrind/main/coregrind/
H A Dm_sparsewa.c87 Int isUsed; member in struct:_SparseWA
121 Int sp = swa->isUsed;
129 swa->isUsed = sp+1;
136 Int sp = swa->isUsed - 1;
144 swa->isUsed = sp;
171 swa->isUsed = 0;
188 if (swa->isUsed == 0)
/external/chromium_org/base/android/java/src/org/chromium/base/library_loader/
H A DLibraryLoader.java153 boolean useChromiumLinker = Linker.isUsed();
295 if (Linker.isUsed()) {
/external/llvm/include/llvm/CodeGen/
H A DRegisterScavenging.h167 /// isUsed - Test if a register is currently being used. When called by the
171 bool isUsed(unsigned Reg, bool CheckReserved = true) const { function in class:llvm::RegScavenger
/external/llvm/lib/CodeGen/
H A DRegisterScavenging.cpp42 if (isUsed(*AI, *AI == Reg))
211 if (!isUsed(Reg)) {
222 if (isUsed(*SubRegs)) {
/external/chromium_org/third_party/jsoncpp/overrides/include/json/
H A Dvalue.h448 inline void setItemUsed( bool isUsed = true )
450 itemIsUsed_ = isUsed ? 1 : 0;
/external/clang/lib/Serialization/
H A DASTWriterDecl.cpp173 Record.push_back(D->isUsed(false));
227 !D->isUsed(false) &&
285 !D->isUsed(false) &&
311 !D->isUsed(false) &&
555 !D->isUsed(false) &&
678 !D->isUsed(false) &&
750 !D->isUsed(false) &&
798 !D->isUsed(false) &&
1466 Abv->Add(BitCodeAbbrevOp(0)); // isUsed
1498 Abv->Add(BitCodeAbbrevOp(0)); // isUsed
[all...]

Completed in 461 milliseconds

123