/packages/apps/UnifiedEmail/src/org/apache/commons/io/filefilter/ |
SuffixFileFilter.java | 50 /** The filename suffixes to search for */ 51 private final String[] suffixes; field in class:SuffixFileFilter 79 this.suffixes = new String[] {suffix}; 89 * @param suffixes the suffixes to allow, must not be null 92 public SuffixFileFilter(String[] suffixes) { 93 this(suffixes, IOCase.SENSITIVE); 103 * @param suffixes the suffixes to allow, must not be null 108 public SuffixFileFilter(String[] suffixes, IOCase caseSensitivity) [all...] |
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/ |
tls-err-3.s | 1 ; Check that TLS PIC suffixes aren't accepted when non-PIC.
|
/external/clang/test/Parser/ |
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/chromium-trace/catapult/third_party/closure_linter/closure_linter/common/ |
simplefileflags.py | 49 def MatchesSuffixes(filename, suffixes): 50 """Returns whether the given filename matches one of the given suffixes. 54 suffixes: Sequence of suffixes to check. 57 Whether the given filename matches one of the given suffixes. 60 return suffix in suffixes 63 def _GetUserSpecifiedFiles(argv, suffixes): 71 suffixes: Expected suffixes for the file type being checked. 89 if MatchesSuffixes(f, suffixes) [all...] |
/external/avahi/avahi-python/avahi/ |
ServiceTypeDatabase.py.in | 35 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 [all...] |
/external/llvm/test/MC/ARM/ |
inst-arm-suffixes.s | 12 @ CHECK-ERROR: width suffixes are invalid in ARM mode 14 @ CHECK-ERROR: width suffixes are invalid in ARM mode
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/z80/ |
suffix.d | 2 #name: suffixes
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/ |
inst-po-2.l | 3 [^:]*:10: Error: width suffixes are invalid in ARM mode 4 [^:]*:11: Error: width suffixes are invalid in ARM mode
|
/external/chromium-trace/catapult/third_party/closure_linter/closure_linter/ |
fixjsstyle.py | 46 suffixes = ['.js'] 48 suffixes += ['.%s' % ext for ext in FLAGS.additional_extensions] 50 files = fileflags.GetFileList(argv, 'JavaScript', suffixes)
|
gjslint.py | 157 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)
|
/ndk/sources/host-tools/make-3.81/ |
rule.h | 26 char **suffixes; /* Suffixes (after `%') of each target. */ member in struct:rule
|
rule.c | 54 /* Pointer to structure for the file .SUFFIXES 55 whose dependencies are the suffixes to be searched. */ 215 All rules for the suffixes on the .SUFFIXES list 226 /* Compute maximum length of all the suffixes. */ 371 r->suffixes = (char **) xmalloc (2 * sizeof (char *)); 375 r->suffixes[1] = 0; 382 r->suffixes[0] = find_percent (r->targets[0]); 383 if (r->suffixes[0] == 0) 387 ++r->suffixes[0] [all...] |
/cts/tests/tests/drm/src/android/drm/cts/ |
DrmSupportInfoTest.java | 43 // Note that null file suffix is valid (for files without suffixes) 121 Iterator<String> suffixes = info.getFileSuffixIterator(); local 122 assertTrue(suffixes.hasNext()); 123 String suffix = (String) suffixes.next();
|
/frameworks/base/core/tests/coretests/src/android/app/ |
SuggestionProvider.java | 70 String[] suffixes = { "", "a", " foo", "XXXXXXXXXXXXXXXXX" }; local 71 for (String suffix : suffixes) {
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/ |
rep-suffix.d | 2 #name: i386 rep prefix (with suffixes)
|
x86-64-crx-suffix.d | 2 #name: x86-64 control register related opcodes (with suffixes)
|
x86-64-drx-suffix.d | 2 #name: x86-64 debug register related opcodes (with suffixes)
|
x86-64-rep-suffix.d | 2 #name: x86-64 rep prefix (with suffixes)
|
/prebuilts/go/darwin-x86/doc/codewalk/ |
markov.go | 13 potential textual suffixes for a given prefix. Consider this text: 18 and suffixes, or "chain": (This table assumes a prefix length of two words.) 34 example), choose one of the suffixes associated with that prefix at random 38 until we can't find any suffixes for the current prefix or we exceed the word 73 // Chain contains a map ("chain") of prefixes to a list of suffixes. 75 // A suffix is a single word. A prefix can have multiple suffixes. 87 // parses it into prefixes and suffixes that are stored in Chain.
|
/prebuilts/go/linux-x86/doc/codewalk/ |
markov.go | 13 potential textual suffixes for a given prefix. Consider this text: 18 and suffixes, or "chain": (This table assumes a prefix length of two words.) 34 example), choose one of the suffixes associated with that prefix at random 38 until we can't find any suffixes for the current prefix or we exceed the word 73 // Chain contains a map ("chain") of prefixes to a list of suffixes. 75 // A suffix is a single word. A prefix can have multiple suffixes. 87 // parses it into prefixes and suffixes that are stored in Chain.
|
/external/skia/bench/ |
gen_bench_expectations.py | 119 """Gets all the suffixes available in the directory""" 126 def download_bench_data(builder, commit_hash, suffixes, directory): 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)
|
/system/extras/tests/bootloader/ |
haltest.py | 33 suffixes = dict() 37 suffixes[suffix] = slot 38 self.assertEqual(len(suffixes), num_slots)
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/ilp32/ |
x86-64-crx-suffix.d | 3 #name: x86-64 (ILP32) control register related opcodes (with suffixes)
|
x86-64-drx-suffix.d | 3 #name: x86-64 (ILP32) debug register related opcodes (with suffixes)
|
x86-64-rep-suffix.d | 3 #name: x86-64 (ILP32) rep prefix (with suffixes)
|