HomeSort by relevance Sort by last modified time
    Searched refs:opt_name (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
mbo_getopt.h 16 const char * opt_name; member in struct:mbo_opt_struct
mbo_getopt.c 89 else if (opts[opts_idx].opt_name && !strcmp(&argv[*optind][2], opts[opts_idx].opt_name))
97 arg_start = 2 + strlen(opts[opts_idx].opt_name);
  /external/chromium_org/chrome/browser/extensions/api/file_system/
file_system_api_unittest.cc 157 std::string opt_name; local
161 opt_name = std::string("normal_path.txt");
162 FileSystemChooseEntryFunction::BuildSuggestion(&opt_name, &suggested_name,
169 opt_name = std::string("/a/bad/path");
170 FileSystemChooseEntryFunction::BuildSuggestion(&opt_name, &suggested_name,
179 opt_name = std::string("/");
180 FileSystemChooseEntryFunction::BuildSuggestion(&opt_name, &suggested_name,
file_system_api.h 139 static void BuildSuggestion(const std::string* opt_name,
file_system_api.cc 805 const std::string *opt_name,
808 if (opt_name) {
809 *suggested_name = base::FilePath::FromUTF8Unsafe(*opt_name);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
install.py 424 opt_name = opt[0]
425 if opt_name[-1] == "=":
426 opt_name = opt_name[0:-1]
427 if opt_name in self.negative_opt:
428 opt_name = string.translate(self.negative_opt[opt_name],
430 val = not getattr(self, opt_name)
432 opt_name = string.translate(opt_name, longopt_xlate
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
install.py 424 opt_name = opt[0]
425 if opt_name[-1] == "=":
426 opt_name = opt_name[0:-1]
427 if opt_name in self.negative_opt:
428 opt_name = string.translate(self.negative_opt[opt_name],
430 val = not getattr(self, opt_name)
432 opt_name = string.translate(opt_name, longopt_xlate
    [all...]
  /external/grub/docs/
help2man 61 my ($opt_name, @opt_include, $opt_output, $opt_no_info);
66 'n|name=s' => \$opt_name,
221 $include{NAME} = "$program \\- $opt_name\n" if $opt_name;
  /ndk/sources/host-tools/sed-4.2.1/build-aux/
help2man 73 my ($opt_name, @opt_include, $opt_output, $opt_info, $opt_no_info);
76 'n|name=s' => \$opt_name,
249 $include{NAME} = "$program \\- $opt_name\n" if $opt_name;
  /external/chromium_org/chrome/browser/resources/file_manager/common/js/
async_util.js 117 * @param {string=} opt_name Task identifier. Specify to use in dependencies.
119 AsyncUtil.Group.prototype.add = function(closure, opt_dependencies, opt_name) {
121 var name = opt_name || ('(unnamed#' + (length + 1) + ')');
  /external/chromium_org/v8/tools/
codemap.js 260 * @param {string} opt_name Code entry name.
263 CodeMap.CodeEntry = function(size, opt_name) {
265 this.name = opt_name || '';
  /external/v8/tools/
codemap.js 260 * @param {string} opt_name Code entry name.
263 CodeMap.CodeEntry = function(size, opt_name) {
265 this.name = opt_name || '';
  /external/chromium_org/chrome/renderer/resources/extensions/
messaging.js 39 function Port(portId, opt_name) {
41 this.name = opt_name;
104 function createPort(portId, opt_name) {
107 var port = new Port(portId, opt_name);

Completed in 264 milliseconds