Home
last modified time | relevance | path

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

/llvm-project-15.0.7/flang/include/flang/Frontend/
H A DFrontendAction.h29 FrontendInputFile currentInput; variable
72 const FrontendInputFile &getCurrentInput() const { return currentInput; } in getCurrentInput()
75 assert(!currentInput.isEmpty() && "No current file!"); in getCurrentFile()
76 return currentInput.getFile(); in getCurrentFile()
80 assert(!currentInput.isEmpty() && "No current file!"); in getCurrentFileOrBufferName()
81 return currentInput.isFile() in getCurrentFileOrBufferName()
82 ? currentInput.getFile() in getCurrentFileOrBufferName()
83 : currentInput.getBuffer()->getBufferIdentifier(); in getCurrentFileOrBufferName()
/llvm-project-15.0.7/flang/lib/Frontend/
H A DFrontendAction.cpp27 this->currentInput = input; in LLVM_INSTANTIATE_REGISTRY()
/llvm-project-15.0.7/llvm/lib/Support/
H A DYAMLParser.cpp289 StringRef currentInput() { in currentInput() function in llvm::yaml::Scanner
1172 EncodingInfo EI = getUnicodeEncoding(currentInput()); in scanStreamStart()