/external/chromium_org/third_party/icu/source/tools/genccode/ |
genccode.c | 78 static UOption options[]={ variable 102 options[kOptDestDir].value = "."; 104 /* read command line options */ 105 argc=u_parseArgs(argc, argv, sizeof(options)/sizeof(options[0]), options); 113 if(argc<0 || options[kOptHelpH].doesOccur || options[kOptHelpQuestionMark].doesOccur) { 115 "usage: %s [-options] filename1 filename2 ...\n" 118 "options:\n [all...] |
/external/icu4c/tools/genccode/ |
genccode.c | 74 static UOption options[]={ variable 98 options[kOptDestDir].value = "."; 100 /* read command line options */ 101 argc=u_parseArgs(argc, argv, sizeof(options)/sizeof(options[0]), options); 109 if(argc<0 || options[kOptHelpH].doesOccur || options[kOptHelpQuestionMark].doesOccur) { 111 "usage: %s [-options] filename1 filename2 ...\n" 114 "options:\n [all...] |
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/ |
BitmapUtil.java | 33 final BitmapFactory.Options options = new BitmapFactory.Options(); local 36 options.inJustDecodeBounds = true; 37 BitmapFactory.decodeByteArray(bytes, 0, bytes.length, options); 40 return Math.min(options.outWidth, options.outHeight); 74 final BitmapFactory.Options options; local 76 options = null [all...] |
/external/ceres-solver/internal/ceres/ |
evaluator.cc | 49 Evaluator* Evaluator::Create(const Evaluator::Options& options, 52 switch (options.linear_solver_type) { 56 DenseJacobianWriter>(options, 63 BlockJacobianWriter>(options, 67 CompressedRowJacobianWriter>(options,
|
/external/chromium_org/tools/telemetry/telemetry/page/ |
results_options.py | 24 group = optparse.OptionGroup(parser, 'Results options') 46 def PrepareResults(test, options): 49 if options.output_format != 'none': 50 options.output_format = 'gtest' 52 if options.output_format == 'html' and not options.output_file: 53 options.output_file = os.path.join(util.GetBaseDir(), 'results.html') 55 if hasattr(options, 'output_file') and options.output_file: 56 output_file = os.path.expanduser(options.output_file [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
DecodeUtils.java | 23 import android.graphics.BitmapFactory.Options; 44 Options mOptions; 46 public DecodeCanceller(Options options) { 47 mOptions = options; 57 public static void setOptionsMutable(Options options) { 58 if (ApiHelper.HAS_OPTIONS_IN_MUTABLE) options.inMutable = true; 61 public static Bitmap decode(JobContext jc, FileDescriptor fd, Options options) { [all...] |
/external/chromium_org/build/android/ |
test_runner.py | 46 """Adds all common options to |option_parser|.""" 48 group = optparse.OptionGroup(option_parser, 'Common Options') 90 def ProcessCommonOptions(options): 91 """Processes and handles all common options.""" 92 run_tests_helper.SetLogLevel(options.verbose_count) 93 constants.SetBuildType(options.build_type) 97 """Adds gtest options to |option_parser|.""" 99 option_parser.usage = '%prog gtest [options]' 121 # TODO(gkanwar): Move these to Common Options once we have the plumbing 136 def ProcessGTestOptions(options) [all...] |
bb_run_sharded_steps.py | 30 options, urls = parser.parse_args(argv) 31 if options.print_results: 33 '--print-step', options.print_results]) 35 if options.flaky_steps: 36 flaky_options = ['--flaky-steps', options.flaky_steps] 38 '--steps', options.steps] + flaky_options)
|
findbugs_diff.py | 17 Other options 20 --findbugs-args used to passin other findbugs's options. 38 options, _ = parser.parse_args() 40 if not options.base_dir: 41 options.base_dir = os.path.join(constants.DIR_SOURCE_ROOT, 'build', 43 if not options.only_analyze: 44 options.only_analyze = 'org.chromium.-' 46 return findbugs.Run(options)
|
/bionic/libc/bionic/ |
wait.cpp | 32 extern "C" int __waitid(idtype_t which, id_t id, siginfo_t* info, int options, struct rusage* ru); 38 pid_t wait3(int* status, int options, struct rusage* rusage) { 39 return wait4(-1, status, options, rusage); 42 pid_t waitpid(pid_t pid, int* status, int options) { 43 return wait4(pid, status, options, NULL); 46 int waitid(idtype_t which, id_t id, siginfo_t* info, int options) { 48 return __waitid(which, id, info, options, NULL); 52 extern "C" pid_t __wait4(pid_t pid, int* status, int options, struct rusage* rusage) { 53 return wait4(pid, status, options, rusage);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/ |
tkCommonDialog.py | 17 def __init__(self, master=None, **options): 24 self.options = options 25 if not master and options.get('parent'): 26 self.master = options['parent'] 34 def show(self, **options): 36 # update instance options 37 for k, v in options.items(): 38 self.options[k] = v 42 # we need a dummy widget to properly process the options [all...] |
tkMessageBox.py | 10 # options (all have default values): 66 # Rename _icon and _type options to allow overriding them in options 67 def _show(title=None, message=None, _icon=None, _type=None, **options): 68 if _icon and "icon" not in options: options["icon"] = _icon 69 if _type and "type" not in options: options["type"] = _type 70 if title: options["title"] = title 71 if message: options["message"] = messag [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/ |
tkCommonDialog.py | 17 def __init__(self, master=None, **options): 24 self.options = options 25 if not master and options.get('parent'): 26 self.master = options['parent'] 34 def show(self, **options): 36 # update instance options 37 for k, v in options.items(): 38 self.options[k] = v 42 # we need a dummy widget to properly process the options [all...] |
tkMessageBox.py | 10 # options (all have default values): 66 # Rename _icon and _type options to allow overriding them in options 67 def _show(title=None, message=None, _icon=None, _type=None, **options): 68 if _icon and "icon" not in options: options["icon"] = _icon 69 if _type and "type" not in options: options["type"] = _type 70 if title: options["title"] = title 71 if message: options["message"] = messag [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/ |
commandtest.py | 35 def assert_execute_outputs(self, command, args=[], expected_stdout="", expected_stderr="", expected_exception=None, expected_logs=None, options=MockOptions(), tool=MockTool()): 36 options.blocks = None 37 options.cc = 'MOCK cc' 38 options.component = 'MOCK component' 39 options.confirm = True 40 options.email = 'MOCK email' 41 options.git_commit = 'MOCK git commit' 42 options.obsolete_patches = True 43 options.open_bug = True 44 options.port = 'MOCK port [all...] |
/external/chromium_org/tools/perf/benchmarks/ |
page_cycler.py | 14 options = {'pageset_repeat_iters': 10} variable in class:PageCyclerBloat 20 options = {'pageset_repeat_iters': 10} variable in class:PageCyclerDhtml 27 options = {'pageset_repeat_iters': 10} variable in class:PageCyclerIndexeddb 33 options = {'pageset_repeat_iters': 10} variable in class:PageCyclerIntlArFaHe 39 options = {'pageset_repeat_iters': 10} variable in class:PageCyclerIntlEsFrPtBr 45 options = {'pageset_repeat_iters': 10} variable in class:PageCyclerIntlHiRu 51 options = {'pageset_repeat_iters': 10} variable in class:PageCyclerIntlJaZh 57 options = {'pageset_repeat_iters': 10} variable in class:PageCyclerIntlKoThVi 63 options = {'pageset_repeat_iters': 10} variable in class:PageCyclerMorejs 69 options = {'pageset_repeat_iters': 10 variable in class:PageCyclerMoz 77 options = { variable in class:PageCyclerNetsimTop10 98 options = {'pageset_repeat_iters': 10} variable in class:PageCyclerTop10Mobile 104 options = {'pageset_repeat_iters': 10} variable in class:PageCyclerToughLayoutCases 112 options = {'pageset_repeat_iters': 10} variable in class:PageCyclerTypical25 [all...] |
/external/skia/tests/ |
AndroidPaintTest.cpp | 26 // We want to make sure that Android's paint options survive a flatten/unflatten round trip. 27 // These are all non-default options. 28 SkPaintOptionsAndroid options; local 29 options.setLanguage("ja-JP"); 30 options.setFontVariant(SkPaintOptionsAndroid::kElegant_Variant); 31 options.setUseFontFallbacks(true); 34 paint.setPaintOptionsAndroid(options); 39 REPORTER_ASSERT(reporter, options == reconstructed.getPaintOptionsAndroid()); 48 SkPaintOptionsAndroid options; local 49 options.setLanguage("ja-JP") 69 SkPaintOptionsAndroid options; local [all...] |
/external/openssh/ |
ssh.c | 155 * General data structure for command line options and options configurable 158 Options options; variable 320 initialize_options(&options); 332 options.protocol = SSH_PROTO_1; 335 options.protocol = SSH_PROTO_2; 338 options.address_family = AF_INET; 341 options.address_family = AF_INET6; 351 options.forward_x11 = 0 [all...] |
/external/v8/tools/ |
test-wrapper-gypbuild.py | 135 def ProcessOptions(options): 136 if options.arch_and_mode == ".": 137 options.arch = [] 138 options.mode = [] 140 if options.arch_and_mode != None and options.arch_and_mode != "": 141 tokens = options.arch_and_mode.split(".") 142 options.arch = tokens[0] 143 options.mode = tokens[1] 144 options.mode = options.mode.split(',' [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
run-blink-websocketserver | 74 options, args = option_parser.parse_args() 76 if not options.port: 77 if options.use_tls: 79 options.port = websocket_server._DEFAULT_WSS_PORT 82 options.port = websocket_server._DEFAULT_WS_PORT 84 if not options.output_dir: 85 options.output_dir = tempfile.gettempdir() 87 kwds = {'port': options.port, 'use_tls': options.use_tls} 88 if options.root [all...] |
run-blink-httpd | 48 def run(options): 49 if not options.server: 53 if (options.root is None) and (options.port is not None): 61 port_obj = host.port_factory.get(port_name='chromium', options=options) 64 port=options.port, 65 root=options.root, 66 run_background=options.run_background, 67 layout_tests_dir=options.layout_tests_dir [all...] |
/external/chromium_org/chrome/installer/util/ |
chrome_binaries_operations.cc | 19 std::set<string16>* options) const { 20 DCHECK(options); 21 options->insert(kOptionMultiInstall); 25 std::set<string16>* options) const { 26 DCHECK(options); 27 options->insert(kOptionMultiInstall); 31 const std::set<string16>& options, 38 const std::set<string16>& options, 43 const std::set<string16>& options, 47 DCHECK(options.find(kOptionMultiInstall) != options.end()) [all...] |
/external/chromium_org/build/android/gyp/ |
dex.py | 15 def DoDex(options, paths): 16 dx_binary = os.path.join(options.android_sdk_tools, 'dx') 18 dex_cmd = [dx_binary, '--dex', '--force-jumbo', '--output', options.dex_path] 19 if options.no_locals != '0': 23 record_path = '%s.md5.stamp' % options.dex_path 30 build_utils.Touch(options.dex_path) 52 options, paths = parser.parse_args() 54 if (options.proguard_enabled == 'true' 55 and options.configuration_name == 'Release'): 56 paths = [options.proguard_enabled_input_path [all...] |
/external/chromium_org/native_client_sdk/src/build_tools/ |
nacl-mono-archive.py | 36 (options, args) = parser.parse_args(args[1:]) 38 if not options.upload_path: 40 if not options.pepper_revision: 43 options.tar_path = options.tar_path.replace('%pepperrev%', 44 options.pepper_revision) 50 buildbot_common.RemoveFile(options.tar_path) 52 tar_file = tarfile.open(options.tar_path, mode='w:bz2', dereference=True) 54 tar_file.add(os.path.join(options.install_dir, subfolder), 60 if not options.skip_upload [all...] |
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/ |
net.js | 38 net.ajax = function(options) 41 var method = options.type || 'GET'; 43 xhr.open(method, options.url, async); 45 if (xhr.status == 200 && options.success) 46 options.success(xhr.responseText); 47 else if (xhr.status != 200 && options.error) 48 options.error(); 51 if (options.error) 52 options.error(); 54 var data = options.data || null [all...] |