Searched refs:OpsToPrint (Results 1 - 2 of 2) sorted by relevance

/external/llvm/utils/TableGen/
H A DAsmWriterEmitter.cpp60 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; local
59 PrintCases(std::vector<std::pair<std::string, AsmWriterOperand> > &OpsToPrint, raw_ostream &O, bool PassSubtarget) argument
[all...]
/external/swiftshader/third_party/LLVM/utils/TableGen/
H A DAsmWriterEmitter.cpp28 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; local
27 PrintCases(std::vector<std::pair<std::string, AsmWriterOperand> > &OpsToPrint, raw_ostream &O) argument
[all...]

Completed in 160 milliseconds