Searched defs:ConstraintEnd (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/IR/
H A DInlineAsm.cpp140 StringRef::iterator ConstraintEnd = std::find(I+1, E, '}'); local
141 if (ConstraintEnd == E) return true; // "{foo"
142 pCodes->push_back(std::string(I, ConstraintEnd+1));
143 I = ConstraintEnd+1;
212 StringRef::iterator ConstraintEnd = std::find(I, E, ','); local
214 if (ConstraintEnd == I || // Empty constraint like ",,"
215 Info.Parse(StringRef(I, ConstraintEnd-I), Result)) {
222 // ConstraintEnd may be either the next comma or the end of the string. In
224 I = ConstraintEnd;

Completed in 63 milliseconds