HomeSort by relevance Sort by last modified time
    Searched defs:Hints (Results 1 - 4 of 4) sorted by null

  /external/llvm/lib/CodeGen/
AllocationOrder.h 13 // hints and target hooks. The AllocationOrder class encapsulates all of that.
29 SmallVector<MCPhysReg, 16> Hints;
42 /// Get the allocation order without reordered hints.
50 return Hints.end()[Pos++];
62 /// This can produce more than Limit registers if there are hints.
65 return Hints.end()[Pos++];
72 void rewind() { Pos = -int(Hints.size()); }
79 return std::find(Hints.begin(), Hints.end(), PhysReg) != Hints.end()
    [all...]
  /external/clang/include/clang/Sema/
SemaFixItUtils.h 30 /// The class facilities generation and storage of conversion FixIts. Hints for
41 /// The list of Hints generated so far.
42 std::vector<FixItHint> Hints;
45 /// of the Hints vector since we allow multiple FixIts per conversion.
81 Hints.clear();
  /external/clang/lib/Sema/
DeclSpec.cpp 869 FixItHint Hints[NumLocs];
877 Hints[I] = FixItHint::CreateRemoval(ExtraLocs[I]);
886 << Hints[0] << Hints[1] << Hints[2] << Hints[3]
887 << Hints[4] << Hints[5] << Hints[6] << Hints[7]
    [all...]
SemaChecking.cpp     [all...]

Completed in 174 milliseconds