/art/test/testrunner/ |
run_build_test_target.py | 66 build_command = 'make' variable 67 build_command += ' DX=' 68 build_command += ' -j' + str(n_threads) 69 build_command += ' -C ' + env.ANDROID_BUILD_TOP 70 build_command += ' ' + target.get('make') 72 build_command += ' dist' 73 sys.stdout.write(str(build_command) + '\n') 75 if subprocess.call(build_command.split()):
|
testrunner.py | [all...] |
/art/ |
test.py | 65 build_command = 'make' variable 66 build_command += ' -j' + str(options.n_threads) 68 build_command += ' -C ' + ANDROID_BUILD_TOP 69 build_command += ' ' + build_target 71 build_command += ' dist' 73 print build_command 75 if subprocess.call(build_command.split()):
|
/build/make/tools/releasetools/ |
build_image.py | 479 build_command = [] 523 build_command = [prop_dict["ext_mkuserimg"]] 525 build_command.append(prop_dict["extfs_sparse_flag"]) 527 build_command.extend([in_dir, out_file, fs_type, 529 build_command.append(prop_dict["partition_size"]) 531 build_command.extend(["-j", prop_dict["journal_size"]]) 533 build_command.extend(["-T", str(prop_dict["timestamp"])]) 535 build_command.extend(["-C", fs_config]) 537 build_command.extend(["-D", target_out]) 539 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
|