HomeSort by relevance Sort by last modified time
    Searched refs:isUsed (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/proguard/src/proguard/shrink/
UsedMemberFilter.java 61 if (usageMarker.isUsed(programField))
70 if (usageMarker.isUsed(programMethod))
79 if (usageMarker.isUsed(libraryField))
88 if (usageMarker.isUsed(libraryMethod))
UsedClassFilter.java 60 if (usageMarker.isUsed(programClass))
69 if (usageMarker.isUsed(libraryClass))
InterfaceUsageMarker.java 65 boolean classUsed = usageMarker.isUsed(programClass);
120 boolean classUsed = usageMarker.isUsed(classConstant);
147 if (!usageMarker.isUsed(utf8Constant))
InnerUsageMarker.java 90 boolean innerClassesInfoUsed = usageMarker.isUsed(innerClassesInfo);
123 classUsed = usageMarker.isUsed(classConstant);
154 classUsed = usageMarker.isUsed(programClass);
UsagePrinter.java 89 if (usageMarker.isUsed(programClass))
119 if (usageMarker.isUsed(programField) ^ printUnusedItems)
135 if (usageMarker.isUsed(programMethod) ^ printUnusedItems)
ClassShrinker.java 161 !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]))
ShortestUsageMarker.java 145 protected boolean isUsed(VisitorAccepter visitorAccepter)
261 if (ShortestUsageMarker.this.isUsed(visitorAccepter))
AnnotationUsageMarker.java 272 classUsed = usageMarker.isUsed(classConstant);
297 classUsed = usageMarker.isUsed(programClass);
311 methodUsed = usageMarker.isUsed(programMethod);
ShortestUsagePrinter.java 181 if (shortestUsageMarker.isUsed(visitorAccepter))
UsageMarker.java 240 if (isUsed(programClass))
264 if (isUsed(programClass))
867 protected boolean isUsed(VisitorAccepter visitorAccepter)
  /external/proguard/src/proguard/obfuscate/
NameAndTypeShrinker.java 82 boolean isUsed = false;
94 isUsed = constant.getTag() != ClassConstants.CONSTANT_NameAndType ||
95 NameAndTypeUsageMarker.isUsed(constant);
98 if (isUsed)
Utf8Shrinker.java 80 boolean isUsed = false;
92 isUsed = constant.getTag() != ClassConstants.CONSTANT_Utf8 ||
93 Utf8UsageMarker.isUsed(constant);
96 if (isUsed)
AttributeUsageMarker.java 67 static boolean isUsed(VisitorAccepter visitorAccepter)
AttributeShrinker.java 107 if (AttributeUsageMarker.isUsed(array[index]))
NameAndTypeUsageMarker.java 131 static boolean isUsed(VisitorAccepter visitorAccepter)
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
TempVars.java 82 private boolean isUsed = false;
111 instance.isUsed = true;
124 if (!isUsed) {
128 isUsed = false;
  /external/llvm/include/llvm/MC/
MCSymbol.h 55 /// IsUsed - True if this symbol has been used.
56 mutable unsigned IsUsed : 1;
63 IsTemporary(isTemporary), IsUsed(false) {}
77 /// isUsed - Check if this is used.
78 bool isUsed() const { return IsUsed; }
79 void setUsed(bool Value) const { IsUsed = Value; }
138 IsUsed = true;
  /external/valgrind/main/coregrind/
m_sparsewa.c 87 Int isUsed;
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/
RegisterScavenging.h 135 /// isUsed / isUnused - Test if a register is currently being used.
137 bool isUsed(unsigned Reg) const {
  /external/llvm/lib/CodeGen/
RegisterScavenging.cpp 46 if (isUsed(Reg))
49 if (isUsed(*R))
188 if (!isUsed(Reg)) {
200 if (isUsed(SubReg)) {
  /external/clang/include/clang/Lex/
MacroInfo.h 89 /// IsUsed - True if this macro is either defined in the main file and has
92 bool IsUsed : 1;
154 /// setIsUsed - Set the value of the IsUsed flag.
157 IsUsed = Val;
232 /// isUsed - Return false if this macro is defined in the main file and has
234 bool isUsed() const { return IsUsed; }
  /external/webkit/Source/JavaScriptCore/assembler/
AbstractMacroAssembler.h 263 bool isUsed() const { return m_label.isUsed(); }
  /external/clang/lib/Serialization/
ASTWriterDecl.cpp 156 Record.push_back(D->isUsed(false));
189 !D->isUsed(false) &&
244 !D->isUsed(false) &&
268 !D->isUsed(false) &&
512 !D->isUsed(false) &&
638 !D->isUsed(false) &&
694 !D->isUsed(false) &&
738 !D->isUsed(false) &&
    [all...]
  /system/core/libpixelflinger/codeflinger/
GGLAssembler.h 73 inline int isUsed(int reg) const;
109 bool isUsed(int reg) {
  /external/clang/lib/Sema/
SemaAttr.cpp 294 if (VD->isUsed())

Completed in 512 milliseconds

1 2 3