Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/llvm/utils/TableGen/
H A DCodeGenInstruction.cpp400 StringRef::size_type bidx, eidx; in ParseConstraints() local
402 bidx = CStr.find_first_not_of(delims); in ParseConstraints()
403 while (bidx != StringRef::npos) { in ParseConstraints()
404 eidx = CStr.find_first_of(delims, bidx); in ParseConstraints()
408 ParseConstraint(CStr.substr(bidx, eidx - bidx), Ops, Rec); in ParseConstraints()
409 bidx = CStr.find_first_not_of(delims, eidx); in ParseConstraints()