Home
last modified time | relevance | path

Searched refs:init (Results 126 - 150 of 4763) sorted by relevance

12345678910>>...191

/third_party/skia/third_party/externals/icu/source/i18n/
H A Dplurfmt.cpp45 init(NULL, UPLURAL_TYPE_CARDINAL, status); in PluralFormat()
53 init(NULL, UPLURAL_TYPE_CARDINAL, status); in PluralFormat()
61 init(&rules, UPLURAL_TYPE_COUNT, status); in PluralFormat()
71 init(&rules, UPLURAL_TYPE_COUNT, status); in PluralFormat()
81 init(NULL, type, status); in PluralFormat()
90 init(NULL, UPLURAL_TYPE_CARDINAL, status); in PluralFormat()
101 init(NULL, UPLURAL_TYPE_CARDINAL, status); in PluralFormat()
112 init(&rules, UPLURAL_TYPE_COUNT, status); in PluralFormat()
124 init(&rules, UPLURAL_TYPE_COUNT, status); in PluralFormat()
136 init(NUL in PluralFormat()
177 PluralFormat::init(const PluralRules* rules, UPluralType type, UErrorCode& status) { init() function in PluralFormat
[all...]
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-subset-cff1.cc74 privateDictInfo.init (); in cff1_sub_table_info_t()
85 void init (const cff1_top_dict_values_t *base_= &Null (cff1_top_dict_values_t)) in init() function
87 SUPER::init (); in init()
372 topdict_mod.init (); in cff_subset_plan()
373 subset_fdselect_ranges.init (); in cff_subset_plan()
374 fdmap.init (); in cff_subset_plan()
375 subset_charstrings.init (); in cff_subset_plan()
376 subset_globalsubrs.init (); in cff_subset_plan()
377 subset_localsubrs.init (); in cff_subset_plan()
378 fontdicts_mod.init (); in cff_subset_plan()
[all...]
/third_party/ffmpeg/libavfilter/
H A Df_perms.c60 static av_cold int init(AVFilterContext *ctx) in init() function
137 .init = init,
167 .init = init,
H A Df_latency.c35 static av_cold int init(AVFilterContext *ctx) in init() function
120 .init = init,
151 .init = init,
H A Dfifo.c50 static av_cold int init(AVFilterContext *ctx) in init() function
132 .init = init,
159 .init = init,
H A Df_bench.c53 static av_cold int init(AVFilterContext *ctx) in init() function
114 .init = init,
145 .init = init,
H A Dvf_format.c57 static av_cold int init(AVFilterContext *ctx) in init() function
168 .init = init,
205 .init = init,
/third_party/ffmpeg/libavcodec/
H A Dtextdec.c90 .init = ff_ass_subtitle_header_default,
114 .init = linebreak_init,
129 .init = linebreak_init,
144 .init = linebreak_init,
159 .init = linebreak_init,
/third_party/mesa3d/src/gallium/winsys/nouveau/drm/
H A Dnouveau_drm_winsys.c46 struct nouveau_screen *(*init)(struct nouveau_device *); in nouveau_drm_screen_create()
92 init = nv30_screen_create; in nouveau_drm_screen_create()
98 init = nv50_screen_create; in nouveau_drm_screen_create()
110 init = nvc0_screen_create; in nouveau_drm_screen_create()
118 screen = init(dev); in nouveau_drm_screen_create()
/third_party/node/test/parallel/
H A Dtest-timers-linked-list.js37 L.init(list);
38 L.init(A);
39 L.init(B);
40 L.init(C);
41 L.init(D);
/third_party/node/deps/openssl/openssl/crypto/evp/
H A Dcmeth_lib.c94 int (*init) (EVP_CIPHER_CTX *ctx, in EVP_CIPHER_meth_set_init()
99 if (cipher->init != NULL) in EVP_CIPHER_meth_set_init()
102 cipher->init = init; in EVP_CIPHER_meth_set_init()
168 return cipher->init; in EVP_CIPHER_meth_get_init()
/third_party/openssl/test/recipes/
H A Dtconversion.pl56 my $init;
58 $init = ok(run(app([@cmd, "-in", $t, "-out", "$prefix-fff.p"])),
61 $init = ok(copy($t, "$prefix-fff.p"), 'initializing');
63 if (!$init) {
68 skip "Not initialized, skipping...", 22 unless $init;
/third_party/openssl/crypto/evp/
H A Dcmeth_lib.c94 int (*init) (EVP_CIPHER_CTX *ctx, in EVP_CIPHER_meth_set_init()
99 if (cipher->init != NULL) in EVP_CIPHER_meth_set_init()
102 cipher->init = init; in EVP_CIPHER_meth_set_init()
168 return cipher->init; in EVP_CIPHER_meth_get_init()
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cShaderBallotTests.hpp109 void init();
122 void init();
141 void init();
154 void init();
163 void init(void);
H A Dgl4cES31CompatibilityTests.hpp59 void init();
162 void init();
198 void init(void);
221 void init(void);
/third_party/typescript/tests/baselines/reference/
H A DdecoratorMetadataRestParameterWithImportedType.js33 constructor(...init: SomeClass[]) {
34 this.array = init;
95 var init = [];
97 init[_i] = arguments[_i];
99 this.array = init;
H A DgenericFunctionParameters.js12 declare const s: <R>(go: <S>(ops: { init(): S; }) => R) => R;
13 const x = s(a => a.init()); // x is any, should have been {}
21 var x = s(function (a) { return a.init(); }); // x is any, should have been {}
32 init(): S;
/third_party/ltp/tools/sparse/sparse-src/validation/
H A Dkill-unreachable-phi.c6 void *init, *string; in test_menu_iteminfo() local
12 init = initA; in test_menu_iteminfo()
15 strcpy( string, init ); in test_menu_iteminfo()
/third_party/rust/crates/rustix/src/param/
H A Dmod.rs11 mod init; modules
31 pub use init::init;
/third_party/vulkan-loader/tests/live_verification/dynamic_loader_behavior/
H A Dtest_dynamic_linking.cpp34 InitFunction init = dynamic_library_c.get_symbol(INIT_FUNCTION_NAME); in main() local
35 if (init == nullptr) return 1; in main()
36 init(); in main()
/third_party/ltp/testcases/lib/
H A Ddaemonlib.sh54 /etc/init.d/$1 start > /dev/null 2>&1
65 /etc/init.d/$1 stop > /dev/null 2>&1
76 /etc/init.d/$1 status > /dev/null 2>&1
87 /etc/init.d/$1 restart > /dev/null 2>&1
/third_party/vk-gl-cts/external/openglcts/modules/common/
H A DglcPolygonOffsetClampTests.hpp87 virtual void init();
116 void init();
131 void init();
145 void init();
/third_party/rust/crates/nom/benchmarks/benches/
H A Darithmetic.rs39 let (input, init) = factor(input)?; in term()
42 move || init, in term()
54 let (input, init) = term(input)?; in expr()
57 move || init, in expr()
/third_party/rust/crates/nom/tests/
H A Darithmetic.rs36 let (i, init) = factor(i)?; in term()
40 move || init, in term()
52 let (i, init) = term(i)?; in expr()
56 move || init, in expr()
/third_party/ffmpeg/doc/
H A DMakefile70 $(M)makeinfo --html -I doc --no-split -D config-not-all --init-file=$(SRC_PATH)/doc/t2h.pm --output $@ $<
74 $(M)makeinfo --html -I doc --no-split -D config-all --init-file=$(SRC_PATH)/doc/t2h.pm --output $@ $<
76 doc/%.html: doc/%.texi $(SRC_PATH)/doc/t2h.init $(GENTEXI)
78 $(M)texi2html -I doc -monolithic --D=config-not-all --init-file $(SRC_PATH)/doc/t2h.init --output $@ $<
80 doc/%-all.html: doc/%.texi $(SRC_PATH)/doc/t2h.init $(GENTEXI)
82 $(M)texi2html -I doc -monolithic --D=config-all --init-file $(SRC_PATH)/doc/t2h.init --output $@ $<

Completed in 10 milliseconds

12345678910>>...191