Home
last modified time | relevance | path

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

12345678910>>...13

/external/python/cpython2/Tools/scripts/
Dsuff.py11 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/utils/lit/lit/
DTestingConfig.py64 suffixes = set(),
119 def __init__(self, parent, name, suffixes, test_format, argument
126 self.suffixes = set(suffixes)
147 self.suffixes = set(self.suffixes)
/external/swiftshader/third_party/llvm-7.0/llvm/utils/lit/lit/
DTestingConfig.py55 suffixes = set(),
106 def __init__(self, parent, name, suffixes, test_format, argument
113 self.suffixes = set(suffixes)
135 self.suffixes = set(self.suffixes)
DLitConfig.py47 self.suffixes = ['cfg.py', 'cfg']
48 self.config_names = ['%s.%s' % (self.config_prefix,x) for x in self.suffixes]
49 self.site_config_names = ['%s.site.%s' % (self.config_prefix,x) for x in self.suffixes]
50 self.local_config_names = ['%s.local.%s' % (self.config_prefix,x) for x in self.suffixes]
/external/python/cpython3/Tools/scripts/
Dsuff.py12 suffixes = {}
15 suffixes.setdefault(suff, []).append(filename)
16 for suff, filenames in sorted(suffixes.items()):
/external/python/cpython3/Lib/test/test_importlib/
Dtest_windows.py92 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/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 …]
/external/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 …]
/external/icu/android_icu4j/src/main/java/android/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 …]
/external/swiftshader/third_party/llvm-7.0/scripts/
Dupdate.py103 def list_files(src_base, src, dst_base, suffixes): argument
110 if os.path.splitext(filename)[1] in suffixes:
118 suffixes = {'.inc', '.h', '.def'}
131 for src, dst in list_files(LLVM_OBJS, subdir, dst_base, suffixes):
237 suffixes = {'.inc', '.h', '.def'}
239 for src, dst in list_files(LLVM_OBJS, src_dir, dst_base, suffixes):
/external/gflags/src/
Dgflags_completions.cc471 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/
Dpathbrowser.py84 suffixes = importlib.machinery.EXTENSION_SUFFIXES[:]
85 suffixes += importlib.machinery.SOURCE_SUFFIXES
86 suffixes += importlib.machinery.BYTECODE_SUFFIXES
88 for suff in suffixes:
/external/clang/test/Parser/
Dcxx0x-literal-operators.cpp6 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/
Dmaps_engine.py101 suffixes = ["shp", "dbf", "prj", "shx"]
103 for suffix in suffixes:
124 for suffix in suffixes:
/external/llvm/test/MC/ARM/
Dinst-arm-suffixes.s12 @ CHECK-ERROR: width suffixes are invalid in ARM mode
14 @ CHECK-ERROR: width suffixes are invalid in ARM mode
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/ARM/
Dinst-arm-suffixes.s12 @ CHECK-ERROR: width suffixes are invalid in ARM mode
14 @ CHECK-ERROR: width suffixes are invalid in ARM mode
/external/llvm/test/CodeGen/X86/
Dlit.local.cfg1 # FIXME: For now, override suffixes to exclude any .s tests, because some of the
7 config.suffixes = ['.ll', '.mir', '.test', '.txt']
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
Dlit.local.cfg1 # FIXME: For now, override suffixes to exclude any .s tests, because some of the
7 config.suffixes = ['.ll', '.mir', '.test', '.txt']
/external/tensorflow/tensorflow/core/kernels/
Dragged_tensor_to_sparse_kernel.cc192 std::vector<std::vector<int64>> suffixes{{}}; in MakeIndexSuffixes() local
195 for (const auto& suffix : suffixes) { in MakeIndexSuffixes()
201 suffixes.swap(new_suffixes); in MakeIndexSuffixes()
203 return suffixes; in MakeIndexSuffixes()
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/WinEH/
Dlit.local.cfg1 # FIXME: For now, override suffixes to exclude any .s tests, because some of the
7 config.suffixes = ['.ll', '.test', '.txt']
/external/llvm/test/CodeGen/WinEH/
Dlit.local.cfg1 # FIXME: For now, override suffixes to exclude any .s tests, because some of the
7 config.suffixes = ['.ll', '.test', '.txt']
/external/compiler-rt/test/dfsan/
Dlit.cfg21 # Default test suffixes.
22 config.suffixes = ['.c', '.cc', '.cpp']
/external/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()
/external/python/cpython3/Doc/tools/extensions/
Dpatchlevel.py39 suffixes = {
45 release += suffixes[level] + str(int(d['PY_RELEASE_SERIAL']))

12345678910>>...13