Home
last modified time | relevance | path

Searched refs:suffix (Results 451 - 475 of 1249) sorted by relevance

1...<<11121314151617181920>>...50

/third_party/python/Lib/xml/etree/
H A DElementPath.py131 suffix = tag[2:] # '}name'
132 no_ns = slice(-len(suffix), None)
137 if el_tag == tag or _isinstance(el_tag, _str) and el_tag[no_ns] == suffix:
/third_party/skia/gm/
H A Ddrawbitmaprect.cpp156 DrawBitmapRectGM(DrawRectRectProc proc, const char suffix[]) : fProc(proc) { in DrawBitmapRectGM() argument
158 if (suffix) { in DrawBitmapRectGM()
159 fName.append(suffix); in DrawBitmapRectGM()
/base/security/dlp_permission_service/interfaces/inner_api/dlp_parse/include/
H A Ddlp_utils.h49 static std::string GetFileTypeBySuffix(const std::string& suffix);
/drivers/peripheral/partitionslot/hdi_service/include/
H A Dpartitionslot_impl.h29 int32_t GetSlotSuffix(int32_t slot, std::string& suffix) override;
/drivers/peripheral/partitionslot/hal/include/
H A Dpartitionslot_manager.h31 int32_t GetSlotSuffix(int32_t slot, std::string& suffix);
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_base/include/
H A Dmime_type_mgr.h32 static bool GetUriSuffix(const std::string &uri, std::string &suffix);
/foundation/filemanagement/app_file_service/utils/include/b_filesystem/
H A Db_file.h87 * @brief check if string is endswith suffix
90 * @param suffix suffix str
91 * @return true str is endswith suffix
92 * @return false str is not endswith suffix
94 static bool EndsWith(const string &str, const string &suffix);
/third_party/node/tools/gyp/pylib/gyp/generator/
H A Dgypd.py82 output_file = input_file_stem + params["options"].suffix + ".gypd"
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/
H A Dgypd.py82 output_file = input_file_stem + params["options"].suffix + ".gypd"
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/subgroups/
H A DvktSubgroupsScanHelpers.hpp51 std::string getScanOpName (std::string prefix, std::string suffix, Operator op, ScanType scanType);
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/subgroups/
H A DvktSubgroupsScanHelpers.hpp51 std::string getScanOpName (std::string prefix, std::string suffix, Operator op, ScanType scanType);
/third_party/python/Lib/test/
H A Dtest_pathlib.py518 self.assertEqual(P('').suffix, '')
519 self.assertEqual(P('.').suffix, '')
520 self.assertEqual(P('..').suffix, '')
521 self.assertEqual(P('/').suffix, '')
522 self.assertEqual(P('a/b').suffix, '')
523 self.assertEqual(P('/a/b').suffix, '')
524 self.assertEqual(P('/a/b/.').suffix, '')
525 self.assertEqual(P('a/b.py').suffix, '.py')
526 self.assertEqual(P('/a/b.py').suffix, '.py')
527 self.assertEqual(P('a/.hgrc').suffix, '')
[all...]
/third_party/node/lib/internal/repl/
H A Dutils.js259 const suffix = StringPrototypeSlice(prefix, completeOn.length);
262 repl._insertString(suffix);
266 completionPreview = suffix;
269 `\u001b[90m${suffix}\u001b[39m` :
270 ` // ${suffix}`;
279 const totalLine = `${repl.getPrompt()}${repl.line}${suffix}`;
487 // Insert the longest common suffix of the current input in case the user
/third_party/python/Tools/scripts/
H A Ddeepfreeze.py105 def removesuffix(base: str, suffix: str) -> str:
106 if base.endswith(suffix):
107 return base[:len(base) - len(suffix)]
139 def block(self, prefix: str, suffix: str = "") -> None:
143 self.write("}" + suffix)
/third_party/rust/crates/memchr/src/memmem/
H A Dmod.rs1164 /// Check that every suffix of the given byte string is a substring.
1174 let suffix = &bs[i..];
1176 assert_eq!(naive_rfind(bs, suffix), search(bs, suffix));
1178 assert_eq!(naive_find(bs, suffix), search(bs, suffix));
/third_party/ffmpeg/libavcodec/arm/
H A Dvp9dsp_init_16bpp_arm_template.c29 #define declare_fpel(type, sz, suffix) \
30 void ff_vp9_##type##sz##suffix##_neon(uint8_t *dst, ptrdiff_t dst_stride, \
106 #define init_fpel(idx1, idx2, sz, type, suffix) \ in vp9dsp_mc_init_arm()
110 dsp->mc[idx1][FILTER_BILINEAR ][idx2][0][0] = ff_vp9_##type##sz##suffix##_neon in vp9dsp_mc_init_arm()
/third_party/alsa-utils/axfer/
H A Dcontainer.c99 const char *suffix; in container_format_from_path() local
104 suffix = suffixes[i]; in container_format_from_path()
107 pos = path + strlen(path) - strlen(suffix); in container_format_from_path()
108 if (!strcmp(pos, suffix)) in container_format_from_path()
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/
H A DPseudoLocales.java397 String suffix = PADDING.substring(0, Math.min(endIndex, PADDING.length())); in expanding()
401 suffix = "'" + suffix.replace(" ", "' '") + "'"; in expanding()
405 return "[" + new String(cp, 0, cp.length) + " " + suffix + "]"; in expanding()
/third_party/mbedtls/tests/scripts/
H A Ddepends.py89 def log_line(text, prefix='depends.py:', suffix='', color=None):
93 suffix = suffix + color[1]
94 sys.stderr.write(prefix + ' ' + text + suffix + '\n')
/third_party/pulseaudio/src/pulsecore/
H A Dlog.c482 const char *prefix = "", *suffix = "", *grey = ""; in pa_log_levelv_meta() local
497 suffix = "\x1B[0m"; in pa_log_levelv_meta()
507 fprintf(stderr, "%s%c: %s%s%s%s%s%s\n", timestamp, level_to_char[level], location, prefix, t, grey, pa_strempty(bt), suffix); in pa_log_levelv_meta()
509 fprintf(stderr, "%s%s%s%s%s%s%s\n", timestamp, location, prefix, t, grey, pa_strempty(bt), suffix); in pa_log_levelv_meta()
/third_party/skia/third_party/externals/tint/fuzzers/tint_regex_fuzzer/
H A Dwgsl_mutator.cc64 search_start = match.suffix().first; in GetIdentifiers()
87 search_start = match.suffix().first; in GetIntLiterals()
119 static_cast<size_t>(match.suffix().first - wgsl_code.cbegin() - 1L)); in GetFunctionBodyPositions()
120 search_start = match.suffix().first; in GetFunctionBodyPositions()
/third_party/python/Modules/_sha3/
H A Dsha3module.c387 unsigned char suffix[2] = {0x06, 0}; in SHA3_get_suffix() local
388 return PyBytes_FromStringAndSize((const char *)suffix, 1); in SHA3_get_suffix()
532 unsigned char suffix[2] = {0x1f, 0}; in SHAKE_get_suffix() local
533 return PyBytes_FromStringAndSize((const char *)suffix, 1); in SHAKE_get_suffix()
/third_party/python/Lib/
H A Dzipimport.py372 for suffix, isbytecode, ispackage in _zip_searchorder:
373 fullpath = path + suffix
749 for suffix, isbytecode, ispackage in _zip_searchorder:
750 fullpath = path + suffix
/kernel/linux/linux-5.10/drivers/net/arcnet/
H A Darcnet.c89 .suffix = '?',
527 arc_proto_default->suffix); in arcnet_open()
529 arc_cont(D_PROTO, "%c", arc_proto_map[count]->suffix); in arcnet_open()
668 proto->suffix); in arcnet_header()
688 proto_num, proto->suffix); in arcnet_header()
691 arc_bcast_proto->suffix); in arcnet_header()
758 proto->suffix); in arcnet_send_packet()
1167 newp->suffix, oldp->suffix); in arcnet_rx()
/kernel/linux/linux-6.6/drivers/net/arcnet/
H A Darcnet.c89 .suffix = '?',
523 arc_proto_default->suffix); in arcnet_open()
525 arc_cont(D_PROTO, "%c", arc_proto_map[count]->suffix); in arcnet_open()
663 proto->suffix); in arcnet_header()
683 proto_num, proto->suffix); in arcnet_header()
686 arc_bcast_proto->suffix); in arcnet_header()
753 proto->suffix); in arcnet_send_packet()
1162 newp->suffix, oldp->suffix); in arcnet_rx()

Completed in 18 milliseconds

1...<<11121314151617181920>>...50