HomeSort by relevance Sort by last modified time
    Searched refs:options (Results 351 - 375 of 4325) sorted by null

<<11121314151617181920>>

  /prebuilts/tools/gcc-sdk/
size 15 options=" ${@} " # sentinel prefix/suffix space to simplify pattern match below
17 suffix_m32=${options##* -m32 } # suffix after the last -m32
18 suffix_m64=${options##* -m64 } # suffix after the last -m64
strings 15 options=" ${@} " # sentinel prefix/suffix space to simplify pattern match below
17 suffix_m32=${options##* -m32 } # suffix after the last -m32
18 suffix_m64=${options##* -m64 } # suffix after the last -m64
strip 15 options=" ${@} " # sentinel prefix/suffix space to simplify pattern match below
17 suffix_m32=${options##* -m32 } # suffix after the last -m32
18 suffix_m64=${options##* -m64 } # suffix after the last -m64
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
main.py 36 def __init__(self, fixers, options, explicit, nobackups, show_diffs,
41 options: A dict with RefactoringTool configuration.
63 super(StdoutRefactoringTool, self).__init__(fixers, options, explicit)
145 parser = optparse.OptionParser(usage="2to3 [options] file|dir ...")
180 options, args = parser.parse_args(args)
181 if options.write_unchanged_files:
183 if not options.write:
185 options.write = True
188 if options.output_dir and not options.nobackups
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
main.py 36 def __init__(self, fixers, options, explicit, nobackups, show_diffs,
41 options: A dict with RefactoringTool configuration.
63 super(StdoutRefactoringTool, self).__init__(fixers, options, explicit)
145 parser = optparse.OptionParser(usage="2to3 [options] file|dir ...")
180 options, args = parser.parse_args(args)
181 if options.write_unchanged_files:
183 if not options.write:
185 options.write = True
188 if options.output_dir and not options.nobackups
    [all...]
  /external/chromium_org/chrome/browser/resources/options/
language_options.css 5 .language-options {
10 .language-options-lower-left button,
11 #language-options-details button {
15 .language-options h3 {
23 .language-options-contents {
28 .language-options-contents > span:not(.input-method-label) {
34 .language-options-header,
35 .language-options-footer {
40 #language-options-languages,
41 #language-options-details
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
tree-rewrite.rb 10 options {
22 options {
34 options {
46 options {
57 options {
69 options {
80 options {
92 options {
103 options {
115 options {
    [all...]
  /external/chromium_org/build/android/
update_verification.py 105 (options, args) = parser.parse_args()
115 if options.from_apk:
116 assert os.path.isfile(options.from_apk)
118 if options.save:
119 if not options.package_name:
122 _SaveAppData(adb, options.package_name, from_apk=options.from_apk,
123 data_dir=options.app_data)
125 if not options.to_apk or not options.app_data
    [all...]
  /external/chromium_org/chrome/browser/resources/image_loader/
image_loader.js 99 * Checks if the options contain any image processing.
103 * @param {Object} options Resizing options as a hash array.
106 ImageLoader.shouldProcess = function(width, height, options) {
107 var targetDimensions = ImageLoader.resizeDimensions(width, height, options);
114 if (options.orientation)
122 * Calculates dimensions taking into account resize options, such as:
130 * @param {Object} options Resizing options as a hash array.
133 ImageLoader.resizeDimensions = function(width, height, options) {
    [all...]
  /external/icu4c/tools/icuinfo/
icuinfo.cpp 38 static UOption options[]={ variable
214 /* preset then read command line options */
215 argc=u_parseArgs(argc, argv, sizeof(options)/sizeof(options[0]), options);
223 if( options[0].doesOccur || options[1].doesOccur) {
225 fprintf(stderr, "Options:\n"
239 if(options[2].doesOccur) {
240 u_setDataDirectory(options[2].value)
    [all...]
  /packages/apps/DeskClock/src/com/android/alarmclock/
WidgetUtils.java 43 public static float getScaleRatio(Context context, Bundle options, int id) {
44 if (options == null) {
50 options = widgetManager.getAppWidgetOptions(id);
52 if (options != null) {
53 int minWidth = options.getInt(AppWidgetManager.OPTION_APPWIDGET_MIN_WIDTH);
62 int minHeight = options.getInt(AppWidgetManager.OPTION_APPWIDGET_MIN_HEIGHT);
65 ratio = Math.min(ratio, getHeightScaleRatio(context, options, id));
73 private static float getHeightScaleRatio(Context context, Bundle options, int id) {
74 if (options == null) {
80 options = widgetManager.getAppWidgetOptions(id)
111 Bundle options = widgetManager.getAppWidgetOptions(id); local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
TileImageViewAdapter.java 116 BitmapFactory.Options options = new BitmapFactory.Options(); local
117 options.inPreferredConfig = Config.ARGB_8888;
118 options.inPreferQualityOverSpeed = true;
119 options.inSampleSize = (1 << level);
120 options.inBitmap = bitmap;
125 bitmap = regionDecoder.decodeRegion(wantRegion, options);
128 if (options.inBitmap != bitmap && options.inBitmap != null)
155 BitmapFactory.Options options = new BitmapFactory.Options(); local
    [all...]
  /external/oprofile/pp/
opreport.cpp 48 return options::reverse_sort
98 return options::reverse_sort
204 if (!options::show_header)
220 return options::long_filenames ? filename : op_basename(filename);
236 if (!options::show_header)
305 count_type tot_count = options::global_percent
328 < options::threshold) {
348 if (options::show_address)
351 if (options::debug_info)
354 if (options::accumulated)
    [all...]
  /external/chromium_org/content/public/test/
test_browser_thread_bundle.cc 18 TestBrowserThreadBundle::TestBrowserThreadBundle(int options) {
19 Init(options);
55 void TestBrowserThreadBundle::Init(int options) {
56 if (options & IO_MAINLOOP) {
65 if (options & REAL_DB_THREAD) {
73 if (options & REAL_FILE_THREAD) {
81 if (options & REAL_FILE_USER_BLOCKING_THREAD) {
91 if (options & REAL_PROCESS_LAUNCHER_THREAD) {
101 if (options & REAL_CACHE_THREAD) {
109 if (options & REAL_IO_THREAD)
    [all...]
  /external/chromium_org/media/tools/constrained_network_server/
cn.py 61 parser.usage = ('usage: %%prog {%s} [options]\n\n%s' %
80 options, args = parser.parse_args()
82 _SetLogger(options.verbose)
89 # Check if required options are available
91 if not (options.port and options.server_port):
95 'port': options.port,
96 'server_port': options.server_port,
97 'interface': options.interface,
98 'latency': options.latency
    [all...]
  /external/chromium_org/mojo/tools/
mojob.sh 28 Build/test options (specified before build/test/perftest):
32 Compiler options (specified before gyp):
35 Component options:
83 local options=()
84 # Always include these options.
85 options+=("use_aura=1")
88 options+=("clang=1")
91 options+=("clang=0")
96 options+=("component=shared_library")
99 options+=("component=static_library"
    [all...]
  /external/chromium_org/native_client_sdk/src/tools/
run.py 25 usage = """usage: %prog [options] -- executable args...
50 options, args = parser.parse_args(args)
55 server = httpd.LocalHTTPServer(options.serve_dir, options.port,
56 options.test_mode)
57 print 'Serving %s on %s...' % (options.serve_dir, server.GetURL(''))
60 for e in options.environ:
64 cmd = args + [server.GetURL(options.path)]
69 if options.debug:
72 cmd += options.debu
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
generatePatchCommand.pl 46 $title = "generatePatchCommand: Undefined options.";
48 my $options;
49 $argsHashRef = {options => $options};
58 $argsHashRef = {options => ["--force"]};
84 $argsHashRef = {options => ["--fuzz=3", "--force"]};
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
localaudiosource_unittest.cc 56 LocalAudioSource::Create(PeerConnectionFactoryInterface::Options(),
60 EXPECT_TRUE(source->options().echo_cancellation.Get(&value));
62 EXPECT_TRUE(source->options().experimental_aec.Get(&value));
64 EXPECT_TRUE(source->options().auto_gain_control.Get(&value));
66 EXPECT_TRUE(source->options().experimental_agc.Get(&value));
68 EXPECT_TRUE(source->options().noise_suppression.Get(&value));
70 EXPECT_TRUE(source->options().highpass_filter.Get(&value));
77 LocalAudioSource::Create(PeerConnectionFactoryInterface::Options(),
80 EXPECT_FALSE(source->options().highpass_filter.Get(&value));
89 LocalAudioSource::Create(PeerConnectionFactoryInterface::Options(),
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
java_helpers.h 123 return descriptor->file()->options().optimize_for() !=
125 descriptor->file()->options().retain_unknown_fields();
131 return descriptor->file()->options().optimize_for() !=
137 return descriptor->file()->options().java_generate_equals_and_hash();
142 return descriptor->file()->options().optimize_for() !=
146 return descriptor->file()->options().optimize_for() !=
150 return descriptor->options().optimize_for() !=
156 return descriptor->file()->options().optimize_for() !=
163 file->options().optimize_for() != FileOptions::LITE_RUNTIME &&
164 file->options().java_generic_services()
    [all...]
  /external/chromium_org/tools/checklicenses/
checklicenses.py 386 def check_licenses(options, args):
390 start_dir = options.base_directory
394 start_dir = os.path.abspath(os.path.join(options.base_directory, args[0]))
400 print "Using base directory:", options.base_directory
404 licensecheck_path = os.path.abspath(os.path.join(options.base_directory,
415 if options.verbose:
431 filename = os.path.relpath(filename.strip(), options.base_directory)
448 if not options.ignore_suppressions:
501 options, args = option_parser.parse_args()
502 return check_licenses(options, args
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
ArchiveCommandLine.cpp 529 static void ParseUpdateCommandString(CUpdateOptions &options,
538 if (options.UpdateArchiveItself)
540 options.UpdateArchiveItself = false;
541 options.Commands.Delete(0);
553 if (options.UpdateArchiveItself)
554 options.Commands[0].ActionSet = actionSet;
566 options.Commands.Add(uc);
620 CUpdateOptions &options)
635 options.UpdateArchiveItself = true;
637 options.Commands.Clear();
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPMetaParser.java 35 import com.adobe.xmp.options.ParseOptions;
49 /** the DOM Parser Factory, options are set */
68 * @param options the parse options
72 public static XMPMeta parse(Object input, ParseOptions options) throws XMPException
75 options = options != null ? options : new ParseOptions();
77 Document document = parseXml(input, options);
79 boolean xmpmetaRequired = options.getRequireXMPMeta()
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/page/
page_runner_unittest.py 58 options = options_for_unittests.GetCopy()
59 options.output_format = 'none'
60 results = page_runner.Run(Test('RunTest'), ps, expectations, options)
86 options = options_for_unittests.GetCopy()
87 options.output_format = 'none'
89 results = page_runner.Run(test, ps, expectations, options)
105 options = options_for_unittests.GetCopy()
106 options.output_format = 'none'
108 Test('RunTest'), ps, expectations, options)
128 options = options_for_unittests.GetCopy(
    [all...]
profile_generator.py 38 def GenerateProfiles(profile_creator_class, profile_creator_name, options):
44 options.output_profile_path = temp_output_directory
46 results = page_runner.Run(test, test.page_set, expectations, options)
56 generated_profiles_dir = os.path.abspath(options.output_dir)
85 options = browser_options.BrowserFinderOptions()
86 parser = options.CreateParser(
91 group = optparse.OptionGroup(parser, 'Profile generation options')
105 if not options.profile_type_to_generate:
108 if options.profile_type_to_generate not in profile_creators.keys():
112 if not options.browser_type
    [all...]

Completed in 4460 milliseconds

<<11121314151617181920>>