Searched refs:headerDir (Results 1 – 2 of 2) sorted by relevance
/third_party/boost/libs/mpl/preprocessed/ |
D | fix_boost_mpl_preprocess.py | 39 def check_input_files_for_variadic_seq(headerDir, sourceDir): argument 42 files = glob.glob( os.path.join( headerDir, "*.hpp" ) ) 43 files += glob.glob( os.path.join( headerDir, "aux_", "*.hpp" ) ) 62 def check_input_files(headerDir, sourceDir, containers=['vector', 'list', 'set', 'map'], argument 70 result1 = check_input_files_for_variadic_seq(headerDir, sourceDir) 82 result2 = check_input_files_for_numbered_seq(headerDir, ".hpp", containers) 104 def fix_input_files_for_variadic_seq(headerDir, sourceDir, timestamp): argument 107 files = glob.glob( os.path.join( headerDir, "*.hpp" ) ) 108 files += glob.glob( os.path.join( headerDir, "aux_", "*.hpp" ) ) 123 def fix_input_files(headerDir, sourceDir, containers=['vector', 'list', 'set', 'map'], argument [all …]
|
D | boost_mpl_preprocess.py | 56 def create_input_for_numbered_sequences(headerDir, sourceDir, containers, maxElements): argument 66 create_more_container_files(headerDir, ".hpp", maxElements, containers, containersWithoutMap) 70 def adjust_container_limits_for_variadic_sequences(headerDir, containers, maxElements): argument 73 headerFile = os.path.join( headerDir, "limits", container + ".hpp" ) 170 headerDir = os.path.join( args.sourceDir, "boost", "mpl" ) 173 if not os.path.exists( headerDir ) or not os.path.exists( sourceDir ): 176 headerDir = os.path.join( args.sourceDir, "include", "boost", "mpl" ) 178 if not os.path.exists( headerDir ) or not os.path.exists( sourceDir ): 185 print "Chosen header-directory: ", headerDir 206 …needFixing = fixmpl.check_input_files(headerDir, sourceDir, containers, args.seqType, args.verbose) [all …]
|