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()
58 cdb = CompilationDatabase.fromDirectory(kInputsDir)
59 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project.cpp')
69 cdb = CompilationDatabase.fromDirectory(kInputsDir)
70 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project2.cpp')
87 cdb = CompilationDatabase.fromDirectory(kInputsDir)
89 for cmd in cdb.getCompileCommands('/home/john.doe/MyProject/project2.cpp'):
95 cdb = CompilationDatabase.fromDirectory(kInputsDir)
96 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project.cpp')
97 del cdb
103 cdb = CompilationDatabase.fromDirectory(kInputsDir)
104 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project.cpp')
105 del cdb