Home
last modified time | relevance | path

Searched refs:eidx (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenInstruction.cpp399 StringRef::size_type bidx, eidx; in ParseConstraints() local
403 eidx = CStr.find_first_of(delims, bidx); in ParseConstraints()
404 if (eidx == StringRef::npos) in ParseConstraints()
405 eidx = CStr.size(); in ParseConstraints()
407 ParseConstraint(CStr.substr(bidx, eidx - bidx), Ops, Rec); in ParseConstraints()
408 bidx = CStr.find_first_not_of(delims, eidx); in ParseConstraints()