Home
last modified time | relevance | path

Searched refs:extend (Results 51 - 75 of 773) sorted by relevance

12345678910>>...31

/third_party/python/Lib/lib2to3/fixes/
H A Dfix_urllib.py88 names.extend([Name(name[0], prefix=pref), Comma()])
151 names.extend(handle_name(elt, pref))
153 names.extend(handle_name(elts[-1], pref))
162 nodes.extend([new_node, Newline()])
H A Dfix_exec.py35 args.extend([Comma(), b.clone()])
37 args.extend([Comma(), c.clone()])
/third_party/skia/third_party/externals/brotli/
H A Dsetup.py55 filenames.extend(ext.depends)
107 objects.extend(objs)
111 objects.extend(ext.extra_objects)
116 extra_args.extend(['-static-libgcc', '-static-libstdc++'])
/third_party/rust/crates/regex/src/
H A Dexpand.rs59 dst.extend(&replacement[..i]); in expand_bytes()
80 dst.extend(caps.get(i).map(|m| m.as_bytes()).unwrap_or(b"")); in expand_bytes()
83 dst.extend( in expand_bytes()
89 dst.extend(replacement); in expand_bytes()
/third_party/icu/icu4c/source/test/perf/normperf/
H A Dsimplenormperf.cpp28 return extend(UnicodeString(latin1).append(japanese).append(arabic), minLength); in getMixed()
30 static UnicodeString getLatin1(int32_t minLength) { return extend(latin1, minLength); } in getLatin1()
31 static UnicodeString getLowercaseLatin1(int32_t minLength) { return extend(lowercaseLatin1, minLength); } in getLowercaseLatin1()
32 static UnicodeString getASCII(int32_t minLength) { return extend(ascii, minLength); } in getASCII()
33 static UnicodeString getJapanese(int32_t minLength) { return extend(japanese, minLength); } in getJapanese()
55 static UnicodeString extend(const UnicodeString &s, int32_t minLength) { in extend() function in __anon3716::CommonChars
/third_party/rust/crates/cxx/macro/src/
H A Dexpand.rs58 expanded.extend(expand_rust_type_import(ety)); in expand()
59 hidden.extend(expand_rust_type_assert_unpin(ety, types)); in expand()
67 expanded.extend(expand_struct(strct)); in expand()
68 hidden.extend(expand_struct_operators(strct)); in expand()
69 forbid.extend(expand_struct_forbid_drop(strct)); in expand()
71 Api::Enum(enm) => expanded.extend(expand_enum(enm)), in expand()
75 expanded.extend(expand_cxx_type(ety)); in expand()
76 hidden.extend(expand_cxx_type_assert_pinned(ety, types)); in expand()
80 expanded.extend(expand_cxx_function_shim(efn, types)); in expand()
83 expanded.extend(expand_rust_type_imp in expand()
[all...]
/third_party/node/tools/gyp/pylib/gyp/
H A Dmac_tool.py89 args.extend(["--auto-activate-custom-fonts"])
91 args.extend(
102 args.extend(
111 args.extend(
388 command_line.extend(
403 command_line.extend(
431 command_line.extend(map(os.path.abspath, inputs))
461 args.extend(["--deep", "--preserve-metadata=identifier,entitlements"])
463 args.extend(["--entitlements", entitlements_path])
464 args.extend(["
[all...]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
H A Dmac_tool.py89 args.extend(["--auto-activate-custom-fonts"])
91 args.extend(
102 args.extend(
111 args.extend(
388 command_line.extend(
403 command_line.extend(
431 command_line.extend(map(os.path.abspath, inputs))
461 args.extend(["--deep", "--preserve-metadata=identifier,entitlements"])
463 args.extend(["--entitlements", entitlements_path])
464 args.extend(["
[all...]
/third_party/skia/third_party/externals/dawn/
H A DPRESUBMIT.py24 results.extend(
26 results.extend(
/third_party/mbedtls/tests/scripts/
H A Dgenerate_tls13_compat_tests.py86 self._ciphers.extend(
91 self._sig_algs.extend(
96 self._named_groups.extend(
101 self._cert_sig_algs.extend(
266 priority_string_list.extend(update_priority_string_list(
269 priority_string_list.extend(['CIPHER-ALL', 'MAC-ALL'])
273 priority_string_list.extend(update_priority_string_list(
280 priority_string_list.extend(update_priority_string_list(
/third_party/typescript/tests/ts_extra_tests/tool/
H A Dtestcfg.py174 cmd.extend(STRICT_ON)
176 cmd.extend(STRICT_OFF)
178 cmd.extend(MODULE)
181 cmd.extend(DECORATOR)
184 cmd.extend(STRICTNULLCHECKS)
187 cmd.extend(JSX)
210 cmd.extend(['--module', '--record-source', '--output', abc_file_path, file_path])
212 cmd.extend(['--module', '--output', abc_file_path, file_path])
/third_party/skia/modules/skparagraph/src/
H A DTextWrapper.cpp112 fClusters.extend(cluster); in lookAhead()
124 fWords.extend(fClusters); in lookAhead()
131 fWords.extend(fClusters); in lookAhead()
137 fClusters.extend(cluster); in lookAhead()
182 fWords.extend(fClusters); in lookAhead()
202 fClusters.extend(cluster); in lookAhead()
217 fWords.extend(fClusters); in lookAhead()
222 fWords.extend(cluster); in lookAhead()
228 fClusters.extend(cluster); in lookAhead()
231 fWords.extend(fCluster in lookAhead()
[all...]
/third_party/skia/tools/skpbench/
H A D_os_path.py20 pathnames.extend(glob.iglob(path.join(skp, '*.skp')))
21 pathnames.extend(glob.iglob(path.join(skp, '*.mskp')))
/third_party/protobuf/js/commonjs/
H A Dexport.js30 exports.object = {extend: goog.object.extend};
/kernel/linux/linux-5.10/fs/ext4/
H A Dfile.c422 bool *ilock_shared, bool *extend) in ext4_dio_write_checks()
438 *extend = true; in ext4_dio_write_checks()
445 if (*ilock_shared && (!IS_NOSEC(inode) || *extend || in ext4_dio_write_checks()
478 bool extend = false, unaligned_io = false; in ext4_dio_write_iter() local
521 ret = ext4_dio_write_checks(iocb, from, &ilock_shared, &extend); in ext4_dio_write_iter()
526 if ((iocb->ki_flags & IOCB_NOWAIT) && (unaligned_io || extend)) { in ext4_dio_write_iter()
553 if (extend) { in ext4_dio_write_iter()
572 is_sync_kiocb(iocb) || unaligned_io || extend); in ext4_dio_write_iter()
576 if (extend) in ext4_dio_write_iter()
622 bool extend in ext4_dax_write_iter() local
421 ext4_dio_write_checks(struct kiocb *iocb, struct iov_iter *from, bool *ilock_shared, bool *extend) ext4_dio_write_checks() argument
[all...]
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
H A DSelection.java110 int direction, boolean extend) { in nextBound()
111 if (!extend && anchor != caret) caret -= direction; in nextBound()
113 if (!extend) anchor = caret; in nextBound()
109 nextBound(BreakIterator breaker, int direction, boolean extend) nextBound() argument
/third_party/weex-loader/
H A Dbuild_weex_loader_library.py62 build_cmd.extend(['--out-dir', options.output_dir])
63 build_cmd.extend(['--config-file', options.babel_config_js])
65 depfile_deps.extend(build_utils.get_all_files(options.weex_loader_src_dir))
/third_party/jsframework/runtime/main/util/
H A Dshared.js7 export function extend(obj, ...prop) {
16 extend(obj, ...prop);
/third_party/rust/crates/cxx/gen/build/src/syntax/
H A Ddoc.rs41 tokens.extend(quote! { #(#[doc = #fragments])* }); in to_tokens()
43 tokens.extend(quote! { #[doc(hidden)] }); in to_tokens()
/third_party/rust/crates/cxx/gen/lib/src/syntax/
H A Ddoc.rs41 tokens.extend(quote! { #(#[doc = #fragments])* }); in to_tokens()
43 tokens.extend(quote! { #[doc(hidden)] }); in to_tokens()
/third_party/rust/crates/cxx/macro/src/syntax/
H A Ddoc.rs41 tokens.extend(quote! { #(#[doc = #fragments])* }); in to_tokens()
43 tokens.extend(quote! { #[doc(hidden)] }); in to_tokens()
/third_party/rust/crates/cxx/syntax/
H A Ddoc.rs41 tokens.extend(quote! { #(#[doc = #fragments])* }); in to_tokens()
43 tokens.extend(quote! { #[doc(hidden)] }); in to_tokens()
/third_party/rust/crates/cxx/gen/cmd/src/syntax/
H A Ddoc.rs41 tokens.extend(quote! { #(#[doc = #fragments])* }); in to_tokens()
43 tokens.extend(quote! { #[doc(hidden)] }); in to_tokens()
/third_party/skia/infra/bots/recipe_modules/gsutil/
H A Dapi.py35 cmd.extend(extra_args)
36 cmd.extend([src, dst])
/third_party/vk-gl-cts/scripts/opengl/
H A Dgen_str_util.py956 getEnumGroupByName("GettableState").extend(getEnumGroupByName("EnableCap"))
959 getEnumGroupByName("TextureFormat").extend(getEnumGroupByName("UncompressedTextureFormat") + getEnumGroupByName("CompressedTextureFormat"))

Completed in 12 milliseconds

12345678910>>...31