HomeSort by relevance Sort by last modified time
    Searched refs:IsUsed (Results 1 - 7 of 7) sorted by null

  /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/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/clang/lib/Lex/
MacroInfo.cpp 26 IsUsed = false;
47 IsUsed = MI.IsUsed;
  /external/llvm/lib/MC/
MCSymbol.cpp 55 assert(!IsUsed && "Cannot set a variable that has already been used.");
  /external/v8/tools/
ll_prof.py 112 def IsUsed(self):
283 if code.IsUsed():
  /external/v8/src/
spaces.h     [all...]
spaces.cc 911 ASSERT(IsUsed(p));
926 bool PagedSpace::IsUsed(Page* page) {
    [all...]

Completed in 192 milliseconds