OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:compile_db
(Results
1 - 4
of
4
) sorted by null
/external/v8/tools/clang/scripts/
generate_win_compdb.py
77
compile_db
= json.loads(compile_db_as_json)
78
print 'Read in %d entries from the compile db' % len(
compile_db
)
79
compile_db
= [_ProcessEntry(e) for e in
compile_db
]
80
original_length = len(
compile_db
)
83
compile_db
= [e for e in
compile_db
if '_nacl.cc.pdb' not in e['command']
85
print 'Filtered out %d entries...' % (original_length - len(
compile_db
))
87
f.write(json.dumps(
compile_db
, indent=2))
build_file.py
17
from clang import
compile_db
76
compile_db
.GenerateWithNinja('.')
77
db =
compile_db
.Read('.')
run_tool.py
63
from clang import
compile_db
92
for entry in
compile_db
.Read(build_directory)]
217
compile_db
.GenerateWithNinja(args.compile_database)
apply_edits.py
32
from clang import
compile_db
Completed in 61 milliseconds