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

12

/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.java89 if (usageMarker.isUsed(programClass))
119 if (usageMarker.isUsed(programField) ^ printUnusedItems)
135 if (usageMarker.isUsed(programMethod) ^ printUnusedItems)
H A DClassShrinker.java161 !usageMarker.isUsed(enclosingMethodAttribute.referencedMethod))
256 usageMarker.isUsed(referencedClass))
330 boolean isUsed = false;
342 isUsed = usageMarker.isUsed(constant);
345 if (isUsed)
373 if (usageMarker.isUsed(constantPool[array[index]]))
434 if (usageMarker.isUsed(array[index]))
H A DShortestUsageMarker.java145 protected boolean isUsed(VisitorAccepter visitorAccepter) method in class:ShortestUsageMarker
261 if (ShortestUsageMarker.this.isUsed(visitorAccepter))
H A DAnnotationUsageMarker.java272 classUsed = usageMarker.isUsed(classConstant);
297 classUsed = usageMarker.isUsed(programClass);
311 methodUsed = usageMarker.isUsed(programMethod);
H A DShortestUsagePrinter.java181 if (shortestUsageMarker.isUsed(visitorAccepter))
H A DUsageMarker.java240 if (isUsed(programClass))
264 if (isUsed(programClass))
867 protected boolean isUsed(VisitorAccepter visitorAccepter) method in class:UsageMarker
/external/proguard/src/proguard/obfuscate/
H A DNameAndTypeShrinker.java82 boolean isUsed = false;
94 isUsed = constant.getTag() != ClassConstants.CONSTANT_NameAndType ||
95 NameAndTypeUsageMarker.isUsed(constant);
98 if (isUsed)
H A DUtf8Shrinker.java80 boolean isUsed = false;
92 isUsed = constant.getTag() != ClassConstants.CONSTANT_Utf8 ||
93 Utf8UsageMarker.isUsed(constant);
96 if (isUsed)
H A DAttributeUsageMarker.java67 static boolean isUsed(VisitorAccepter visitorAccepter) method in class:AttributeUsageMarker
H A DAttributeShrinker.java107 if (AttributeUsageMarker.isUsed(array[index]))
H A DNameAndTypeUsageMarker.java131 static boolean isUsed(VisitorAccepter visitorAccepter) method in class:NameAndTypeUsageMarker
H A DUtf8UsageMarker.java388 static boolean isUsed(VisitorAccepter visitorAccepter) method in class:Utf8UsageMarker
/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DTempVars.java82 private boolean isUsed = false; field in class:TempVars
111 instance.isUsed = true;
124 if (!isUsed) {
128 isUsed = false;
/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/llvm/include/llvm/CodeGen/
H A DRegisterScavenging.h132 /// isUsed - Test if a register is currently being used. When called by the
136 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))
178 if (!isUsed(Reg)) {
189 if (isUsed(*SubRegs)) {
/external/webkit/Source/JavaScriptCore/assembler/
H A DAbstractMacroAssembler.h263 bool isUsed() const { return m_label.isUsed(); } function in class:JSC::AbstractMacroAssembler::Label
/external/clang/include/clang/Lex/
H A DMacroInfo.h208 /// isUsed - Return false if this macro is defined in the main file and has
210 bool isUsed() const { return IsUsed; } function in class:clang::MacroInfo
/external/clang/lib/Serialization/
H A DASTWriterDecl.cpp158 Record.push_back(D->isUsed(false));
191 !D->isUsed(false) &&
246 !D->isUsed(false) &&
272 !D->isUsed(false) &&
521 !D->isUsed(false) &&
649 !D->isUsed(false) &&
708 !D->isUsed(false) &&
753 !D->isUsed(false) &&
1335 Abv->Add(BitCodeAbbrevOp(0)); // isUsed
1367 Abv->Add(BitCodeAbbrevOp(0)); // isUsed
[all...]
/external/clang/lib/Sema/
H A DSemaAttr.cpp287 if (VD->isUsed())

Completed in 375 milliseconds

12