Home | History | Annotate | Download | only in libclang

Lines Matching full:cidx

71 CXTranslationUnit cxtu::MakeCXTranslationUnit(CIndexer *CIdx, ASTUnit *AU) {
74 assert(CIdx);
76 D->CIdx = CIdx;
3092 void clang_disposeIndex(CXIndex CIdx) {
3093 if (CIdx)
3094 delete static_cast<CIndexer *>(CIdx);
3097 void clang_CXIndex_setGlobalOptions(CXIndex CIdx, unsigned options) {
3098 if (CIdx)
3099 static_cast<CIndexer *>(CIdx)->setCXGlobalOptFlags(options);
3102 unsigned clang_CXIndex_getGlobalOptions(CXIndex CIdx) {
3103 if (CIdx)
3104 return static_cast<CIndexer *>(CIdx)->getCXGlobalOptFlags();
3115 CXTranslationUnit clang_createTranslationUnit(CXIndex CIdx,
3119 clang_createTranslationUnit2(CIdx, ast_filename, &TU);
3126 enum CXErrorCode clang_createTranslationUnit2(CXIndex CIdx,
3132 if (!CIdx || !ast_filename || !out_TU)
3139 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
3161 clang_createTranslationUnitFromSourceFile(CXIndex CIdx,
3168 return clang_parseTranslationUnit(CIdx, source_filename,
3175 clang_parseTranslationUnit_Impl(CXIndex CIdx, const char *source_filename,
3185 if (!CIdx || !out_TU)
3188 CIndexer *CXXIdx = static_cast<CIndexer *>(CIdx);
3308 clang_parseTranslationUnit(CXIndex CIdx,
3317 CIdx, source_filename, command_line_args, num_command_line_args,
3326 CXIndex CIdx, const char *source_filename,
3334 CIdx, source_filename, Args.data(), Args.size(), unsaved_files,
3339 CXIndex CIdx, const char *source_filename,
3355 CIdx, source_filename, command_line_args, num_command_line_args,
3704 CIndexer *CXXIdx = TU->CIdx;
3798 CIndexer *CXXIdx = TU->CIdx;
6712 CIndexer *CXXIdx = TU->CIdx;