Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Support/
H A DRISCVVIntrinsicUtils.cpp368 llvm::StringRef PrototypeDescriptorStr) { in parsePrototypeDescriptor() argument
373 if (PrototypeDescriptorStr.empty()) in parsePrototypeDescriptor()
377 auto PType = PrototypeDescriptorStr.back(); in parsePrototypeDescriptor()
420 PrototypeDescriptorStr = PrototypeDescriptorStr.drop_back(); in parsePrototypeDescriptor()
423 if (PrototypeDescriptorStr.startswith("(")) { in parsePrototypeDescriptor()
426 size_t Idx = PrototypeDescriptorStr.find(')'); in parsePrototypeDescriptor()
428 StringRef ComplexType = PrototypeDescriptorStr.slice(1, Idx); in parsePrototypeDescriptor()
429 PrototypeDescriptorStr = PrototypeDescriptorStr.drop_front(Idx + 1); in parsePrototypeDescriptor()
430 assert(!PrototypeDescriptorStr.contains('(') && in parsePrototypeDescriptor()
553 for (char I : PrototypeDescriptorStr) { in parsePrototypeDescriptor()