/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/ |
.options | 1 # Debugging options for the org.eclipse.pde.build plug-in.
|
/external/iptables/extensions/ |
libipt_unclean.man | 1 This module takes no options, but attempts to match packets which seem
|
libxt_TCPOPTSTRIP.man | 1 This target will strip TCP options off a TCP packet. (It will actually replace 4 \fB\-\-strip\-options\fP \fIoption\fP[\fB,\fP\fIoption\fP...] 5 Strip the given option(s). The options may be specified by TCP option number or 6 by symbolic name. The list of recognized options can be obtained by calling
|
/external/openssh/contrib/suse/ |
sysconfig.ssh | 7 # Options for sshd
|
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
CommandLine.java | 33 static Hashtable options = new Hashtable(); static { field in class:CommandLine 34 options.put("--nocdata", Boolean.FALSE); // CDATA elements are normal 35 options.put("--files", Boolean.FALSE); // process arguments as separate files 36 options.put("--reuse", Boolean.FALSE); // reuse a single Parser 37 options.put("--nons", Boolean.FALSE); // no namespaces 38 options.put("--nobogons", Boolean.FALSE); // suppress unknown elements 39 options.put("--any", Boolean.FALSE); // unknowns have ANY content model 40 options.put("--emptybogons", Boolean.FALSE); // unknowns have EMPTY content model 41 options.put("--norootbogons", Boolean.FALSE); // unknowns can't be the root 42 options.put("--pyxin", Boolean.FALSE); // input is PY [all...] |
/ndk/tests/device/test-stlport_shared-exception/jni/ |
eb88.cpp | 2 // { dg-options "-w" }
|
eh7.cpp | 2 // { dg-options "-fexceptions" }
|
eh9.cpp | 2 // { dg-options "-fexceptions" }
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
eb88.cpp | 2 // { dg-options "-w" }
|
eh7.cpp | 2 // { dg-options "-fexceptions" }
|
eh9.cpp | 2 // { dg-options "-fexceptions" }
|
/external/chromium_org/build/android/gyp/ |
emma_instr.py | 36 """Adds common options to |option_parser|.""" 52 """Adds options related to instrumentation to |option_parser|.""" 66 def _RunCopyCommand(command, options, args, option_parser): 74 options: optparse options dictionary. 81 if not (options.input_path and options.output_path and 82 options.coverage_file and options.sources_file): 85 coverage_file = os.path.join(os.path.dirname(options.output_path) [all...] |
gcc_preprocess.py | 14 def DoGcc(options): 15 build_utils.MakeDirectory(os.path.dirname(options.output)) 18 if options.defines: 19 gcc_cmd.extend(sum(map(lambda w: ['-D', w], options.defines), [])) 25 '-I', options.include_path, 26 '-o', options.output, 27 options.template 44 options, _ = parser.parse_args() 46 DoGcc(options) 48 if options.stamp [all...] |
/external/openssh/ |
servconf.c | 60 /* Initializes the server options to their default values. */ 63 initialize_server_options(ServerOptions *options) 65 memset(options, 0, sizeof(*options)); 67 /* Portable-specific options */ 68 options->use_pam = -1; 70 /* Standard Options */ 71 options->num_ports = 0; 72 options->ports_from_cmdline = 0; 73 options->listen_addrs = NULL [all...] |
/external/chromium_org/tools/telemetry/telemetry/page/ |
page_filter_unittest.py | 41 options = MockUrlFilterOptions('conformance/textures', '') 42 page_filter = page_filter_module.PageFilter(options) 45 options = MockUrlFilterOptions('textures', '') 46 page_filter = page_filter_module.PageFilter(options) 49 options = MockUrlFilterOptions('somethingelse', '') 50 page_filter = page_filter_module.PageFilter(options) 55 options = MockUrlFilterOptions('somethingelse', '') 56 page_filter = page_filter_module.PageFilter(options) 59 options = MockUrlFilterOptions('textures_tex_sub_image', '') 60 page_filter = page_filter_module.PageFilter(options) [all...] |
/external/chromium_org/tools/telemetry/telemetry/ |
test.py | 20 options = {} variable in class:Test 32 def Run(self, options): 33 """Run this test with the given options.""" 38 for key, value in self.options.iteritems(): 39 setattr(options, key, value) 41 options.repeat_options = self._CreateRepeatOptions(options) 42 self.CustomizeBrowserOptions(options) 45 ps = self.CreatePageSet(options) 48 # Ensure the test's default options are set if needed [all...] |
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
XMPSerializerHelper.java | 17 import com.adobe.xmp.options.SerializeOptions; 35 * @param options serialization options, can be <code>null</code> for default. 39 SerializeOptions options) 42 options = options != null ? options : new SerializeOptions(); 45 if (options.getSort()) 49 new XMPSerializerRDF().serialize(xmp, out, options); 59 * @param options Options to control the serialization (se [all...] |
/external/chromium/chrome/browser/resources/options/ |
options.js | 5 var AddLanguageOverlay = options.AddLanguageOverlay; 6 var AdvancedOptions = options.AdvancedOptions; 7 var AlertOverlay = options.AlertOverlay; 8 var AutofillEditAddressOverlay = options.AutofillEditAddressOverlay; 9 var AutofillEditCreditCardOverlay = options.AutofillEditCreditCardOverlay; 10 var AutofillOptions = options.AutofillOptions; 11 var BrowserOptions = options.BrowserOptions; 12 var ClearBrowserDataOverlay = options.ClearBrowserDataOverlay; 13 var ContentSettings = options.ContentSettings; 15 options.contentSettings.ContentSettingsExceptionsArea [all...] |
/art/runtime/ |
runtime_test.cc | 38 Runtime::Options options; local 39 options.push_back(std::make_pair(boot_class_path.c_str(), null)); 40 options.push_back(std::make_pair("-classpath", null)); 41 options.push_back(std::make_pair(lib_core.c_str(), null)); 42 options.push_back(std::make_pair("-cp", null)); 43 options.push_back(std::make_pair(lib_core.c_str(), null)); 44 options.push_back(std::make_pair("-Ximage:boot_image", null)); 45 options.push_back(std::make_pair("-Xcheck:jni", null)); 46 options.push_back(std::make_pair("-Xms2048", null)) [all...] |
/external/jdiff/src/jdiff/ |
Options.java | 8 * Class to handle options for JDiff. 13 public class Options { 16 public Options() { 23 * parse the options it does not recognize. It then calls 27 * The options arrive as case-sensitive strings. For options that 38 // Standard options 57 // Options to control JDiff 62 // Options to control the location of the XML files 69 // Options for the exclusion level for classes and member [all...] |
/development/samples/training/bitmapfun/BitmapFun/src/main/java/com/example/android/bitmapfun/util/ |
ImageResizer.java | 119 final BitmapFactory.Options options = new BitmapFactory.Options(); local 120 options.inJustDecodeBounds = true; 121 BitmapFactory.decodeResource(res, resId, options); 124 options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight); 128 addInBitmapOptions(options, cache); 132 options.inJustDecodeBounds = false; 133 return BitmapFactory.decodeResource(res, resId, options); 150 final BitmapFactory.Options options = new BitmapFactory.Options(); local 181 final BitmapFactory.Options options = new BitmapFactory.Options(); local [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/ |
queries.py | 53 def execute(self, options, args, tool): 67 options = [ 82 AbstractDeclarativeCommand.__init__(self, options=options) 85 def execute(self, options, args, tool): 86 if not options.paths and not args and not options.all: 90 if options.platform: 91 port_names = fnmatch.filter(tool.port_factory.all_port_names(), options.platform) 93 default_port = tool.port_factory.get(options.platform [all...] |
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
t044trace.g | 1 // @@ANTLR Tool Options@@: -trace 3 options {
|
t045dfabug.g | 2 options { 9 options { backtrack=true; }
|
t049treeparserhWalker.g | 1 // @@ANTLR Tool Options@@: -trace 3 options {
|