Lines Matching refs:Cmd
43 AllocatedCXCompileCommands(std::vector<CompileCommand> Cmd) in AllocatedCXCompileCommands()
44 : CCmd(std::move(Cmd)) {} in AllocatedCXCompileCommands()
139 CompileCommand *Cmd = static_cast<CompileCommand *>(CCmd); in clang_CompileCommand_getArg() local
141 if (Arg >= Cmd->CommandLine.size()) in clang_CompileCommand_getArg()
144 return cxstring::createRef(Cmd->CommandLine[Arg].c_str()); in clang_CompileCommand_getArg()
162 CompileCommand *Cmd = static_cast<CompileCommand *>(CCmd); in clang_CompileCommand_getMappedSourcePath() local
164 if (I >= Cmd->MappedSources.size()) in clang_CompileCommand_getMappedSourcePath()
167 return cxstring::createRef(Cmd->MappedSources[I].first.c_str()); in clang_CompileCommand_getMappedSourcePath()
176 CompileCommand *Cmd = static_cast<CompileCommand *>(CCmd); in clang_CompileCommand_getMappedSourceContent() local
178 if (I >= Cmd->MappedSources.size()) in clang_CompileCommand_getMappedSourceContent()
181 return cxstring::createRef(Cmd->MappedSources[I].second.c_str()); in clang_CompileCommand_getMappedSourceContent()