Home
last modified time | relevance | path

Searched refs:xopt (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Modules/
Dmakexp_aix76 xopt=-X32_64
77 $NM -e $xopt $1 >/dev/null 2>&1 || xopt=""
79 $NM -Bex $xopt $inputFiles \
/external/python/cpython3/Modules/
Dmakexp_aix76 xopt=-X32_64
77 $NM -e $xopt $1 >/dev/null 2>&1 || xopt=""
79 $NM -Bex $xopt $inputFiles \
Dmain.c1887 const wchar_t *xopt = config_get_xoption(config, L"utf8"); in config_init_utf8_mode() local
1888 if (xopt) { in config_init_utf8_mode()
1889 wchar_t *sep = wcschr(xopt, L'='); in config_init_utf8_mode()
1891 xopt = sep + 1; in config_init_utf8_mode()
1892 if (wcscmp(xopt, L"1") == 0) { in config_init_utf8_mode()
1895 else if (wcscmp(xopt, L"0") == 0) { in config_init_utf8_mode()
/external/scapy/scapy/modules/
Dp0f.py265 xopt = x[4].split(",")
267 if len(xopt) == len(yopt):
269 for i in range(len(xopt)):
270 if not (xopt[i] == yopt[i] or
271 (len(yopt[i]) == 2 and len(xopt[i]) > 1 and
272 yopt[i][1] == "*" and xopt[i][0] == yopt[i][0]) or
273 (len(yopt[i]) > 2 and len(xopt[i]) > 1 and
274 yopt[i][1] == "%" and xopt[i][0] == yopt[i][0] and
275 int(xopt[i][1:]) % int(yopt[i][2:]) == 0)):
279 d += len(xopt)
/external/libpng/contrib/gregbook/
Dmakevms.com60 $ open/write xopt x11.opt
61 $ write xopt "sys$library:decw$xlibshr.exe/share"
62 $ close xopt
/external/libpng/contrib/pngminus/
Dmakevms.com35 $ open/write xopt x11.opt
36 $ write xopt "sys$library:decw$xlibshr.exe/share"
37 $ close xopt
/external/emma/core/java12/com/vladium/util/args/
DOptsParser.java385 final Opt xopt = opts.getOpt (excludes [x]); in parse() local
386 if (xopt != null) in parse()
387 …sage ("option \'" + opt.getName () + "\' cannot be used with option \'" + xopt.getName () + "\'")… in parse()
1562 final OptDef xopt = result.getOptDef (excludes [x], null); in parseOptDefMetadata() local
1563 if (xopt == null) in parseOptDefMetadata()
1566 if (xopt.isRequired ()) in parseOptDefMetadata()
1569 if (xopt == optdef) in parseOptDefMetadata()
/external/kmod/libkmod/
Dlibkmod-module.c1042 static char *module_options_concat(const char *opt, const char *xopt) in module_options_concat() argument
1046 size_t xoptlen = xopt == NULL ? 0 : strlen(xopt); in module_options_concat()
1060 if (xopt != NULL) in module_options_concat()
1061 memcpy(r + optlen, xopt, xoptlen); in module_options_concat()