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

1 2 3 4

  /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 92 if (usageMarker.isUsed(programClass))
122 if (usageMarker.isUsed(programField) ^ printUnusedItems)
137 if (usageMarker.isUsed(programMethod) ^ printUnusedItems)
ClassShrinker.java 177 !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]))
AnnotationUsageMarker.java 245 if (!usageMarker.isUsed(classConstant))
267 allClassesUsed &= usageMarker.isUsed(programClass);
280 methodUsed = usageMarker.isUsed(programMethod);
SignatureUsageMarker.java 93 if (!usageMarker.isUsed(programClass))
ShortestUsageMarker.java 145 protected boolean isUsed(VisitorAccepter visitorAccepter)
261 if (ShortestUsageMarker.this.isUsed(visitorAccepter))
LocalVariableTypeUsageMarker.java 154 if (!usageMarker.isUsed(programClass))
  /external/proguard/src/proguard/classfile/editor/
NameAndTypeShrinker.java 140 private boolean isUsed(VisitorAccepter visitorAccepter)
161 boolean isUsed = false;
173 isUsed = constant.getTag() != ClassConstants.CONSTANT_NameAndType ||
174 isUsed(constant);
177 if (isUsed)
Utf8Shrinker.java 408 private boolean isUsed(VisitorAccepter visitorAccepter)
428 boolean isUsed = false;
440 isUsed = constant.getTag() != ClassConstants.CONSTANT_Utf8 ||
441 isUsed(constant);
444 if (isUsed)
ConstantPoolShrinker.java 532 private boolean isUsed(VisitorAccepter visitorAccepter)
552 boolean isUsed = false;
564 isUsed = isUsed(constant);
567 if (isUsed)
  /external/proguard/src/proguard/obfuscate/
AttributeUsageMarker.java 67 static boolean isUsed(VisitorAccepter visitorAccepter)
ParameterNameMarker.java 60 if (!AttributeUsageMarker.isUsed(localVariableTableAttribute) &&
92 if (!AttributeUsageMarker.isUsed(localVariableTypeTableAttribute) &&
AttributeShrinker.java 109 if (AttributeUsageMarker.isUsed(array[index]))
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/session/
dic_traverse_session.h 95 if (mProximityInfoStates[i].isUsed()) {
112 if (!mProximityInfoStates[i].isUsed()) {
145 if (pInfoState->isUsed() && !pInfoState->isContinuousSuggestionPossible()) {
  /hardware/qcom/display/msm8960/liboverlay/
overlay.h 113 static bool isUsed(int index);
195 inline bool Overlay::PipeBook::isUsed(int index) {
200 return !isUsed(index);
  /external/chromium_org/base/android/java/src/org/chromium/base/library_loader/
LibraryLoader.java 151 boolean useChromiumLinker = Linker.isUsed();
223 if (Linker.isUsed()) {
  /external/llvm/include/llvm/MC/
MCSymbol.h 56 /// IsUsed - True if this symbol has been used.
57 mutable unsigned IsUsed : 1;
64 IsTemporary(isTemporary), IsUsed(false) {}
78 /// isUsed - Check if this is used.
79 bool isUsed() const { return IsUsed; }
80 void setUsed(bool Value) const { IsUsed = Value; }
139 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)
  /hardware/qcom/display/msm8226/liboverlay/
overlay.h 169 static bool isUsed(int index);
313 inline bool Overlay::PipeBook::isUsed(int index) {
318 return !isUsed(index);
  /hardware/qcom/display/msm8974/liboverlay/
overlay.h 135 static bool isUsed(int index);
235 inline bool Overlay::PipeBook::isUsed(int index) {
240 return !isUsed(index);
  /hardware/qcom/display/msm8084/liboverlay/
overlay.h 195 static bool isUsed(int index);
339 inline bool Overlay::PipeBook::isUsed(int index) {
344 return !isUsed(index);
  /external/llvm/include/llvm/CodeGen/
RegisterScavenging.h 167 /// isUsed - Test if a register is currently being used. When called by the
171 bool isUsed(unsigned Reg, bool CheckReserved = true) const {

Completed in 437 milliseconds

1 2 3 4