Home
last modified time | relevance | path

Searched refs:sset (Results 1 - 17 of 17) sorted by relevance

/third_party/rust/crates/regex/src/literal/
H A Dimp.rs83 Bytes(ref sset) => sset.find(haystack).map(|i| (i, i + 1)), in find()
124 Matcher::Bytes(ref sset) => LiteralIter::Bytes(&sset.dense), in iter()
151 Bytes(ref sset) => sset.dense.len(), in len()
163 Bytes(ref sset) => sset.approximate_size(), in approximate_size()
173 let sset = SingleByteSet::prefixes(lits); in prefixes()
174 Matcher::new(lits, sset) in prefixes()
295 let mut sset = SingleByteSet::new(); prefixes() variables
312 let mut sset = SingleByteSet::new(); suffixes() variables
[all...]
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationDataReader.java342 USerializedSet sset = new USerializedSet(); in read()
345 sset.getSet(unsafeData, 0); in read()
346 int count = sset.countRanges(); in read()
349 sset.getRange(i, range); in read()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/coll/
H A DCollationDataReader.java343 USerializedSet sset = new USerializedSet(); in read()
346 sset.getSet(unsafeData, 0); in read()
347 int count = sset.countRanges(); in read()
350 sset.getRange(i, range); in read()
/third_party/icu/icu4c/source/i18n/
H A Dcollationdatareader.cpp305 USerializedSet sset; in read() local
307 if(!uset_getSerializedSet(&sset, unsafeData, length / 2)) { in read()
311 int32_t count = uset_getSerializedRangeCount(&sset); in read()
314 uset_getSerializedRange(&sset, i, &start, &end); in read()
/third_party/node/deps/icu-small/source/i18n/
H A Dcollationdatareader.cpp305 USerializedSet sset; in read() local
307 if(!uset_getSerializedSet(&sset, unsafeData, length / 2)) { in read()
311 int32_t count = uset_getSerializedRangeCount(&sset); in read()
314 uset_getSerializedRange(&sset, i, &start, &end); in read()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dcollationdatareader.cpp305 USerializedSet sset; in read() local
307 if(!uset_getSerializedSet(&sset, unsafeData, length / 2)) { in read()
311 int32_t count = uset_getSerializedRangeCount(&sset); in read()
314 uset_getSerializedRange(&sset, i, &start, &end); in read()
/third_party/gn/src/gn/
H A Dninja_rust_binary_target_writer_unittest.cc1862 Target sset(setup.settings(), Label(SourceDir("//sset/"), "bar")); in TEST_F()
1863 sset.set_output_type(Target::SOURCE_SET); in TEST_F()
1864 sset.visibility().SetPublic(); in TEST_F()
1865 sset.sources().push_back(SourceFile("//sset/input1.cc")); in TEST_F()
1866 sset.source_types_used().Set(SourceFile::SOURCE_CPP); in TEST_F()
1867 sset.SetToolchain(setup.toolchain()); in TEST_F()
1868 sset.public_deps().push_back(LabelTargetPair(&rlib_pub)); in TEST_F()
1869 sset in TEST_F()
[all...]
/third_party/skia/src/ports/
H A DSkFontMgr_custom.cpp214 sk_sp<SkFontStyleSet> sset(this->matchFamily(familyName));
215 return sset->matchStyle(fontStyle);
H A DSkFontMgr_preview.cpp67 sk_sp<SkFontStyleSet> sset(this->matchFamily(familyName)); in onMatchFamilyStyle()
68 return sset->matchStyle(style); in onMatchFamilyStyle()
H A DSkFontMgr_android.cpp357 sk_sp<SkFontStyleSet> sset(this->matchFamily(familyName));
358 return sset->matchStyle(style);
H A DSkFontMgr_win_dw.cpp584 sk_sp<SkFontStyleSet> sset(this->matchFamily(familyName)); in onMatchFamilyStyle()
585 return sset->matchStyle(fontstyle); in onMatchFamilyStyle()
H A DSkFontHost_win.cpp2264 sk_sp<SkFontStyleSet> sset(this->matchFamily(familyName));
2265 return sset->matchStyle(fontstyle);
/third_party/icu/icu4c/source/test/cintltst/
H A Dusettest.c545 USerializedSet sset; in TestSerialized() local
569 uset_getSerializedSet(&sset, buffer, length); in TestSerialized()
571 if(uset_contains(set, c)!=uset_serializedContains(&sset, c)) { in TestSerialized()
/third_party/alsa-utils/amixer/
H A Damixer.c79 printf(" sset sID P set contents for one mixer simple control\n"); in help()
1443 static int sset(unsigned int argc, char *argv[], int roflag, int keep_handle) in sset() function
1765 if (!strcmp(args[0], "sset") || !strcmp(args[0], "set")) in exec_stdin()
1766 err = sset(narg - 1, args + 1, 0, 1); in exec_stdin()
1896 } else if (!strcmp(argv[optind], "sset") || !strcmp(argv[optind], "set")) { in main()
1897 retval = sset(argc - optind - 1, argc - optind > 1 ? argv + optind + 1 : NULL, 0, 0) ? 1 : 0; in main()
1899 retval = sset(argc - optind - 1, argc - optind > 1 ? argv + optind + 1 : NULL, 1, 0) ? 1 : 0; in main()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/normalizer/
H A DBasicTest.java2514 USerializedSet sset=new USerializedSet(); in TestSerializedSet()
2524 sset.getSet(serialized, 0); in TestSerializedSet()
2528 int count=sset.countRanges(); in TestSerializedSet()
2530 sset.getRange(j, startEnd); in TestSerializedSet()
2540 if(!sset.contains(start)){ in TestSerializedSet()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
H A DBasicTest.java2511 USerializedSet sset=new USerializedSet(); in TestSerializedSet()
2521 sset.getSet(serialized, 0); in TestSerializedSet()
2525 int count=sset.countRanges(); in TestSerializedSet()
2527 sset.getRange(j, startEnd); in TestSerializedSet()
2537 if(!sset.contains(start)){ in TestSerializedSet()
/third_party/skia/third_party/externals/sfntly/java/lib/
H A Dicu4j-4_8_1_1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/ibm/ com/ibm/icu/ com/ibm/icu/impl/ ...

Completed in 35 milliseconds