/art/ |
test.py | 61 build_command = 'make' variable 62 build_command += ' -j' + str(options.n_threads) 64 build_command += ' -C ' + ANDROID_BUILD_TOP 65 build_command += ' ' + build_target 67 build_command += ' dist' 69 print build_command 71 if subprocess.call(build_command.split()):
|
/external/fmtlib/support/ |
appveyor-build.py | 14 build_command = ['mingw32-make', '-j4'] variable 28 build_command = ['cmake', '--build', '.', '--config', config, '--', '/m:4'] variable 32 check_call(build_command)
|
/art/test/testrunner/ |
run_build_test_target.py | 66 build_command = 'make' variable 67 build_command += ' -j' + str(n_threads) 68 build_command += ' -C ' + env.ANDROID_BUILD_TOP 69 build_command += ' ' + target.get('make') 71 build_command += ' dist' 72 sys.stdout.write(str(build_command) + '\n') 74 if subprocess.call(build_command.split()):
|
testrunner.py | [all...] |
/build/make/tools/releasetools/ |
build_image.py | 389 build_command = [] 426 build_command = [prop_dict["ext_mkuserimg"]] 428 build_command.append(prop_dict["extfs_sparse_flag"]) 430 build_command.extend([in_dir, out_file, fs_type, 432 build_command.append(prop_dict["partition_size"]) 434 build_command.extend(["-j", prop_dict["journal_size"]]) 436 build_command.extend(["-T", str(prop_dict["timestamp"])]) 438 build_command.extend(["-C", fs_config]) 440 build_command.extend(["-D", target_out]) 442 build_command.extend(["-B", prop_dict["block_list"]] [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/ |
grammar.rb | 174 command = build_command( options ) 246 def build_command( options ) method in class:ANTLR3.Test.Grammar
|
/external/toolchain-utils/bestflags/ |
task.py | 54 BUILD_COMMAND = None 61 def InitLogCommand(build_command, test_command, log_directory): 65 compile and test methods by passing different build_command and 69 build_command: The command that will be used in the build stage to compile 76 Task.BUILD_COMMAND = build_command 252 command = '%s %s %s' % (Task.BUILD_COMMAND, ' '.join(flags),
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
task.rb | 204 sh( build_command( grammar ) ) 207 def build_command( grammar ) method in class:ANTLR3.CompileTask.GrammarSet
|