Home
last modified time | relevance | path

Searched refs:init (Results 1 – 25 of 4896) sorted by relevance

12345678910>>...196

/third_party/openssl/include/internal/
Dthread_once.h26 #define DEFINE_RUN_ONCE(init) \ argument
27 static int init(void); \
28 int init##_ossl_ret_ = 0; \
29 void init##_ossl_(void) \
31 init##_ossl_ret_ = init(); \
33 static int init(void)
39 #define DECLARE_RUN_ONCE(init) \ argument
40 extern int init##_ossl_ret_; \
41 void init##_ossl_(void);
58 #define DEFINE_RUN_ONCE_STATIC(init) \ argument
[all …]
/third_party/typescript_eslint/packages/eslint-plugin/src/rules/
Dno-inferrable-types.ts53 init: TSESTree.Expression,
56 if (init.type === AST_NODE_TYPES.ChainExpression) {
57 return isFunctionCall(init.expression, callName);
61 init.type === AST_NODE_TYPES.CallExpression &&
62 init.callee.type === AST_NODE_TYPES.Identifier &&
63 init.callee.name === callName
66 function isLiteral(init: TSESTree.Expression, typeName: string): boolean {
68 init.type === AST_NODE_TYPES.Literal && typeof init.value === typeName
72 init: TSESTree.Expression,
76 init.type === AST_NODE_TYPES.Identifier && names.includes(init.name)
[all …]
/third_party/boost/boost/compute/algorithm/
Daccumulate.hpp35 T init, in generic_accumulate() argument
43 return init; in generic_accumulate()
49 first, last, device_result.begin(), init, function, queue in generic_accumulate()
63 inline bool can_accumulate_with_reduce(T init, F function) in can_accumulate_with_reduce() argument
65 (void) init; in can_accumulate_with_reduce()
73 inline bool can_accumulate_with_reduce(type init, plus<type>) \
75 return init == type(0); \
77 inline bool can_accumulate_with_reduce(type init, multiplies<type>) \
79 return init == type(1); \
89 inline bool can_accumulate_with_reduce(T init, min<T>) in can_accumulate_with_reduce() argument
[all …]
/third_party/node/test/async-hooks/
Dtest-tcpwrap.js36 checkInvocations(tcpserver, { init: 1 }, 'when calling server.listen'); property
57 checkInvocations(tcpserver, { init: 1 }, property
59 checkInvocations(tcp1, { init: 1 }, 'tcp1 when client is connecting'); property
74 { init: 1, before: 1, after: 1 } :
75 { init: 1, before: 1 };
91 const expected = serverConnection ? { init: 1 } : { init: 1, before: 1 };
102 { init: 1, before: 1, after: 1 } :
103 { init: 1 };
105 checkInvocations(tcp1, { init: 1 }, 'tcp1 when client connects'); property
121 checkInvocations(tcpserver, { init: 1, before: 1 }, property
[all …]
Dtest-tlswrap.js50 checkInvocations(svr, { init: 1 }, 'server: when client connecting'); property
67 checkInvocations(svr, { init: 1, before: 1, after: 1 }, property
70 checkInvocations(client, { init: 1, before: 2, after: 1 }, property
78 checkInvocations(svr, { init: 1, before: 2, after: 1 }, property
80 checkInvocations(client, { init: 1, before: 2, after: 2 }, property
87 checkInvocations(svr, { init: 1, before: 2, after: 1 }, property
89 checkInvocations(client, { init: 1, before: 2, after: 2 }, property
94 checkInvocations(svr, { init: 1, before: 2, after: 2 }, property
103 checkInvocations(client, { init: 1, before: 3, after: 3 }, property
110 checkInvocations(svr, { init: 1, before: 2, after: 2 }, property
[all …]
Dtest-embedder.api.async-resource.js44 checkInvocations(alcazares, { init: 1 }, 'alcazares constructed'); property
51 checkInvocations(alcazares, { init: 1, before: 1 }, property
54 checkInvocations(alcazares, { init: 1, before: 1, after: 1 }, property
57 checkInvocations(alcazares, { init: 1, before: 2, after: 1 }, property
60 checkInvocations(alcazares, { init: 1, before: 2, after: 2 }, property
66 checkInvocations(alcazares, { init: 1, before: 2, after: 2, destroy: 1 }, property
77 checkInvocations(poblado, { init: 1 }, 'poblado constructed'); property
79 checkInvocations(poblado, { init: 1, before: 1 }, property
83 checkInvocations(poblado, { init: 1, before: 1, after: 1 }, property
93 alcazares, { init: 1, before: 2, after: 2, destroy: 1 }, property
[all …]
Dtest-enable-disable.js166 checkInvocations(as1[0], { init: 1, before: 1 }, property
168 checkInvocations(as3[0], { init: 1, before: 1 }, property
215 checkInvocations(hook1First, { init: 1, before: 1, after: 1, destroy: 1 }, property
217 checkInvocations(hook1Second, { init: 1, before: 1 }, property
223 checkInvocations(hook2Second, { init: 1, before: 1 }, property
225 checkInvocations(hook3First, { init: 1, before: 1, after: 1, destroy: 1 }, property
227 checkInvocations(hook3Second, { init: 1, before: 1 }, property
249 checkInvocations(hook1First, { init: 1, before: 1, after: 1, destroy: 1 }, property
253 checkInvocations(hook1Second, { init: 1, before: 1 }, property
259 checkInvocations(hook2Second, { init: 1, before: 1, after: 1, destroy: 1 }, property
[all …]
/third_party/node/deps/npm/test/tap/
Dinit-create.js26 var init = requireInject('../../lib/init', {
31 init(['name'], function () {})
43 var init = requireInject('../../lib/init', {
51 init(['@scope'], function () {})
57 init(['@scope/name'], function () {})
69 var init = requireInject('../../lib/init', {
77 init(['name@1.2.3'], function () {})
83 init(['name@^1.2.3'], function () {})
95 var init = requireInject('../../lib/init', {
103 init(['user/foo'], function () {})
[all …]
/third_party/boost/boost/spirit/home/classic/phoenix/
Dtuples.hpp556 tuple(TupleT const& init) in tuple()
557 : a(init[tuple_index<0>()]) in tuple()
597 tuple(TupleT const& init) in tuple()
598 : a(init[tuple_index<0>()]), b(init[tuple_index<1>()]) in tuple()
640 tuple(TupleT const& init) in tuple()
641 : a(init[tuple_index<0>()]), b(init[tuple_index<1>()]), in tuple()
642 c(init[tuple_index<2>()]) in tuple()
683 tuple(TupleT const& init) in tuple()
684 : a(init[tuple_index<0>()]), b(init[tuple_index<1>()]), in tuple()
685 c(init[tuple_index<2>()]), d(init[tuple_index<3>()]) in tuple()
[all …]
/third_party/node/deps/npm/node_modules/node-fetch-npm/src/
Drequest.js26 constructor (input, init) { argument
27 if (!init) init = {}
46 let method = init.method || input.method || 'GET'
48 if ((init.body != null || (input instanceof Request && input.body !== null)) &&
53 let inputBody = init.body != null
54 ? init.body
60 timeout: init.timeout || input.timeout || 0,
61 size: init.size || input.size || 0
66 this.redirect = init.redirect || input.redirect || 'follow'
67 this.headers = new Headers(init.headers || input.headers || {})
[all …]
/third_party/python/Lib/test/test_importlib/
Dtest_api.py3 init = test_util.import_importlib('importlib') variable
23 module = self.init.import_module('top_level')
33 module = self.init.import_module(name)
45 self.init.import_module(pkg_name)
46 module = self.init.import_module(relative_name, pkg_name)
53 self.init.import_module('a')
54 self.init.import_module('a.b')
55 module = self.init.import_module('..c', 'a.b')
66 self.init.import_module(pkg_name)
67 module = self.init.import_module(name, pkg_name)
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/crosstest/
Dmem_intrin.cpp19 reset_buf(uint8_t *buf, uint8_t init, SizeT length) { in reset_buf() argument
21 SizeT v = init; in reset_buf()
43 int memcpy_test(uint8_t *buf, uint8_t *buf2, uint8_t init, SizeT length) { in memcpy_test() argument
44 reset_buf(buf, init, length); in memcpy_test()
49 int memmove_test(uint8_t *buf, uint8_t *buf2, uint8_t init, SizeT length) { in memmove_test() argument
57 reset_buf(buf, init, length); in memmove_test()
68 int memset_test(uint8_t *buf, uint8_t *buf2, uint8_t init, SizeT length) { in memset_test() argument
69 memset((void *)buf, init, length); in memset_test()
70 memset((void *)buf2, init + 4, length); in memset_test()
75 int memcpy_test_fixed_len_##NBYTES(uint8_t init) { \
[all …]
/third_party/node/deps/npm/docs/content/cli-commands/
Dnpm-init.md3 title: npm-init
7 # npm-init(1)
13 npm init [--force|-f|--yes|-y|--scope]
14 npm init <@scope> (same as `npx <@scope>/create`)
15 npm init [<@scope>/]<name> (same as `npx [<@scope>/]create-<name>`)
22 $ npm init react-app ./my-react-app
28 $ npm init esm --yes
31 Generate a plain old package.json using legacy init:
34 $ git init
35 $ npm init
[all …]
/third_party/ltp/testscripts/
Dautofs1.sh137 /etc/init.d/autofs start
141 echo "FAILED: "/etc/init.d/autofs start""
147 /etc/init.d/autofs stop
151 echo "FAILED: "/etc/init.d/autofs stop""
154 /etc/init.d/autofs start
159 /etc/init.d/autofs restart
162 /etc/init.d/autofs stop
164 echo "FAILED: "/etc/init.d/autofs restart""
170 /etc/init.d/autofs status
173 /etc/init.d/autofs stop
[all …]
Dautofs4.sh129 /etc/init.d/autofs start >/dev/null 2>&1
133 echo "FAILED: "/etc/init.d/autofs start""
139 /etc/init.d/autofs stop >/dev/null 2>&1
143 echo "FAILED: "/etc/init.d/autofs stop""
146 /etc/init.d/autofs start >/dev/null 2>&1
150 /etc/init.d/autofs restart >/dev/null 2>&1
153 /etc/init.d/autofs stop >/dev/null 2>&1
155 echo "FAILED: "/etc/init.d/autofs restart""
161 /etc/init.d/autofs status >/dev/null 2>&1
164 /etc/init.d/autofs stop >/dev/null 2>&1
[all …]
/third_party/skia/third_party/externals/icu/source/data/zone/
Dceb.txt19 ld{"Oras sa Tag-init sa British"}
34 ld{"Oras sa Tag-init sa West Africa"}
39 ld{"Oras sa Tag-init sa Alaska"}
44 ld{"Oras sa Tag-init sa Amazon"}
49 ld{"Sentrong Oras sa Tag-init"}
54 ld{"Oras sa Tag-init sa Sidlakan"}
59 ld{"Oras sa Tag-init sa Kabukiran"}
64 ld{"Oras sa Tag-init sa Pasipiko"}
69 ld{"Oras sa Tag-init sa Apia"}
74 ld{"Oras sa Tag-init sa Arabia"}
[all …]
/third_party/boost/boost/algorithm/cxx17/
Dtransform_reduce.hpp28 InputIterator2 first2, T init, in transform_reduce() argument
32 init = bOp1(init, bOp2(*first1, *first2)); in transform_reduce()
33 return init; in transform_reduce()
39 T init, BinaryOperation bOp, UnaryOperation uOp) in transform_reduce() argument
42 init = bOp(init, uOp(*first)); in transform_reduce()
43 return init; in transform_reduce()
48 InputIterator2 first2, T init) in transform_reduce() argument
50 return boost::algorithm::transform_reduce(first1, last1, first2, init, in transform_reduce()
Dreduce.hpp26 T reduce(InputIterator first, InputIterator last, T init, BinaryOperation bOp) in reduce() argument
30 init = bOp(init, *first); in reduce()
31 return init; in reduce()
35 T reduce(InputIterator first, InputIterator last, T init) in reduce() argument
38 return boost::algorithm::reduce(first, last, init, std::plus<VT>()); in reduce()
58 T reduce(const Range &r, T init) in reduce() argument
60 return boost::algorithm::reduce(boost::begin (r), boost::end (r), init); in reduce()
66 T reduce(const Range &r, T init, BinaryOperation bOp) in reduce() argument
68 return boost::algorithm::reduce(boost::begin(r), boost::end(r), init, bOp); in reduce()
/third_party/icu/icu4c/source/data/zone/
Dceb.txt16 ld{"Oras sa Tag-init sa British"}
31 ld{"Oras sa Tag-init sa West Africa"}
36 ld{"Oras sa Tag-init sa Alaska"}
41 ld{"Oras sa Tag-init sa Amazon"}
46 ld{"Sentrong Oras sa Tag-init"}
51 ld{"Oras sa Tag-init sa Sidlakan"}
56 ld{"Oras sa Tag-init sa Kabukiran"}
61 ld{"Oras sa Tag-init sa Pasipiko"}
66 ld{"Oras sa Tag-init sa Apia"}
76 ld{"Oras sa Tag-init sa Argentina"}
[all …]
/third_party/typescript/tests/baselines/reference/
DgenericFunctionParameters.types43 declare const s: <R>(go: <S>(ops: { init(): S; }) => R) => R;
44 >s : <R>(go: <S>(ops: { init(): S; }) => R) => R
45 >go : <S>(ops: { init(): S; }) => R
46 >ops : { init(): S; }
47 >init : () => S
49 const x = s(a => a.init()); // x is any, should have been {}
51 >s(a => a.init()) : unknown
52 >s : <R>(go: <S>(ops: { init(): S; }) => R) => R
53 >a => a.init() : <S>(a: { init(): S; }) => S
54 >a : { init(): S; }
[all …]
DmixinIntersectionIsValidbaseType.types7 init(...args: any[]): void;
8 >init : (...args: any[]) => void
16 …ny[]): SerializableLocal; prototype: Serializable<any>.SerializableLocal; init(...args: any[]): vo…
17 …ny[]): SerializableLocal; prototype: Serializable<any>.SerializableLocal; init(...args: any[]): vo…
24 …ny[]): SerializableLocal; prototype: Serializable<any>.SerializableLocal; init(...args: any[]): vo…
25 …ny[]): SerializableLocal; prototype: Serializable<any>.SerializableLocal; init(...args: any[]): vo…
29 …ny[]): SerializableLocal; prototype: Serializable<any>.SerializableLocal; init(...args: any[]): vo…
30 …ny[]): SerializableLocal; prototype: Serializable<any>.SerializableLocal; init(...args: any[]): vo…
35 …ny[]): SerializableLocal; prototype: Serializable<any>.SerializableLocal; init(...args: any[]): vo…
36 …ny[]): SerializableLocal; prototype: Serializable<any>.SerializableLocal; init(...args: any[]): vo…
[all …]
/third_party/boost/libs/python/doc/reference/
Dinit.qbk1 [section boost/python/init.hpp]
3 <boost/python/init.hpp> defines the interface for exposing C++ constructors to Python as extension …
4 [section init-expressions]
5 An init-expression is used to describe a family of `__init__` methods to be generated for an extens…
10 …argument types which will be used to construct the wrapped C++ object. An init expression has one …
14 [section Class template `init`]
21 struct init
23 init(char const* doc = 0);
24 template <class Keywords> init(Keywords const& kw, char const* doc = 0);
25 template <class Keywords> init(char const* doc, Keywords const& kw);
[all …]
/third_party/typescript_eslint/packages/eslint-plugin/docs/rules/
Dinit-declarations.md1 # require or disallow initialization in variable declarations (`init-declarations`)
5 This rule extends the base [`eslint/init-declarations`](https://eslint.org/docs/rules/init-declarat…
13 "init-declarations": "off",
14 "@typescript-eslint/init-declarations": ["error"]
20 See [`eslint/init-declarations` options](https://eslint.org/docs/rules/init-declarations#options).
22 <sup>Taken with ❤️ [from ESLint core](https://github.com/eslint/eslint/blob/master/docs/rules/init-…
/third_party/uboot/u-boot-2020.01/arch/arm/dts/
Dam335x-brxre1.dts257 ti,no-reset-on-init;
258 ti,no-idle-on-init;
275 ti,no-reset-on-init;
280 ti,no-reset-on-init;
285 ti,no-reset-on-init;
290 ti,no-reset-on-init;
295 ti,no-reset-on-init;
296 ti,no-idle-on-init;
301 ti,no-reset-on-init;
302 ti,no-idle-on-init;
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceClFlags.def36 cl::desc("IR File"), cl::init("-")) \
40 cl::init(2)) \
43 cl::init(Ice::Opt_m1), cl::value_desc("level"), \
51 cl::desc("Override output filename"), cl::init("-"), \
55 cl::desc("Target architecture:"), cl::init(Ice::Target_X8632), \
76 cl::init(false)) \
83 cl::init(false)) \
88 cl::init(false)) \
96 cl::init(false)) \
100 cl::init(false)) \
[all …]

12345678910>>...196