/external/rust/crates/regex-syntax/src/hir/literal/ |
D | mod.rs | 65 pub fn suffixes(expr: &Hir) -> Literals { in suffixes() method 326 suffixes(expr, &mut lits); in union_suffixes() 657 fn suffixes(expr: &Hir, lits: &mut Literals) { in suffixes() function 680 suffixes(&**hir, lits); in suffixes() 684 repeat_zero_or_one_literals(&x.hir, lits, suffixes); in suffixes() 687 repeat_zero_or_more_literals(&x.hir, lits, suffixes); in suffixes() 690 repeat_one_or_more_literals(&x.hir, lits, suffixes); in suffixes() 699 &x.hir, min, max, x.greedy, lits, suffixes, in suffixes() 704 HirKind::Concat(ref es) if es.len() == 1 => suffixes(&es[0], lits), in suffixes() 716 suffixes(e, &mut lits2); in suffixes() [all …]
|
/external/python/cpython2/Tools/scripts/ |
D | suff.py | 11 suffixes = {} 14 if not suffixes.has_key(suff): 15 suffixes[suff] = [] 16 suffixes[suff].append(filename) 17 keys = suffixes.keys() 20 print repr(suff), len(suffixes[suff])
|
/external/llvm-project/llvm/cmake/modules/ |
D | GetLibraryName.cmake | 5 set(suffixes ${CMAKE_FIND_LIBRARY_SUFFIXES}) variable 7 list(FILTER suffixes EXCLUDE REGEX "^\\s*$") 12 if(suffixes) 13 string(REPLACE ";" "|" suffixes "${suffixes}") 14 string(REGEX REPLACE "(${suffixes})$" "" path ${path})
|
/external/python/cpython3/Tools/c-analyzer/c_analyzer/common/ |
D | files.py | 112 def iter_files_by_suffix(root, suffixes, relparent=None, *, argument 120 if isinstance(suffixes, str): 121 suffixes = [suffixes] 123 for suffix in suffixes:
|
/external/llvm/utils/lit/lit/ |
D | TestingConfig.py | 64 suffixes = set(), 119 def __init__(self, parent, name, suffixes, test_format, argument 126 self.suffixes = set(suffixes) 147 self.suffixes = set(self.suffixes)
|
/external/llvm-project/llvm/utils/lit/lit/ |
D | TestingConfig.py | 54 suffixes = set(), 104 def __init__(self, parent, name, suffixes, test_format, argument 111 self.suffixes = set(suffixes) 146 self.suffixes = set(self.suffixes)
|
/external/python/cpython3/Tools/scripts/ |
D | suff.py | 12 suffixes = {} 15 suffixes.setdefault(suff, []).append(filename) 16 for suff, filenames in sorted(suffixes.items()):
|
/external/python/cpython3/Lib/test/test_importlib/ |
D | test_windows.py | 92 suffixes = self.machinery.EXTENSION_SUFFIXES 96 untagged_i = suffixes.index(".pyd") 98 untagged_i = suffixes.index("_d.pyd") 101 self.assertIn(expected_tag, suffixes) 104 tagged_i = suffixes.index(expected_tag)
|
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/ |
D | readability-uppercase-literal-suffix.rst | 7 By default, only the suffixes that begin with ``l`` (``l``, ``ll``, ``lu``, 16 All valid combinations of suffixes are supported. 33 Optionally, a list of the destination suffixes can be provided. When the 36 diagnostic is issued. This allows for fine-grained control of what suffixes to 56 about literal suffixes inside macros.
|
/external/python/cpython3/Tools/c-analyzer/cpython/ |
D | find.py | 42 suffixes = ('.c',) 43 filenames = _iter_files(dirnames, suffixes) 68 suffixes = ('.c',) 69 filenames = _iter_files(dirnames, suffixes)
|
/external/icu/icu4c/source/i18n/ |
D | collationiterator.cpp | 503 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 …]
|
D | collationsets.cpp | 264 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 …]
|
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
D | CollationIterator.java | 719 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 …]
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/ |
D | CollationIterator.java | 721 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 …]
|
/external/gflags/src/ |
D | gflags_completions.cc | 471 static void PushNameWithSuffix(vector<string>* suffixes, const char* suffix) { in PushNameWithSuffix() argument 472 suffixes->push_back( in PushNameWithSuffix() 483 vector<string> suffixes; in TryFindModuleAndPackageDir() local 488 PushNameWithSuffix(&suffixes, "."); in TryFindModuleAndPackageDir() 489 PushNameWithSuffix(&suffixes, "-main."); in TryFindModuleAndPackageDir() 490 PushNameWithSuffix(&suffixes, "_main."); in TryFindModuleAndPackageDir() 492 PushNameWithSuffix(&suffixes, "-test."); in TryFindModuleAndPackageDir() 493 PushNameWithSuffix(&suffixes, "_test."); in TryFindModuleAndPackageDir() 494 PushNameWithSuffix(&suffixes, "-unittest."); in TryFindModuleAndPackageDir() 495 PushNameWithSuffix(&suffixes, "_unittest."); in TryFindModuleAndPackageDir() [all …]
|
/external/python/cpython3/Lib/idlelib/ |
D | pathbrowser.py | 84 suffixes = importlib.machinery.EXTENSION_SUFFIXES[:] 85 suffixes += importlib.machinery.SOURCE_SUFFIXES 86 suffixes += importlib.machinery.BYTECODE_SUFFIXES 88 for suff in suffixes:
|
/external/rust/crates/regex/src/ |
D | exec.rs | 90 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 …]
|
/external/swiftshader/third_party/llvm-10.0/scripts/ |
D | update.py | 225 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):
|
/external/llvm-project/llvm/test/CodeGen/AMDGPU/ |
D | lo16-hi16-illegal-copy.mir | 1 …x802 -start-before postrapseudos -asm-verbose=0 -amdgpu-keep-16-bit-reg-suffixes -verify-machinein… 2 …x802 -start-before postrapseudos -asm-verbose=0 -amdgpu-keep-16-bit-reg-suffixes -verify-machinein… 3 …x900 -start-before postrapseudos -asm-verbose=0 -amdgpu-keep-16-bit-reg-suffixes -verify-machinein… 4 …x900 -start-before postrapseudos -asm-verbose=0 -amdgpu-keep-16-bit-reg-suffixes -verify-machinein…
|
/external/llvm-project/clang/test/Parser/ |
D | cxx0x-literal-operators.cpp | 6 expected-warning{{user-defined literal suffixes not starting with '_' are reserved}} 8 expected-warning{{user-defined literal suffixes not starting with '_' are reserved}}
|
/external/clang/test/Parser/ |
D | cxx0x-literal-operators.cpp | 6 expected-warning{{user-defined literal suffixes not starting with '_' are reserved}} 8 expected-warning{{user-defined literal suffixes not starting with '_' are reserved}}
|
/external/python/google-api-python-client/samples/maps_engine/ |
D | maps_engine.py | 101 suffixes = ["shp", "dbf", "prj", "shx"] 103 for suffix in suffixes: 124 for suffix in suffixes:
|
/external/llvm/test/MC/ARM/ |
D | inst-arm-suffixes.s | 12 @ CHECK-ERROR: width suffixes are invalid in ARM mode 14 @ CHECK-ERROR: width suffixes are invalid in ARM mode
|
/external/llvm-project/llvm/test/MC/ARM/ |
D | inst-arm-suffixes.s | 12 @ CHECK-ERROR: width suffixes are invalid in ARM mode 14 @ CHECK-ERROR: width suffixes are invalid in ARM mode
|
/external/llvm-project/lldb/source/Plugins/Language/ObjCPlusPlus/ |
D | ObjCPlusPlusLanguage.cpp | 20 const auto suffixes = {".h", ".mm"}; in LLDB_PLUGIN_DEFINE() local 21 for (auto suffix : suffixes) { in LLDB_PLUGIN_DEFINE()
|