Home
last modified time | relevance | path

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

1234567

/external/chromium-trace/catapult/third_party/closure_linter/closure_linter/common/
Dsimplefileflags.py49 def MatchesSuffixes(filename, suffixes): argument
60 return suffix in suffixes
63 def _GetUserSpecifiedFiles(argv, suffixes): argument
89 if MatchesSuffixes(f, suffixes):
94 def _GetRecursiveFiles(suffixes): argument
109 if MatchesSuffixes(f, suffixes):
114 def GetAllSpecifiedFiles(argv, suffixes): argument
126 files = _GetUserSpecifiedFiles(argv, suffixes)
129 files += _GetRecursiveFiles(suffixes)
176 def GetFileList(argv, file_type, suffixes): argument
[all …]
/external/avahi/avahi-python/avahi/
DServiceTypeDatabase.py.in35 self.suffixes = ()
40 self.suffixes += (l[0] + "@" + l[1], )
42 self.suffixes += (l[0], )
51 self.suffixes += (k + "@" + l[1], )
53 self.suffixes += (k, )
56 self.suffixes = tuple(map(lambda x: "["+x+"]", self.suffixes)) + ("", )
60 for suffix in self.suffixes:
74 for suffix in self.suffixes:
83 for suffix in self.suffixes:
/external/chromium-trace/catapult/third_party/closure_linter/closure_linter/
Dgjslint.py157 suffixes = ['.js']
159 suffixes += ['.%s' % ext for ext in FLAGS.additional_extensions]
161 suffixes += ['.html', '.htm']
162 return fileflags.GetFileList(argv, 'JavaScript', suffixes)
266 suffixes = ['.js']
268 suffixes += ['.%s' % ext for ext in FLAGS.additional_extensions]
270 suffixes += ['.html', '.htm']
271 paths = fileflags.GetFileList(argv, 'JavaScript', suffixes)
Dfixjsstyle.py46 suffixes = ['.js']
48 suffixes += ['.%s' % ext for ext in FLAGS.additional_extensions]
50 files = fileflags.GetFileList(argv, 'JavaScript', suffixes)
/external/llvm/utils/lit/lit/
DTestingConfig.py63 suffixes = set(),
118 def __init__(self, parent, name, suffixes, test_format, argument
124 self.suffixes = set(suffixes)
143 self.suffixes = set(self.suffixes)
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationIterator.java711 CharsTrie suffixes = new CharsTrie(trieChars, trieOffset); in nextCE32FromContraction() local
712 if(skipped != null && !skipped.isEmpty()) { skipped.saveTrieState(suffixes); } in nextCE32FromContraction()
713 BytesTrie.Result match = suffixes.firstForCodePoint(c); in nextCE32FromContraction()
717 ce32 = suffixes.getValue(); in nextCE32FromContraction()
721 if(skipped != null && !skipped.isEmpty()) { skipped.saveTrieState(suffixes); } in nextCE32FromContraction()
745 d, suffixes, ce32, lookAhead, c); in nextCE32FromContraction()
758 match = suffixes.nextForCodePoint(c); in nextCE32FromContraction()
765 CollationData d, CharsTrie suffixes, int ce32, in nextCE32FromDiscontiguousContraction() argument
808 suffixes.reset(); in nextCE32FromDiscontiguousContraction()
812 suffixes.firstForCodePoint(nextCodePoint()); in nextCE32FromDiscontiguousContraction()
[all …]
DTailoredSet.java288 CharsTrie.Iterator suffixes = new CharsTrie(p, pidx).iterator(); in compareContractions() local
299 if (suffixes.hasNext()) { in compareContractions()
300 te = suffixes.next(); in compareContractions()
360 CharsTrie.Iterator suffixes = new CharsTrie(p, pidx).iterator(); in addContractions() local
361 while (suffixes.hasNext()) { in addContractions()
362 Entry e = suffixes.next(); in addContractions()
/external/icu/icu4c/source/i18n/
Dcollationiterator.cpp501 UCharsTrie suffixes(p); in nextCE32FromContraction() local
502 if(skipped != NULL && !skipped->isEmpty()) { skipped->saveTrieState(suffixes); } in nextCE32FromContraction()
503 UStringTrieResult match = suffixes.firstForCodePoint(c); in nextCE32FromContraction()
507 ce32 = (uint32_t)suffixes.getValue(); in nextCE32FromContraction()
511 if(skipped != NULL && !skipped->isEmpty()) { skipped->saveTrieState(suffixes); } in nextCE32FromContraction()
535 d, suffixes, ce32, lookAhead, c, errorCode); in nextCE32FromContraction()
548 match = suffixes.nextForCodePoint(c); in nextCE32FromContraction()
556 const CollationData *d, UCharsTrie &suffixes, uint32_t ce32, in nextCE32FromDiscontiguousContraction() argument
606 suffixes.reset(); in nextCE32FromDiscontiguousContraction()
610 suffixes.firstForCodePoint(nextCodePoint(errorCode)); in nextCE32FromDiscontiguousContraction()
[all …]
Dcollationsets.cpp262 UCharsTrie::Iterator suffixes(p, 0, errorCode); in compareContractions() local
273 if(suffixes.next(errorCode)) { in compareContractions()
274 ts = &suffixes.getString(); in compareContractions()
298 compare(c, (uint32_t)suffixes.getValue(), (uint32_t)baseSuffixes.getValue()); in compareContractions()
328 UCharsTrie::Iterator suffixes(p, 0, errorCode); in addContractions() local
329 while(suffixes.next(errorCode)) { in addContractions()
330 addSuffix(c, suffixes.getString()); in addContractions()
571 UCharsTrie::Iterator suffixes(p + 2, 0, errorCode); in handleContractions() local
572 while(suffixes.next(errorCode)) { in handleContractions()
573 suffix = &suffixes.getString(); in handleContractions()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
DCollationIterator.java713 CharsTrie suffixes = new CharsTrie(trieChars, trieOffset); in nextCE32FromContraction() local
714 if(skipped != null && !skipped.isEmpty()) { skipped.saveTrieState(suffixes); } in nextCE32FromContraction()
715 BytesTrie.Result match = suffixes.firstForCodePoint(c); in nextCE32FromContraction()
719 ce32 = suffixes.getValue(); in nextCE32FromContraction()
723 if(skipped != null && !skipped.isEmpty()) { skipped.saveTrieState(suffixes); } in nextCE32FromContraction()
747 d, suffixes, ce32, lookAhead, c); in nextCE32FromContraction()
760 match = suffixes.nextForCodePoint(c); in nextCE32FromContraction()
767 CollationData d, CharsTrie suffixes, int ce32, in nextCE32FromDiscontiguousContraction() argument
810 suffixes.reset(); in nextCE32FromDiscontiguousContraction()
814 suffixes.firstForCodePoint(nextCodePoint()); in nextCE32FromDiscontiguousContraction()
[all …]
DTailoredSet.java290 CharsTrie.Iterator suffixes = new CharsTrie(p, pidx).iterator(); in compareContractions() local
301 if (suffixes.hasNext()) { in compareContractions()
302 te = suffixes.next(); in compareContractions()
362 CharsTrie.Iterator suffixes = new CharsTrie(p, pidx).iterator(); in addContractions() local
363 while (suffixes.hasNext()) { in addContractions()
364 Entry e = suffixes.next(); in addContractions()
/external/skia/bench/
Dgen_bench_expectations.py126 def download_bench_data(builder, commit_hash, suffixes, directory): argument
130 for suffix in suffixes:
179 suffixes = get_file_suffixes(args.git_revision, args.input_dir)
180 print "Using suffixes: {}".format(suffixes)
187 builder, commit, suffixes, args.input_dir)
/external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
Dutil.py120 def ObjectToURI(obj, *suffixes): argument
135 return 'file://%s' % os.path.abspath(os.path.join(obj.name, *suffixes))
137 return 'file://%s' % os.path.join(obj, *suffixes)
139 if suffixes:
140 uri = _NormalizeURI('/'.join([uri] + list(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/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/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/opencv3/modules/ml/test/
Dtest_save_load.cpp164 : cvtest::BaseTest(), modelName(_modelName), suffixes(_suffixes) in CV_LegacyTest()
174 if (idx >= suffixes.size()) in run()
176 int found = (int)suffixes.find(';', idx); in run()
177 string piece = suffixes.substr(idx, found - idx); in run()
254 string suffixes; member in CV_LegacyTest
/external/toybox/toys/pending/
Ddd.c72 static struct pair suffixes[] = { variable
116 for (i = 0; i < ARRAY_LEN(suffixes); i++) in strsuftoll()
117 if (!strcmp(endp, suffixes[i].name)) idx = i; in strsuftoll()
118 if (idx == -1 || (max/suffixes[idx].val < result)) in strsuftoll()
120 result = result* suffixes[idx].val; in strsuftoll()
/external/compiler-rt/test/msan/
Dlit.cfg28 # Default test suffixes.
29 config.suffixes = ['.c', '.cc', '.cpp']
/external/selinux/policycoreutils/mcstrans/src/
Dmcstrans.c82 affix_t *suffixes; member
308 while(group->suffixes) { in destroy_group()
309 affix_t *next = group->suffixes->next; in destroy_group()
310 free(group->suffixes->text); in destroy_group()
311 free(group->suffixes); in destroy_group()
312 group->suffixes=next; in destroy_group()
831 if (append (&group->suffixes, tok) < 0) in process_trans()
1068 if (g->suffixes) in build_regexps()
1073 if (g->suffixes) { in build_regexps()
1076 for (a = g->suffixes; a; a = a->next) { in build_regexps()
[all …]
/external/compiler-rt/unittests/
Dlit.common.unit.cfg15 # Setup test suffixes.
16 config.suffixes = []
/external/compiler-rt/test/safestack/
Dlit.cfg11 # Test suffixes.
12 config.suffixes = ['.c', '.cc', '.cpp', '.m', '.mm', '.ll', '.test']
/external/mesa3d/src/mesa/program/
Dnvfragparse.c84 GLuint suffixes; member
224 result.suffixes = 0; in MatchInstruction()
231 result.suffixes = 0; in MatchInstruction()
234 result.suffixes |= _R; in MatchInstruction()
238 result.suffixes |= _H; in MatchInstruction()
242 result.suffixes |= _X; in MatchInstruction()
246 result.suffixes |= _C; in MatchInstruction()
251 result.suffixes |= _S; in MatchInstruction()
1351 inst->Precision = instMatch.suffixes & (_R | _H | _X); in Parse_InstructionSequence()
1352 inst->SaturateMode = (instMatch.suffixes & (_S)) in Parse_InstructionSequence()
[all …]

1234567