/third_party/typescript/src/services/refactors/ |
D | convertToOptionalChainExpression.ts | 52 occurrences: Occurrence[], property 110 return { finalExpression, occurrences: [condition], expression }; 113 const occurrences = getOccurrencesInExpression(finalExpression.expression, condition); constant 114 return occurrences ? { finalExpression, occurrences, expression } : 127 const occurrences = getOccurrencesInExpression(finalExpression.expression, expression.left); constant 128 return occurrences ? { finalExpression, occurrences, expression } : 136 const occurrences: Occurrence[] = []; constant 142 occurrences.push(match); 148 occurrences.push(finalMatch); 150 return occurrences.length > 0 ? occurrences: undefined; [all …]
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/ |
D | UTF16Test.java | 1045 int occurrences = 0; in TestIndexOf() local 1050 ++ occurrences; in TestIndexOf() 1054 if (occurrences != 6) { in TestIndexOf() 1056 + occurrences); in TestIndexOf() 1059 occurrences = 0; in TestIndexOf() 1064 ++ occurrences; in TestIndexOf() 1068 if (occurrences != 4) { in TestIndexOf() 1070 + occurrences); in TestIndexOf() 1073 occurrences = 0; in TestIndexOf() 1078 ++ occurrences; in TestIndexOf() [all …]
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/lang/ |
D | UTF16Test.java | 1039 int occurrences = 0; in TestIndexOf() local 1044 ++ occurrences; in TestIndexOf() 1048 if (occurrences != 6) { in TestIndexOf() 1050 + occurrences); in TestIndexOf() 1053 occurrences = 0; in TestIndexOf() 1058 ++ occurrences; in TestIndexOf() 1062 if (occurrences != 4) { in TestIndexOf() 1064 + occurrences); in TestIndexOf() 1067 occurrences = 0; in TestIndexOf() 1072 ++ occurrences; in TestIndexOf() [all …]
|
/third_party/icu/icu4c/source/test/intltest/ |
D | ustrtest.cpp | 719 uint16_t occurrences = 0; in TestSearching() local 723 (startPos = test1.indexOf(test2, startPos)) != -1 ? (++occurrences, startPos += 4) : 0) in TestSearching() 725 if (occurrences != 6) in TestSearching() 726 … errln(UnicodeString("indexOf failed: expected to find 6 occurrences, found ") + occurrences); in TestSearching() 728 for ( occurrences = 0, startPos = 10; in TestSearching() 730 (startPos = test1.indexOf(test2, startPos)) != -1 ? (++occurrences, startPos += 4) : 0) in TestSearching() 732 if (occurrences != 4) in TestSearching() 734 "expected to find 4 occurrences, found ") + occurrences); in TestSearching() 737 for ( occurrences = 0, startPos = 5; in TestSearching() 739 …(startPos = test1.indexOf(test2, startPos, endPos - startPos)) != -1 ? (++occurrences, startPos +=… in TestSearching() [all …]
|
/third_party/rust/crates/clap/tests/builder/ |
D | propagate_globals.rs | 57 fn top_can_access_flag(m: &ArgMatches, present: bool, occurrences: u8) -> bool { in top_can_access_flag() 59 && (m.get_one::<u8>("GLOBAL_FLAG").copied() == Some(occurrences)) in top_can_access_flag() 62 fn inner_can_access_flag(m: &ArgMatches, present: bool, occurrences: u8) -> bool { in inner_can_access_flag() 65 && (m.get_one::<u8>("GLOBAL_FLAG").copied() == Some(occurrences)) in inner_can_access_flag() 68 fn outer_can_access_flag(m: &ArgMatches, present: bool, occurrences: u8) -> bool { in outer_can_access_flag() 71 && (m.get_one::<u8>("GLOBAL_FLAG").copied() == Some(occurrences)) in outer_can_access_flag()
|
D | main.rs | 35 mod occurrences; module
|
/third_party/node/deps/v8/tools/ |
D | run-clang-tidy.py | 33 self.occurrences = set() 36 self.occurrences.add(file_path.lstrip()) 42 s = '[%s] #%d\n' % (self.warning_type, len(self.occurrences)) 44 s += ' ' + '\n '.join(self.occurrences) 52 return len(self.occurrences) < len(other.occurrences)
|
/third_party/skia/third_party/externals/icu/source/samples/strsrch/ |
D | readme.txt | 5 strsrch: a sample program which finds the occurrences of a pattern string in a source string, using… 9 Finding all occurrences of a pattern string in a given source string.
|
/third_party/icu/icu4c/source/samples/strsrch/ |
D | readme.txt | 5 strsrch: a sample program which finds the occurrences of a pattern string in a source string, using… 9 Finding all occurrences of a pattern string in a given source string.
|
/third_party/rust/crates/clap/tests/derive/ |
D | main.rs | 25 mod occurrences; module
|
/third_party/rust/crates/bindgen/book/src/ |
D | opaque.md | 7 occurrences of the type as an opaque blob of bytes with a size and
|
/third_party/node/deps/npm/tap-snapshots/test/lib/commands/ |
D | ls.js.test.cjs | 298 …s --parseable with filter arg > should output parseable contaning only occurrences of filtered by … 302 …le with filter arg nested dep > should output parseable contaning only occurrences of filtered pac… 310 …ble with multiple filter args > should output parseable contaning only occurrences of multiple fil… 650 …s/ls.js TAP ls with dot filter arg > should output tree contaning only occurrences of filtered by … 656 …mands/ls.js TAP ls with filter arg > should output tree contaning only occurrences of filtered by … 662 … TAP ls with filter arg nested dep > should output tree contaning only occurrences of filtered pac… 675 …s TAP ls with multiple filter args > should output tree contaning only occurrences of multiple fil…
|
/third_party/ltp/scripts/coccinelle/ |
D | libltp-test-macro.cocci | 100 // Replace any remaining occurrences of TEST
|
/third_party/rust/crates/clap/src/parser/matches/ |
D | arg_matches.rs | 1151 let occurrences = RawOccurrences { in try_get_raw_occurrences() localVariable 1156 Ok(Some(occurrences)) in try_get_raw_occurrences() 1203 let occurrences = Occurrences { in try_remove_occurrences() localVariable 1208 Ok(Some(occurrences)) in try_remove_occurrences()
|
/third_party/rust/crates/aho-corasick/ |
D | README.md | 3 A library for finding occurrences of many patterns at once with SIMD 34 This example shows how to search for occurrences of multiple patterns
|
/third_party/json/docs/mkdocs/docs/api/basic_json/ |
D | items.md | 97 occurrences of `#!cpp iterator_wrapper(j)` with `#!cpp j.items()`.
|
/third_party/cups-filters/mime/ |
D | cupsfilters.types | 51 # to lowercase. Multiple occurrences of a type will cause the provided
|
/third_party/mesa3d/docs/relnotes/ |
D | 11.0.7.rst | 123 - automake: fix some occurrences of hardcoded -ldl and -lpthread
|
/third_party/node/deps/openssl/openssl/ |
D | NOTES-ANDROID.md | 82 remove occurrences of -ldl and -pie flags. You would also need to pick
|
/third_party/openssl/ |
D | NOTES-ANDROID.md | 82 remove occurrences of -ldl and -pie flags. You would also need to pick
|
/third_party/python/Doc/library/ |
D | getopt.rst | 63 allowing multiple occurrences. Long and short options may be mixed.
|
D | mailbox.rst | 461 occurrences of "From " at the beginning of a line in a message body are 462 transformed to ">From " when storing the message, although occurrences of ">From 721 are "From ", but additional occurrences of "From " are not transformed to 723 prevent mistaking such occurrences for the starts of subsequent messages. 1029 should be the concatenation in any order of zero or more occurrences of 1400 should be the concatenation in any order of zero or more occurrences of
|
/third_party/elfutils/doc/ |
D | ChangeLog | 65 * debuginfod-find.1: Removed redundant occurrences of environment
|
/third_party/python/Doc/reference/ |
D | introduction.rst | 110 one occurrences (in other words, the enclosed phrase is optional). The ``*``
|
/third_party/python/Doc/c-api/ |
D | sequence.rst | 96 Return the number of occurrences of *value* in *o*, that is, return the number
|