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

  /external/llvm/utils/TableGen/
AsmWriterEmitter.cpp 60 AsmWriterOperand> > &OpsToPrint, raw_ostream &O,
62 O << " case " << OpsToPrint.back().first << ":";
63 AsmWriterOperand TheOp = OpsToPrint.back().second;
64 OpsToPrint.pop_back();
68 for (unsigned i = OpsToPrint.size(); i != 0; --i)
69 if (OpsToPrint[i-1].second == TheOp) {
70 O << "\n case " << OpsToPrint[i-1].first << ":";
71 OpsToPrint.erase(OpsToPrint.begin()+i-1);
118 std::vector<std::pair<std::string, AsmWriterOperand> > OpsToPrint;
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
AsmWriterEmitter.cpp 28 AsmWriterOperand> > &OpsToPrint, raw_ostream &O) {
29 O << " case " << OpsToPrint.back().first << ": ";
30 AsmWriterOperand TheOp = OpsToPrint.back().second;
31 OpsToPrint.pop_back();
35 for (unsigned i = OpsToPrint.size(); i != 0; --i)
36 if (OpsToPrint[i-1].second == TheOp) {
37 O << "\n case " << OpsToPrint[i-1].first << ": ";
38 OpsToPrint.erase(OpsToPrint.begin()+i-1);
84 std::vector<std::pair<std::string, AsmWriterOperand> > OpsToPrint;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
AsmWriterEmitter.cpp 82 AsmWriterOperand>> &OpsToPrint, raw_ostream &O,
84 O << " case " << OpsToPrint.back().first << ":";
85 AsmWriterOperand TheOp = OpsToPrint.back().second;
86 OpsToPrint.pop_back();
90 for (unsigned i = OpsToPrint.size(); i != 0; --i)
91 if (OpsToPrint[i-1].second == TheOp) {
92 O << "\n case " << OpsToPrint[i-1].first << ":";
93 OpsToPrint.erase(OpsToPrint.begin()+i-1);
139 std::vector<std::pair<std::string, AsmWriterOperand>> OpsToPrint;
    [all...]

Completed in 237 milliseconds