Lines Matching defs:Invocation
120 return "Invocation list file contains multiple references to the same "
123 return "Invocation list file is not found.";
125 return "Invocation list file is empty.";
127 return "Invocation list file is in wrong format.";
129 return "Invocation list file does not contain the requested source file.";
547 /// YAML formatted invocation list file under the filesystem path specified by
548 /// \p InvocationList. The invocation list should contain absolute paths.
565 auto Invocation = InvocationList->find(SourceFilePath);
566 if (Invocation == InvocationList->end())
570 const InvocationListTy::mapped_type &InvocationCommand = Invocation->second;
594 /// LLVM YAML parser is used to extract information from invocation list file.
612 /// the keys are paths to source files, and values are sequences of invocation
640 /// the invocation.
667 /// Lazily initialize the invocation list member used for on-demand parsing.