Home
last modified time | relevance | path

Searched refs:suffixes (Results 1 – 25 of 392) sorted by relevance

12345678910>>...16

/third_party/rust/crates/regex/regex-syntax/src/hir/literal/
Dmod.rs65 pub fn suffixes(expr: &Hir) -> Literals { in suffixes() method
324 suffixes(expr, &mut lits); in union_suffixes()
655 fn suffixes(expr: &Hir, lits: &mut Literals) { in suffixes() function
678 suffixes(&**hir, lits); in suffixes()
682 repeat_zero_or_one_literals(&x.hir, lits, suffixes); in suffixes()
685 repeat_zero_or_more_literals(&x.hir, lits, suffixes); in suffixes()
688 repeat_one_or_more_literals(&x.hir, lits, suffixes); in suffixes()
697 &x.hir, min, max, x.greedy, lits, suffixes, in suffixes()
702 HirKind::Concat(ref es) if es.len() == 1 => suffixes(&es[0], lits), in suffixes()
714 suffixes(e, &mut lits2); in suffixes()
[all …]
/third_party/flutter/skia/third_party/externals/wuffs/script/
Dprint-lzw-example.go100 s.suffixes[key], // Suf1
105 string(q.suffixes[key][:]), // SufQ
171 suffixes [4096]byte member
177 t.suffixes[i] = byte(i)
195 suffix := t.suffixes[c]
214 t.suffixes[n] = firstByte
224 suffixes [4096][Q]byte member
231 t.suffixes[i][0] = byte(i)
234 t.suffixes[i][j] = '.'
255 suffix := t.suffixes[c]
[all …]
/third_party/flutter/skia/third_party/externals/wuffs/std/lzw/
Ddecode_lzw.wuffs19 // TODO: move bulk data buffers like decoder.suffixes or decoder.output into
22 // - 49627b4 Flatten the lzw.decoder.suffixes array
23 // - f877fb2 Use the workbuf instead of lzw.decoder.suffixes
24 // - 85be5b9 Delete the obsolete lzw.decoder.suffixes array
26 // - 3056a84 Roll back 3 recent lzw.decoder.suffixes commits
62 suffixes array[4096] array[8] base.u8,
101 this.suffixes[i][0] = i as base.u8
209 this.suffixes[save_code] = this.suffixes[prev_code]
210 this.suffixes[save_code][lm1_a % 8] = code as base.u8
213 this.suffixes[save_code][0] = code as base.u8
[all …]
/third_party/skia/third_party/externals/icu/source/i18n/
Dcollationiterator.cpp503 UCharsTrie suffixes(p); in nextCE32FromContraction() local
504 if(skipped != NULL && !skipped->isEmpty()) { skipped->saveTrieState(suffixes); } in nextCE32FromContraction()
505 UStringTrieResult match = suffixes.firstForCodePoint(c); in nextCE32FromContraction()
509 ce32 = (uint32_t)suffixes.getValue(); in nextCE32FromContraction()
513 if(skipped != NULL && !skipped->isEmpty()) { skipped->saveTrieState(suffixes); } in nextCE32FromContraction()
537 d, suffixes, ce32, lookAhead, c, errorCode); in nextCE32FromContraction()
550 match = suffixes.nextForCodePoint(c); in nextCE32FromContraction()
558 const CollationData *d, UCharsTrie &suffixes, uint32_t ce32, in nextCE32FromDiscontiguousContraction() argument
608 suffixes.reset(); in nextCE32FromDiscontiguousContraction()
612 suffixes.firstForCodePoint(nextCodePoint(errorCode)); in nextCE32FromDiscontiguousContraction()
[all …]
Dcollationsets.cpp264 UCharsTrie::Iterator suffixes(p, 0, errorCode); in compareContractions() local
275 if(suffixes.next(errorCode)) { in compareContractions()
276 ts = &suffixes.getString(); in compareContractions()
300 compare(c, (uint32_t)suffixes.getValue(), (uint32_t)baseSuffixes.getValue()); in compareContractions()
330 UCharsTrie::Iterator suffixes(p, 0, errorCode); in addContractions() local
331 while(suffixes.next(errorCode)) { in addContractions()
332 addSuffix(c, suffixes.getString()); in addContractions()
573 UCharsTrie::Iterator suffixes(p + 2, 0, errorCode); in handleContractions() local
574 while(suffixes.next(errorCode)) { in handleContractions()
575 suffix = &suffixes.getString(); in handleContractions()
[all …]
/third_party/icu/icu4c/source/i18n/
Dcollationiterator.cpp503 UCharsTrie suffixes(p); in nextCE32FromContraction() local
504 if(skipped != NULL && !skipped->isEmpty()) { skipped->saveTrieState(suffixes); } in nextCE32FromContraction()
505 UStringTrieResult match = suffixes.firstForCodePoint(c); in nextCE32FromContraction()
509 ce32 = (uint32_t)suffixes.getValue(); in nextCE32FromContraction()
513 if(skipped != NULL && !skipped->isEmpty()) { skipped->saveTrieState(suffixes); } in nextCE32FromContraction()
537 d, suffixes, ce32, lookAhead, c, errorCode); in nextCE32FromContraction()
550 match = suffixes.nextForCodePoint(c); in nextCE32FromContraction()
558 const CollationData *d, UCharsTrie &suffixes, uint32_t ce32, in nextCE32FromDiscontiguousContraction() argument
608 suffixes.reset(); in nextCE32FromDiscontiguousContraction()
612 suffixes.firstForCodePoint(nextCodePoint(errorCode)); in nextCE32FromDiscontiguousContraction()
[all …]
Dcollationsets.cpp264 UCharsTrie::Iterator suffixes(p, 0, errorCode); in compareContractions() local
275 if(suffixes.next(errorCode)) { in compareContractions()
276 ts = &suffixes.getString(); in compareContractions()
300 compare(c, (uint32_t)suffixes.getValue(), (uint32_t)baseSuffixes.getValue()); in compareContractions()
330 UCharsTrie::Iterator suffixes(p, 0, errorCode); in addContractions() local
331 while(suffixes.next(errorCode)) { in addContractions()
332 addSuffix(c, suffixes.getString()); in addContractions()
573 UCharsTrie::Iterator suffixes(p + 2, 0, errorCode); in handleContractions() local
574 while(suffixes.next(errorCode)) { in handleContractions()
575 suffix = &suffixes.getString(); in handleContractions()
[all …]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/coll/
DCollationIterator.java721 CharsTrie suffixes = new CharsTrie(trieChars, trieOffset); in nextCE32FromContraction() local
722 if(skipped != null && !skipped.isEmpty()) { skipped.saveTrieState(suffixes); } in nextCE32FromContraction()
723 BytesTrie.Result match = suffixes.firstForCodePoint(c); in nextCE32FromContraction()
727 ce32 = suffixes.getValue(); in nextCE32FromContraction()
731 if(skipped != null && !skipped.isEmpty()) { skipped.saveTrieState(suffixes); } in nextCE32FromContraction()
755 d, suffixes, ce32, lookAhead, c); in nextCE32FromContraction()
768 match = suffixes.nextForCodePoint(c); in nextCE32FromContraction()
775 CollationData d, CharsTrie suffixes, int ce32, in nextCE32FromDiscontiguousContraction() argument
818 suffixes.reset(); in nextCE32FromDiscontiguousContraction()
822 suffixes.firstForCodePoint(nextCodePoint()); in nextCE32FromDiscontiguousContraction()
[all …]
DTailoredSet.java293 CharsTrie.Iterator suffixes = new CharsTrie(p, pidx).iterator(); in compareContractions() local
304 if (suffixes.hasNext()) { in compareContractions()
305 te = suffixes.next(); in compareContractions()
365 CharsTrie.Iterator suffixes = new CharsTrie(p, pidx).iterator(); in addContractions() local
366 while (suffixes.hasNext()) { in addContractions()
367 Entry e = suffixes.next(); in addContractions()
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dcollationiterator.cpp503 UCharsTrie suffixes(p); in nextCE32FromContraction() local
504 if(skipped != NULL && !skipped->isEmpty()) { skipped->saveTrieState(suffixes); } in nextCE32FromContraction()
505 UStringTrieResult match = suffixes.firstForCodePoint(c); in nextCE32FromContraction()
509 ce32 = (uint32_t)suffixes.getValue(); in nextCE32FromContraction()
513 if(skipped != NULL && !skipped->isEmpty()) { skipped->saveTrieState(suffixes); } in nextCE32FromContraction()
537 d, suffixes, ce32, lookAhead, c, errorCode); in nextCE32FromContraction()
550 match = suffixes.nextForCodePoint(c); in nextCE32FromContraction()
558 const CollationData *d, UCharsTrie &suffixes, uint32_t ce32, in nextCE32FromDiscontiguousContraction() argument
608 suffixes.reset(); in nextCE32FromDiscontiguousContraction()
612 suffixes.firstForCodePoint(nextCodePoint(errorCode)); in nextCE32FromDiscontiguousContraction()
[all …]
Dcollationsets.cpp264 UCharsTrie::Iterator suffixes(p, 0, errorCode); in compareContractions() local
275 if(suffixes.next(errorCode)) { in compareContractions()
276 ts = &suffixes.getString(); in compareContractions()
300 compare(c, (uint32_t)suffixes.getValue(), (uint32_t)baseSuffixes.getValue()); in compareContractions()
330 UCharsTrie::Iterator suffixes(p, 0, errorCode); in addContractions() local
331 while(suffixes.next(errorCode)) { in addContractions()
332 addSuffix(c, suffixes.getString()); in addContractions()
573 UCharsTrie::Iterator suffixes(p + 2, 0, errorCode); in handleContractions() local
574 while(suffixes.next(errorCode)) { in handleContractions()
575 suffix = &suffixes.getString(); in handleContractions()
[all …]
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationIterator.java719 CharsTrie suffixes = new CharsTrie(trieChars, trieOffset); in nextCE32FromContraction() local
720 if(skipped != null && !skipped.isEmpty()) { skipped.saveTrieState(suffixes); } in nextCE32FromContraction()
721 BytesTrie.Result match = suffixes.firstForCodePoint(c); in nextCE32FromContraction()
725 ce32 = suffixes.getValue(); in nextCE32FromContraction()
729 if(skipped != null && !skipped.isEmpty()) { skipped.saveTrieState(suffixes); } in nextCE32FromContraction()
753 d, suffixes, ce32, lookAhead, c); in nextCE32FromContraction()
766 match = suffixes.nextForCodePoint(c); in nextCE32FromContraction()
773 CollationData d, CharsTrie suffixes, int ce32, in nextCE32FromDiscontiguousContraction() argument
816 suffixes.reset(); in nextCE32FromDiscontiguousContraction()
820 suffixes.firstForCodePoint(nextCodePoint()); in nextCE32FromDiscontiguousContraction()
[all …]
DTailoredSet.java291 CharsTrie.Iterator suffixes = new CharsTrie(p, pidx).iterator(); in compareContractions() local
302 if (suffixes.hasNext()) { in compareContractions()
303 te = suffixes.next(); in compareContractions()
363 CharsTrie.Iterator suffixes = new CharsTrie(p, pidx).iterator(); in addContractions() local
364 while (suffixes.hasNext()) { in addContractions()
365 Entry e = suffixes.next(); in addContractions()
/third_party/node/deps/icu-small/source/i18n/
Dcollationiterator.cpp503 UCharsTrie suffixes(p); in nextCE32FromContraction() local
504 if(skipped != NULL && !skipped->isEmpty()) { skipped->saveTrieState(suffixes); } in nextCE32FromContraction()
505 UStringTrieResult match = suffixes.firstForCodePoint(c); in nextCE32FromContraction()
509 ce32 = (uint32_t)suffixes.getValue(); in nextCE32FromContraction()
513 if(skipped != NULL && !skipped->isEmpty()) { skipped->saveTrieState(suffixes); } in nextCE32FromContraction()
537 d, suffixes, ce32, lookAhead, c, errorCode); in nextCE32FromContraction()
550 match = suffixes.nextForCodePoint(c); in nextCE32FromContraction()
558 const CollationData *d, UCharsTrie &suffixes, uint32_t ce32, in nextCE32FromDiscontiguousContraction() argument
608 suffixes.reset(); in nextCE32FromDiscontiguousContraction()
612 suffixes.firstForCodePoint(nextCodePoint(errorCode)); in nextCE32FromDiscontiguousContraction()
[all …]
Dcollationsets.cpp264 UCharsTrie::Iterator suffixes(p, 0, errorCode); in compareContractions() local
275 if(suffixes.next(errorCode)) { in compareContractions()
276 ts = &suffixes.getString(); in compareContractions()
300 compare(c, (uint32_t)suffixes.getValue(), (uint32_t)baseSuffixes.getValue()); in compareContractions()
330 UCharsTrie::Iterator suffixes(p, 0, errorCode); in addContractions() local
331 while(suffixes.next(errorCode)) { in addContractions()
332 addSuffix(c, suffixes.getString()); in addContractions()
573 UCharsTrie::Iterator suffixes(p + 2, 0, errorCode); in handleContractions() local
574 while(suffixes.next(errorCode)) { in handleContractions()
575 suffix = &suffixes.getString(); in handleContractions()
[all …]
/third_party/rust/crates/regex/src/
Dexec.rs90 suffixes: LiteralSearcher, field
125 suffixes: Literals, field
232 let mut suffixes = Some(Literals::empty()); in parse() localVariable
274 suffixes = None; in parse()
278 suffixes = None; in parse()
280 suffixes = suffixes.and_then(|mut suffixes| { in parse()
281 if !suffixes.union_suffixes(&expr) { in parse()
284 Some(suffixes) in parse()
293 suffixes: suffixes.unwrap_or_else(Literals::empty), in parse()
308 suffixes: LiteralSearcher::empty(), in build()
[all …]
/third_party/python/Tools/scripts/
Dsuff.py12 suffixes = {}
15 suffixes.setdefault(suff, []).append(filename)
16 for suff, filenames in sorted(suffixes.items()):
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/scripts/
Dupdate.py225 def list_files(src_base, src, dst_base, suffixes): argument
232 if path.splitext(filename)[1] in suffixes:
241 suffixes = {'.inc', '.h', '.def'}
249 for src, dst in list_files(LLVM_OBJS, subdir, dst_base, suffixes):
345 suffixes = {'.inc', '.h', '.def'}
347 for src, dst in list_files(LLVM_OBJS, src_dir, dst_base, suffixes):
/third_party/python/Lib/idlelib/
Dpathbrowser.py84 suffixes = importlib.machinery.EXTENSION_SUFFIXES[:]
85 suffixes += importlib.machinery.SOURCE_SUFFIXES
86 suffixes += importlib.machinery.BYTECODE_SUFFIXES
88 for suff in suffixes:
/third_party/python/Lib/test/test_importlib/
Dtest_windows.py118 suffixes = self.machinery.EXTENSION_SUFFIXES
122 untagged_i = suffixes.index(".pyd")
124 untagged_i = suffixes.index("_d.pyd")
127 self.assertIn(expected_tag, suffixes)
130 tagged_i = suffixes.index(expected_tag)
Dupdate-zips.py29 suffixes = '01', '02'
30 tuple(map(generate, suffixes))
/third_party/openssl/apps/
Drehash.c105 static const char *suffixes[] = { "", "r" }; variable
215 for (type = OSSL_NELEM(suffixes) - 1; type > 0; type--) { in handle_symlink()
216 const char *suffix = suffixes[type]; in handle_symlink()
220 i += strlen(suffixes[type]); in handle_symlink()
416 suffixes[bp->type], ep->old_id); in do_dir()
427 suffixes[bp->type], nextid); in do_dir()
449 suffixes[bp->type], ep->old_id); in do_dir()
/third_party/mesa3d/include/android_stub/backtrace/
DBacktraceMap.h153 void SetSuffixesToIgnore(std::vector<std::string> suffixes) { in SetSuffixesToIgnore() argument
154 suffixes_to_ignore_.insert(suffixes_to_ignore_.end(), suffixes.begin(), suffixes.end()); in SetSuffixesToIgnore()
/third_party/rust/crates/regex/src/literal/
Dimp.rs52 pub fn suffixes(lits: Literals) -> Self { in suffixes() method
53 let matcher = Matcher::suffixes(&lits); in suffixes()
177 fn suffixes(lits: &Literals) -> Self { in suffixes() method
178 let sset = SingleByteSet::suffixes(lits); in suffixes()
311 fn suffixes(lits: &Literals) -> SingleByteSet { in suffixes() method
/third_party/python/Doc/tools/extensions/
Dpatchlevel.py39 suffixes = {
45 release += suffixes[level] + str(int(d['PY_RELEASE_SERIAL']))

12345678910>>...16