Home
last modified time | relevance | path

Searched full:prefix (Results 1 – 25 of 5148) sorted by relevance

12345678910>>...206

/third_party/curl/packages/vms/
Dcurlmsg.sdl21 /* "THE COMBINED LENGTH OF THE PREFIX AND THE MESSAGE SYMBOL NAME CANNOT
22 /* EXCEED 31 CHARACTERS." WITH A PREFIX OF FIVE THAT LEAVES US WITH 26
28 "FACILITY" EQUALS 3841 PREFIX "CURL" TAG ""
29 ,"OK" EQUALS %X0F018009 PREFIX "CURL" TAG ""
30 ,"UNSUPPORTED_PROTOCOL" EQUALS %X0F018012 PREFIX "CURL" TAG ""
31 ,"FAILED_INIT" EQUALS %X0F01801A PREFIX "CURL" TAG ""
32 ,"URL_MALFORMAT" EQUALS %X0F018022 PREFIX "CURL" TAG ""
33 ,"OBSOLETE4" EQUALS %X0F01802A PREFIX "CURL" TAG ""
34 ,"COULDNT_RESOLVE_PROXY" EQUALS %X0F018032 PREFIX "CURL" TAG ""
35 ,"COULDNT_RESOLVE_HOST" EQUALS %X0F01803A PREFIX "CURL" TAG ""
[all …]
/third_party/curl/tests/certs/scripts/
Dgenserv.sh13 USAGE="echo Usage is genserv.sh <prefix> <caprefix>"
27 PREFIX=$1
28 if [ ".$PREFIX" = . ] ; then
29 echo No configuration prefix
32 if [ ! -f $PREFIX-sv.prm ] ; then
33 echo No configuration file $PREFIX-sv.prm
40 echo No CA prefix
64 echo SERIAL=$SERIAL PREFIX=$PREFIX CAPREFIX=$CAPREFIX DURATION=$DURATION KEYSIZE=$KEYSIZE
67 echo "openssl dhparam -2 -out $PREFIX-sv.dhp $KEYSIZE"
68 $OPENSSL dhparam -2 -out $PREFIX-sv.dhp $KEYSIZE
[all …]
Dgenroot.sh23 PREFIX=$1
24 if [ ".$PREFIX" = . ] ; then
25 echo No configuration prefix
28 if [ ! -f $PREFIX-ca.prm ] ; then
29 echo No configuration file $PREFIX-ca.prm
43 echo SERIAL=$SERIAL PREFIX=$PREFIX DURATION=$DURATION KEYSIZE=$KEYSIZE
45 echo "openssl genrsa -out $PREFIX-ca.key $KEYSIZE -passout XXX"
46 openssl genrsa -out $PREFIX-ca.key $KEYSIZE -passout pass:secret
48 echo "openssl req -config $PREFIX-ca.prm -new -key $PREFIX-ca.key -out $PREFIX-ca.csr"
49 $OPENSSL req -config $PREFIX-ca.prm -new -key $PREFIX-ca.key -out $PREFIX-ca.csr -passin pass:secret
[all …]
/third_party/boost/boost/range/adaptor/
Dformatted.hpp29 template<typename Sep, typename Prefix, typename Postfix>
39 boost::is_array<Prefix>,
40 const typename boost::remove_extent<Prefix>::type*,
41 Prefix
52 const prefix_t& prefix, in formatted_holder()
55 , m_prefix(prefix) in formatted_holder()
65 template<typename Iter, typename Sep, typename Prefix, typename Postfix>
69 typedef formatted_holder<Sep,Prefix,Postfix> holder_t;
100 typename Prefix,
104 typename range_iterator<const SinglePassRange>::type, Sep, Prefix, Postfix
[all …]
/third_party/bzip2/
DMakefile27 PREFIX=/usr/local macro
73 if ( test ! -d $(PREFIX)/bin ) ; then mkdir -p $(PREFIX)/bin ; fi
74 if ( test ! -d $(PREFIX)/lib ) ; then mkdir -p $(PREFIX)/lib ; fi
75 if ( test ! -d $(PREFIX)/man ) ; then mkdir -p $(PREFIX)/man ; fi
76 if ( test ! -d $(PREFIX)/man/man1 ) ; then mkdir -p $(PREFIX)/man/man1 ; fi
77 if ( test ! -d $(PREFIX)/include ) ; then mkdir -p $(PREFIX)/include ; fi
78 cp -f bzip2 $(PREFIX)/bin/bzip2
79 cp -f bzip2 $(PREFIX)/bin/bunzip2
80 cp -f bzip2 $(PREFIX)/bin/bzcat
81 cp -f bzip2recover $(PREFIX)/bin/bzip2recover
[all …]
/third_party/boost/tools/boost_install/test/iostreams/bzip2-1.0.6/
DMakefile27 PREFIX=/usr/local macro
73 if ( test ! -d $(PREFIX)/bin ) ; then mkdir -p $(PREFIX)/bin ; fi
74 if ( test ! -d $(PREFIX)/lib ) ; then mkdir -p $(PREFIX)/lib ; fi
75 if ( test ! -d $(PREFIX)/man ) ; then mkdir -p $(PREFIX)/man ; fi
76 if ( test ! -d $(PREFIX)/man/man1 ) ; then mkdir -p $(PREFIX)/man/man1 ; fi
77 if ( test ! -d $(PREFIX)/include ) ; then mkdir -p $(PREFIX)/include ; fi
78 cp -f bzip2 $(PREFIX)/bin/bzip2
79 cp -f bzip2 $(PREFIX)/bin/bunzip2
80 cp -f bzip2 $(PREFIX)/bin/bzcat
81 cp -f bzip2recover $(PREFIX)/bin/bzip2recover
[all …]
/third_party/boost/tools/boost_install/test/iostreams/bzip2-1.0.8/
DMakefile27 PREFIX=/usr/local macro
73 if ( test ! -d $(PREFIX)/bin ) ; then mkdir -p $(PREFIX)/bin ; fi
74 if ( test ! -d $(PREFIX)/lib ) ; then mkdir -p $(PREFIX)/lib ; fi
75 if ( test ! -d $(PREFIX)/man ) ; then mkdir -p $(PREFIX)/man ; fi
76 if ( test ! -d $(PREFIX)/man/man1 ) ; then mkdir -p $(PREFIX)/man/man1 ; fi
77 if ( test ! -d $(PREFIX)/include ) ; then mkdir -p $(PREFIX)/include ; fi
78 cp -f bzip2 $(PREFIX)/bin/bzip2
79 cp -f bzip2 $(PREFIX)/bin/bunzip2
80 cp -f bzip2 $(PREFIX)/bin/bzcat
81 cp -f bzip2recover $(PREFIX)/bin/bzip2recover
[all …]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/parse/
DAffixMatcher.java24 private final AffixPatternMatcher prefix; field in AffixMatcher
30 * suffixes, ensuring that the longest prefix/suffix pair is always chosen.
35 if (length(lhs.prefix) != length(rhs.prefix)) {
36 return length(lhs.prefix) > length(rhs.prefix) ? -1 : 1;
40 // If the prefix and suffix are the same length, arbitrarily break ties.
112 // Generate Prefix in createMatchers()
119 AffixPatternMatcher prefix = AffixPatternMatcher in createMatchers() local
133 posPrefix = prefix; in createMatchers()
135 } else if (Objects.equals(prefix, posPrefix) && Objects.equals(suffix, posSuffix)) { in createMatchers()
145 matchers.add(getInstance(prefix, suffix, flags)); in createMatchers()
[all …]
/third_party/python/Lib/idlelib/idle_test/
Dtest_history.py31 self.assertIsNone(self.history.prefix)
51 self.history.prefix = line1
54 self.assertIsNone(self.history.prefix)
90 def fetch_test(self, reverse, line, prefix, index, *, bell=False): argument
102 Equal(History.prefix, prefix)
107 prefix = ''
109 test(True, line2, prefix, 1)
110 test(True, line1, prefix, 0)
111 test(True, prefix, None, None, bell=True)
114 prefix = ''
[all …]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/
DConstantAffixModifier.java11 * The canonical implementation of {@link Modifier}, containing a prefix and suffix string.
16 // TODO: Avoid making a new instance by default if prefix and suffix are empty
19 private final String prefix; field in ConstantAffixModifier
31 * @param prefix
32 * The prefix string.
41 public ConstantAffixModifier(String prefix, String suffix, Field field, boolean strong) { in ConstantAffixModifier() argument
43 // TODO: Consider returning a null modifier if both prefix and suffix are empty. in ConstantAffixModifier()
44 this.prefix = (prefix == null ? "" : prefix); in ConstantAffixModifier()
50 /** Constructs a new instance with an empty prefix, suffix, and field. */
52 prefix = ""; in ConstantAffixModifier()
[all …]
/third_party/boost/boost/spirit/home/x3/directive/
Dconfix.hpp16 template<typename Prefix, typename Subject, typename Postfix>
18 unary_parser<Subject, confix_directive<Prefix, Subject, Postfix>>
21 Subject, confix_directive<Prefix, Subject, Postfix>> base_type;
25 constexpr confix_directive(Prefix const& prefix in confix_directive()
29 prefix(prefix), in confix_directive()
42 if (!(prefix.parse(first, last, context, rcontext, unused) && in parse()
53 Prefix prefix; member
57 template<typename Prefix, typename Postfix>
62 Prefix, typename extension::as_parser<Subject>::value_type, Postfix>
65 return { prefix, as_parser(subject), postfix }; in operator []()
[all …]
/third_party/boost/boost/ratio/
Dratio_io.hpp28 static basic_string<CharT> prefix();
66 static std::basic_string<CharT> symbol() {return prefix();} in symbol()
67 static std::basic_string<CharT> prefix();
72 ratio_string<Ratio, CharT>::prefix() in prefix() function in boost::ratio_string
91 static std::string prefix() { in prefix() function
94 typename ratio_static_string<Ratio, CharT>::prefix in prefix()
118 static std::string prefix() {return std::string("atto");} in prefix() function
127 static std::u16string prefix() {return std::u16string(u"atto");} in prefix() function
134 static std::u32string prefix() {return std::u32string(U"atto");} in prefix() function
144 static std::wstring prefix() {return std::wstring(L"atto");} in prefix() function
[all …]
/third_party/flutter/skia/third_party/externals/freetype/builds/unix/
Dfreetype-config.in26 prefix=`%PKG_CONFIG% --variable prefix freetype2`
38 prefix="%prefix%"
55 orig_prefix=$prefix
61 include_suffix=`echo $includedir | sed "s|$prefix||"`
72 --prefix display \`--prefix' value used for building the
74 --prefix=PREFIX override \`--prefix' value with PREFIX
75 --exec-prefix display \`--exec-prefix' value used for building
77 --exec-prefix=EPREFIX override \`--exec-prefix' value with EPREFIX
108 --prefix=*)
109 prefix=$optarg
[all …]
/third_party/freetype/builds/unix/
Dfreetype-config.in26 prefix=`%PKG_CONFIG% --variable prefix freetype2`
38 prefix="%prefix%"
55 orig_prefix=$prefix
61 include_suffix=`echo $includedir | sed "s|$prefix||"`
72 --prefix display \`--prefix' value used for building the
74 --prefix=PREFIX override \`--prefix' value with PREFIX
75 --exec-prefix display \`--exec-prefix' value used for building
77 --exec-prefix=EPREFIX override \`--exec-prefix' value with EPREFIX
108 --prefix=*)
109 prefix=$optarg
[all …]
/third_party/python/Lib/lib2to3/fixes/
Dfix_idioms.py103 x.prefix = ""
104 T.prefix = " "
107 test.prefix = " "
109 test.prefix = node.prefix
114 one.replace(Name("True", prefix=one.prefix))
123 list_call.replace(Name("sorted", prefix=list_call.prefix))
126 new.prefix = ""
128 prefix=simple_expr.prefix))
133 btwn = sort_stmt.prefix
134 # Keep any prefix lines between the sort_stmt and the list_call and
[all …]
/third_party/flutter/skia/third_party/externals/freetype/docs/
Dfreetype-config.123 installation (directory path) prefix or the FreeType version number.
49 .B \-\-prefix
50 Return the prefix value of the installed FreeType library (the default
51 prefix will be `/usr' in most cases for distribution-installed
55 .B \-\-exec-prefix
56 Return the executable prefix value of the installed FreeType library
57 (will often be the same as the prefix value).
96 .BI \-\-prefix= PREFIX
98 .B \-\-prefix
100 .IR PREFIX .
[all …]
/third_party/freetype/docs/
Dfreetype-config.123 installation (directory path) prefix or the FreeType version number.
49 .B \-\-prefix
50 Return the prefix value of the installed FreeType library (the default
51 prefix will be `/usr' in most cases for distribution-installed
55 .B \-\-exec-prefix
56 Return the executable prefix value of the installed FreeType library
57 (will often be the same as the prefix value).
96 .BI \-\-prefix= PREFIX
98 .B \-\-prefix
100 .IR PREFIX .
[all …]
/third_party/libevdev/libevdev/
Dmake-event-names.py69 def print_bits(bits, prefix): argument
70 if not hasattr(bits, prefix):
72 print("static const char * const %s_map[%s_MAX + 1] = {" % (prefix, prefix.upper()))
73 for val, name in list(getattr(bits, prefix).items()):
75 if prefix == "key":
85 for prefix in prefixes:
86 if prefix in ["BTN_", "EV_", "INPUT_PROP_", "MT_TOOL_"]:
88 print(" [EV_%s] = %s_map," % (prefix[:-1], prefix[:-1].lower()))
103 prefix = bits.ev[val][3:]
104 if prefix + "_" in prefixes:
[all …]
/third_party/node/tools/node_modules/eslint/node_modules/@eslint/eslintrc/lib/shared/
Dnaming.js9 * Brings package name to correct format based on prefix
11 * @param {string} prefix Can be either "eslint-plugin", "eslint-config" or "eslint-formatter"
15 function normalizePackageName(name, prefix) { argument
31 * package name is the prefix, or just a username
33 const scopedPackageShortcutRegex = new RegExp(`^(@[^/]+)(?:/(?:${prefix})?)?$`, "u"),
34 scopedPackageNameRegex = new RegExp(`^${prefix}(-|$)`, "u");
37 normalizedName = normalizedName.replace(scopedPackageShortcutRegex, `$1/${prefix}`);
41 * for scoped packages, insert the prefix after the first / unless
44 normalizedName = normalizedName.replace(/^@([^/]+)\/(.*)$/u, `@$1/${prefix}-$2`);
46 } else if (!normalizedName.startsWith(`${prefix}-`)) {
[all …]
/third_party/node/deps/npm/lib/config/
Dload-prefix.js3 var findPrefix = require('find-npm-prefix')
9 Object.defineProperty(this, 'prefix',
11 set: function (prefix) { argument
13 this[g ? 'globalPrefix' : 'localPrefix'] = prefix
24 set: function (prefix) { argument
25 this.set('prefix', prefix)
28 return path.resolve(this.get('prefix'))
35 { set: function (prefix) { p = prefix }, argument
40 // If we are *explicitly* given a prefix on the cli, then
41 // always use that. otherwise, infer local prefix from cwd.
[all …]
/third_party/glib/glib/deprecated/
Dgcompletion.c75 * @prefix: the last prefix passed to g_completion_complete() or
77 * @cache: the list of items which begin with @prefix.
132 gcomp->prefix = NULL; in g_completion_new()
163 if (cmp->prefix) in g_completion_add_items()
165 g_free (cmp->prefix); in g_completion_add_items()
166 cmp->prefix = NULL; in g_completion_add_items()
230 g_free (cmp->prefix); in g_completion_clear_items()
231 cmp->prefix = NULL; in g_completion_clear_items()
253 len = strlen(cmp->prefix); in completion_check_cache()
274 strncpy (*new_prefix, cmp->prefix, len); in completion_check_cache()
[all …]
/third_party/node/test/fixtures/wpt/resources/
Dcheck-layout-th.js5 function checkSubtreeExpectedValues(t, parent, prefix) argument
7 var checkedLayout = checkExpectedValues(t, parent, prefix);
9 checkedLayout |= checkSubtreeExpectedValues(t, node, prefix);
28 function checkExpectedValues(t, node, prefix) argument
34 assert_tolerance(node.offsetWidth, expectedWidth, prefix + "width");
39 assert_tolerance(node.offsetHeight, expectedHeight, prefix + "height");
44 assert_tolerance(node.offsetLeft, expectedOffset, prefix + "offsetLeft");
49 assert_tolerance(node.offsetTop, expectedOffset, prefix + "offsetTop");
54 assert_tolerance(node.clientWidth, expectedWidth, prefix + "clientWidth");
59 assert_tolerance(node.clientHeight, expectedHeight, prefix + "clientHeight");
[all …]
/third_party/boost/boost/units/systems/si/
Dprefixes.hpp50 /*BOOST_UNITS_STATIC_CONSTANT(yocto,long double) = (1e-24); ///< metric prefix for 1.0e-24
51 BOOST_UNITS_STATIC_CONSTANT(zepto,long double) = (1e-21); ///< metric prefix for 1.0e-21
52 BOOST_UNITS_STATIC_CONSTANT(atto,long double) = (1e-18); ///< metric prefix for 1.0e-18
53 BOOST_UNITS_STATIC_CONSTANT(femto,long double) = (1e-15); ///< metric prefix for 1.0e-15
54 BOOST_UNITS_STATIC_CONSTANT(pico,long double) = (1e-12); ///< metric prefix for 1.0e-12
55 BOOST_UNITS_STATIC_CONSTANT(nano,long double) = (1e-9); ///< metric prefix for 1.0e-9
56 BOOST_UNITS_STATIC_CONSTANT(micro,long double) = (1e-6); ///< metric prefix for 1.0e-6
57 BOOST_UNITS_STATIC_CONSTANT(milli,long double) = (1e-3); ///< metric prefix for 1.0e-3
58 BOOST_UNITS_STATIC_CONSTANT(centi,long double) = (1e-2); ///< metric prefix for 1.0e-2
59 BOOST_UNITS_STATIC_CONSTANT(deci,long double) = (1e-1); ///< metric prefix for 1.0e-1
[all …]
/third_party/node/deps/npm/node_modules/global-dirs/
Dindex.js9 return ini.parse(fs.readFileSync(fp, 'utf8')).prefix;
14 if (process.env.PREFIX) {
15 return process.env.PREFIX;
19 // `c:\node\node.exe` → `prefix=c:\node\`
23 // `/usr/local/bin/node` → `prefix=/usr/local`
28 if (process.env.PREFIX) {
29 return process.env.PREFIX;
44 const prefix = path.join(process.env.APPDATA, 'npm'); constant
45 if (fs.existsSync(prefix)) {
46 return prefix;
[all …]
/third_party/boost/tools/build/src/tools/
Dpackage.jam22 # given by command line options --prefix, --exec-prefix, --bindir, --libdir and
44 feature.feature install-default-prefix : : free incidental ;
53 rule __init__ ( default-prefix )
55 local explicit-options = [ MATCH --(prefix|bindir|libdir|includedir|datarootdir)=.*
58 if prefix in $(explicit-options)
60 # If --prefix is explicitly specified on the command line,
69 handle-path prefix : $(default-prefix) ;
70 handle-path libdir : $(self.prefix)/lib ;
71 handle-path bindir : $(self.prefix)/bin ;
72 handle-path includedir : $(self.prefix)/include ;
[all …]

12345678910>>...206