Home | History | Annotate | Download | only in cindex

Lines Matching refs:cdb

14       cdb = CompilationDatabase.fromDirectory(path)
22 cdb = CompilationDatabase.fromDirectory(kInputsDir)
26 cdb = CompilationDatabase.fromDirectory(kInputsDir)
27 assert cdb.getCompileCommands('file_do_not_exist.cpp') == None
31 cdb = CompilationDatabase.fromDirectory(kInputsDir)
32 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project.cpp')
37 cdb = CompilationDatabase.fromDirectory(kInputsDir)
38 cmds = cdb.getAllCompileCommands()
63 cdb = CompilationDatabase.fromDirectory(kInputsDir)
65 cmds = cdb.getCompileCommands(file)
76 cdb = CompilationDatabase.fromDirectory(kInputsDir)
77 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project2.cpp')
94 cdb = CompilationDatabase.fromDirectory(kInputsDir)
96 for cmd in cdb.getCompileCommands('/home/john.doe/MyProject/project2.cpp'):
102 cdb = CompilationDatabase.fromDirectory(kInputsDir)
103 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project.cpp')
104 del cdb
110 cdb = CompilationDatabase.fromDirectory(kInputsDir)
111 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project.cpp')
112 del cdb