HomeSort by: relevance | last modified time | path
    Searched defs:CCmd (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXCompilationDatabase.cpp 39 std::vector<CompileCommand> CCmd;
42 : CCmd(std::move(Cmd)) {}
50 std::vector<CompileCommand> CCmd(db->getCompileCommands(CompleteFileName));
51 if (!CCmd.empty())
52 return new AllocatedCXCompileCommands(std::move(CCmd));
61 std::vector<CompileCommand> CCmd(db->getAllCompileCommands());
62 if (!CCmd.empty())
63 return new AllocatedCXCompileCommands(std::move(CCmd));
84 return ACC->CCmd.size();
96 if (I >= ACC->CCmd.size()
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/c-index-test/
c-index-test.c 4048 CXCompileCommand CCmd;
4097 CCmd = clang_CompileCommands_getCommand(CCmds, i);
4099 wd = clang_CompileCommand_getDirectory(CCmd);
4107 numArgs = clang_CompileCommand_getNumArgs(CCmd);
4114 cxargs[a] = clang_CompileCommand_getArg(CCmd, a);
4306 CXCompileCommand CCmd;
4352 CCmd = clang_CompileCommands_getCommand(CCmds, j);
4354 wd = clang_CompileCommand_getDirectory(CCmd);
4359 numArgs = clang_CompileCommand_getNumArgs(CCmd);
4362 arg = clang_CompileCommand_getArg(CCmd, a)
    [all...]

Completed in 53 milliseconds