Home
last modified time | relevance | path

Searched full:init (Results 1 – 25 of 6453) sorted by relevance

12345678910>>...259

/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/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/TableGen/
DRecord.h287 class Init {
343 explicit Init(InitKind K, uint8_t Opc = 0) : Kind(K), Opc(Opc) {} in Kind()
346 Init(const Init &) = delete;
347 Init &operator=(const Init &) = delete;
348 virtual ~Init() = default;
376 virtual Init *getCastTo(RecTy *Ty) const = 0;
381 virtual Init *convertInitializerTo(RecTy *Ty) const = 0;
385 /// out, returning them as a new init of bits type. If it is not legal to use
387 virtual Init *convertInitializerBitRange(ArrayRef<unsigned> Bits) const { in convertInitializerBitRange()
393 /// elements, returning them as a new init of list type. If it is not legal
[all …]
/third_party/icu/icu4c/source/data/zone/
Dceb.txt19 ld{"Oras sa Tag-init sa British"}
34 ld{"Oras sa Tag-init sa West Africa"}
44 ld{"Oras sa Tag-init sa Amazon"}
74 ld{"Oras sa Tag-init sa Arabia"}
79 ld{"Oras sa Tag-init sa Argentina"}
84 ld{"Oras sa Tag-init sa Western Argentina"}
89 ld{"Oras sa Tag-init sa Armenia"}
99 ld{"Oras sa Tag-init sa Central Australia"}
104 ld{"Oras sa Tag-init sa Central Western Australia"}
109 ld{"Oras sa Tag-init sa Eastern Australia"}
[all …]
/third_party/node/deps/npm/man/man1/
Dnpm-init.11 .TH "NPM-INIT" "1" "February 2024" "" ""
3 \fBnpm-init\fR - Create a package.json file
8 npm init <package-spec> (same as `npx <package-spec>`)
9 npm init <@scope> (same as `npx <@scope>/create`)
16 \fBnpm init <initializer>\fR can be used to set up a new or existing npm package.
20 The init command is transformed to a corresponding \fBnpm exec\fR operation as follows:
23 \fBnpm init foo\fR -> \fBnpm exec create-foo\fR
25 \fBnpm init @usr/foo\fR -> \fBnpm exec @usr/create-foo\fR
27 \fBnpm init @usr\fR -> \fBnpm exec @usr/create\fR
29 \fBnpm init @usr@2.0.0\fR -> \fBnpm exec @usr/create@2.0.0\fR
[all …]
/third_party/node/deps/npm/docs/content/commands/
Dnpm-init.md2 title: npm-init
10 npm init <package-spec> (same as `npx <package-spec>`)
11 npm init <@scope> (same as `npx <@scope>/create`)
18 `npm init <initializer>` can be used to set up a new or existing npm
26 The init command is transformed to a corresponding `npm exec` operation as
29 * `npm init foo` -> `npm exec create-foo`
30 * `npm init @usr/foo` -> `npm exec @usr/create-foo`
31 * `npm init @usr` -> `npm exec @usr/create`
32 * `npm init @usr@2.0.0` -> `npm exec @usr/create@2.0.0`
33 * `npm init @usr/foo@2.0.0` -> `npm exec @usr/create-foo@2.0.0`
[all …]
/third_party/openssl/ohos_lite/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/node/deps/openssl/openssl/include/internal/
Dthread_once.h37 # define DEFINE_RUN_ONCE(init) \ argument
38 static int init(void); \
39 int init##_ossl_ret_ = 0; \
40 void init##_ossl_(void) \
42 init##_ossl_ret_ = init(); \
44 static int init(void)
50 # define DECLARE_RUN_ONCE(init) \ argument
51 extern int init##_ossl_ret_; \
52 void init##_ossl_(void);
69 # define DEFINE_RUN_ONCE_STATIC(init) \ argument
[all …]
/third_party/openssl/include/internal/
Dthread_once.h37 # define DEFINE_RUN_ONCE(init) \ argument
38 static int init(void); \
39 int init##_ossl_ret_ = 0; \
40 void init##_ossl_(void) \
42 init##_ossl_ret_ = init(); \
44 static int init(void)
50 # define DECLARE_RUN_ONCE(init) \ argument
51 extern int init##_ossl_ret_; \
52 void init##_ossl_(void);
69 # define DEFINE_RUN_ONCE_STATIC(init) \ argument
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/
DRecord.cpp292 void Init::anchor() {} in anchor()
295 LLVM_DUMP_METHOD void Init::dump() const { return print(errs()); } in dump()
303 Init *UnsetInit::getCastTo(RecTy *Ty) const { in getCastTo()
307 Init *UnsetInit::convertInitializerTo(RecTy *Ty) const { in convertInitializerTo()
318 Init *BitInit::convertInitializerTo(RecTy *Ty) const { in convertInitializerTo()
335 ProfileBitsInit(FoldingSetNodeID &ID, ArrayRef<Init *> Range) { in ProfileBitsInit()
338 for (Init *I : Range) in ProfileBitsInit()
342 BitsInit *BitsInit::get(ArrayRef<Init *> Range) { in get()
352 void *Mem = Allocator.Allocate(totalSizeToAlloc<Init *>(Range.size()), in get()
356 I->getTrailingObjects<Init *>()); in get()
[all …]
/third_party/python/Lib/test/test_importlib/
Dtest_api.py3 init = test_util.import_importlib('importlib') variable
25 module = self.init.import_module('top_level')
35 module = self.init.import_module(name)
47 self.init.import_module(pkg_name)
48 module = self.init.import_module(relative_name, pkg_name)
55 self.init.import_module('a')
56 self.init.import_module('a.b')
57 module = self.init.import_module('..c', 'a.b')
68 self.init.import_module(pkg_name)
69 module = self.init.import_module(name, pkg_name)
[all …]
/third_party/cups-filters/filter/braille/drivers/index/
Dindex.sh.in83 INIT=
85 INIT+=,FO0
90 INIT+=,MC$NB
93 INIT+=,MI$MULTIPLEIMPACT
101 None,False,False,False) INIT+=,DP1 ;; # Single Sided
102 DuplexNoTumble,False,False,False) INIT+=,DP2 ;; # Double Sided
104 DuplexNoTumble,True,False,False) INIT+=,DP3 ;; # Double Sided z-folding
105 None,True,False,False) INIT+=,DP5 ;; # Single Sided z-folding
107 DuplexNoTumble,False,True,False) INIT+=,DP4 ;; # Double Sided Saddle Stitch
108 None,False,True,False) INIT+=,DP8 ;; # Single Sided Saddle Stitch
[all …]
Dindexv3.sh.in33 INIT=$'\033'D
36 INIT+=TM0,BI0
39 #INIT+=,BP
42 INIT+="$(commonOptions)"
48 INIT+=,PW$(mmToIndexIn $PAGEWIDTH),PL$(mmToIndexIn $PAGEHEIGHT)
51 INIT+=,PW$(($PAGEWIDTH / 100)),PL$(($PAGEHEIGHT / 100))
57 250) INIT+=,LS0 ;;
58 375) INIT+=,LS1 ;;
59 450) INIT+=,LS2 ;;
60 475) INIT+=,LS3 ;;
[all …]
/third_party/node/deps/npm/test/lib/commands/
Dinit.js14 ...(initPackageJson ? { 'init-package-json': initPackageJson } : {}),
17 // init-package-json prints directly to console.log
31 await npm.exec('init', [])
35 t.test('classic npm init -y', async t => {
41 await npm.exec('init', [])
48 t.test('classic interactive npm init', async t => {
56 'should start init package.json in expected path'
61 await npm.exec('init', [])
64 t.test('npm init <arg>', async t => {
77 await npm.exec('init', ['react-app'])
[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 …]
/third_party/mesa3d/src/gallium/drivers/r600/sfn/tests/
Dsfn_instrfromstring_test.cpp28 void add_dest_from_string(const char *init);
29 void add_dest_vec4_from_string(const char *init);
32 void check(const string& init, const Instr& expect);
239 auto init = std::string("ALU MOV R2000.y : R1999.x {WL} ") + str; in TEST_F() local
247 check(init, expect); in TEST_F()
261 …auto init = std::string("ALU DOT4_IEEE R2000.y : R199.x R198.w + R199.y R198.z + R199.z R198.y + R… in TEST_F() local
275 check(init, expect); in TEST_F()
282 auto init = std::string("ALU MOV R2000.y : R1999.x {WL} ") + str; in TEST_F() local
290 check(init, expect); in TEST_F()
297 auto init = std::string("ALU INTERP_ZW R1024.z@chan : R0.y@fully Param0.z {W} VEC_210"); in TEST_F() local
[all …]
/third_party/glslang/glslang/MachineIndependent/
Dglslang.y1237 $$.init($1.loc);
1247 $$.init($1.loc);
1254 $$.init($1.loc);
1261 $$.init($1.loc);
1268 $$.init($1.loc);
1276 $$.init($1.loc);
1284 $$.init($1.loc);
1294 $$.init($1.loc);
1304 $$.init($1.loc);
1311 $$.init($1.loc);
[all …]
/third_party/node/deps/npm/docs/output/commands/
Dnpm-init.html3 <title>npm-init</title>
139 <h1 id="npm-init">npm-init</h1>
145init-author-name"><code>init-author-name</code></a></li><li><a href="#init-author-url"><code>init-…
149 <pre><code class="language-bash">npm init &lt;package-spec&gt; (same as `npx &lt;package-spec&gt;`)
150 npm init &lt;@scope&gt; (same as `npx &lt;@scope&gt;/create`)
155 <p><code>npm init &lt;initializer&gt;</code> can be used to set up a new or existing npm
161 <p>The init command is transformed to a corresponding <code>npm exec</code> operation as
164 <li><code>npm init foo</code> -&gt; <code>npm exec create-foo</code></li>
165 <li><code>npm init @usr/foo</code> -&gt; <code>npm exec @usr/create-foo</code></li>
166 <li><code>npm init @usr</code> -&gt; <code>npm exec @usr/create</code></li>
[all …]
/third_party/node/test/async-hooks/
Dtest-tcpwrap.js10 const initHooks = require('./init-hooks');
36 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 };
90 // been invoked at this point already, otherwise it only was 'init'ed
91 const expected = serverConnection ? { init: 1 } : { init: 1, before: 1 };
102 { init: 1, before: 1, after: 1 } :
103 { init: 1 };
[all …]
/third_party/musl/src/thread/
Dpthread_once.c11 hidden int __pthread_once_full(pthread_once_t *control, void (*init)(void)) in __pthread_once_full()
14 * 0 - we're the first or the other cancelled; run init in __pthread_once_full()
15 * 1 - another thread is running init; wait in __pthread_once_full()
16 * 2 - another thread finished running init; just return in __pthread_once_full()
17 * 3 - another thread is running init, waiters present; wait */ in __pthread_once_full()
22 init(); in __pthread_once_full()
40 int __pthread_once(pthread_once_t *control, void (*init)(void)) in __pthread_once()
42 /* Return immediately if init finished before, use load aquire to ensure that in __pthread_once()
43 * effects of the init routine are visible to the caller. */ in __pthread_once()
47 return __pthread_once_full(control, init); in __pthread_once()
[all …]
/third_party/musl/porting/linux/user/src/thread/
Dpthread_once.c11 hidden int __pthread_once_full(pthread_once_t *control, void (*init)(void)) in __pthread_once_full()
14 * 0 - we're the first or the other cancelled; run init in __pthread_once_full()
15 * 1 - another thread is running init; wait in __pthread_once_full()
16 * 2 - another thread finished running init; just return in __pthread_once_full()
17 * 3 - another thread is running init, waiters present; wait */ in __pthread_once_full()
22 init(); in __pthread_once_full()
40 int __pthread_once(pthread_once_t *control, void (*init)(void)) in __pthread_once()
42 /* Return immediately if init finished before, use load aquire to ensure that in __pthread_once()
43 * effects of the init routine are visible to the caller. */ in __pthread_once()
47 return __pthread_once_full(control, init); in __pthread_once()
[all …]
/third_party/ffmpeg/libavformat/
Drawenc.c69 .init = force_one_stream,
101 .init = force_one_stream,
115 .init = force_one_stream,
128 .init = force_one_stream,
141 .init = force_one_stream,
154 .init = force_one_stream,
168 .init = force_one_stream,
180 .init = force_one_stream,
191 .init = force_one_stream,
204 .init = force_one_stream,
[all …]
/third_party/ltp/testcases/kernel/syscalls/fanotify/
Dfanotify14.c62 struct test_case_flags_t init; member
71 .init = FLAGS_DESC(FAN_CLASS_CONTENT | FAN_REPORT_FID),
77 .init = FLAGS_DESC(FAN_CLASS_PRE_CONTENT | FAN_REPORT_FID),
83 .init = FLAGS_DESC(FAN_CLASS_NOTIF),
91 .init = FLAGS_DESC(FAN_CLASS_NOTIF | FAN_REPORT_FID),
99 .init = FLAGS_DESC(FAN_CLASS_NOTIF | FAN_REPORT_NAME),
105 .init = FLAGS_DESC(FAN_CLASS_NOTIF | FAN_REPORT_FID | FAN_REPORT_NAME),
111 .init = FLAGS_DESC(FAN_CLASS_NOTIF | FAN_REPORT_TARGET_FID | FAN_REPORT_DFID_NAME),
117 .init = FLAGS_DESC(FAN_CLASS_NOTIF | FAN_REPORT_TARGET_FID | FAN_REPORT_DFID_FID),
123 .init = FLAGS_DESC(FAN_CLASS_NOTIF | FAN_REPORT_DFID_FID),
[all …]
/third_party/node/deps/npm/tap-snapshots/test/lib/commands/
Dconfig.js.test.cjs76 "init-author-email": "",
77 "init-author-name": "",
78 "init-author-url": "",
79 "init-license": "ISC",
80 "init-module": "{HOME}/.npm-init.js",
81 "init-version": "1.0.0",
82 "init.author.email": "",
83 "init.author.name": "",
84 "init.author.url": "",
85 "init.license": "ISC",
[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/node_modules/minipass-fetch/lib/
Drequest.js28 constructor (input, init = {}) {
34 init = { ...input[INTERNALS], ...init }
39 const method = (init.method || input.method || 'GET').toUpperCase()
42 if ((init.body !== null && init.body !== undefined ||
47 const inputBody = init.body !== null && init.body !== undefined ? init.body
52 timeout: init.timeout || input.timeout || 0,
53 size: init.size || input.size || 0,
56 const headers = new Headers(init.headers || input.headers || {})
66 const signal = 'signal' in init ? init.signal
92 } = init
[all …]

12345678910>>...259