HomeSort by relevance Sort by last modified time
    Searched refs:suffixes (Results 26 - 50 of 112) sorted by null

12 3 4 5

  /external/clang/tools/driver/
driver.cpp 201 // suffixes[] contains the list of known driver suffixes.
202 // Suffixes are compared against the program name in order.
216 } suffixes [] = { local
243 for (i = 0; i < sizeof(suffixes) / sizeof(suffixes[0]); ++i) {
244 if (ProgNameRef.endswith(suffixes[i].Suffix)) {
249 if (suffixes[i].ModeFlag)
250 ArgVector.insert(it, suffixes[i].ModeFlag);
257 ProgNameRef.size() - strlen(suffixes[i].Suffix))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
PathBrowser.py 73 suffixes = imp.get_suffixes()
75 for suff, mode, flag in suffixes:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
PathBrowser.py 73 suffixes = imp.get_suffixes()
75 for suff, mode, flag in suffixes:
  /external/chromium_org/net/tools/tld_cleanup/
make_dafsa.py 32 suffixes are compressed so that the graph gets diamond shaped. Finally
295 suffixes = frozenset(to_words(node))
296 if suffixes not in nodemap:
297 nodemap[suffixes] = (node[0], [join(child) for child in node[1]])
298 return nodemap[suffixes]
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_linux_test.cc 239 const char *suffixes[] = { "", "-linux", ".1.2", "-linux.1.2" }; local
243 for (uptr j = 0; j < ARRAY_SIZE(suffixes); j++) {
246 paths[i], base_names[k], suffixes[j]);
  /external/qemu/android/
snapshot.c 168 static const char suffixes[NB_SUFFIXES] = "KMGT"; local
180 suffixes[i]);
185 suffixes[i]);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
rebaseline_unittest.py 122 options = MockOptions(builder="MOCK SnowLeopard", suffixes="txt", verbose=True, test="failures/expected/image.html", results_directory=None)
149 options = MockOptions(builder="MOCK Win7", suffixes="txt", verbose=True, test="failures/expected/image.html", results_directory=None)
177 options = MockOptions(builder="MOCK Win7", suffixes="txt", verbose=True, test="failures/expected/image.html", results_directory=None)
209 options = MockOptions(builder="MOCK Win7", suffixes="txt", verbose=True, test="failures/expected/image.html", results_directory=None)
227 self.options = MockOptions(builder="WebKit Mac10.7", test="userscripts/another-test.html", suffixes="txt", results_directory=None)
243 self.options.suffixes = "png,wav,txt"
297 options = MockOptions(optimize=True, builder="MOCK Win7", suffixes="txt",
373 [[['python', 'echo', 'optimize-baselines', '--no-modify-scm', '--suffixes', '', 'userscripts/first-test.html', '--verbose']]])
384 [[['python', 'echo', 'copy-existing-baselines-internal', '--suffixes', 'txt,png', '--builder', 'MOCK builder', '--test', 'userscripts/first-test.html', '--verbose']],
385 [['python', 'echo', 'rebaseline-test-internal', '--suffixes', 'txt,png', '--builder', 'MOCK builder', '--test', 'userscripts/first-test.html', '--verbose']]
    [all...]
rebaseline.py 71 suffixes_option = optparse.make_option("--suffixes", default=','.join(BASELINE_SUFFIX_LIST), action="store",
179 for suffix in options.suffixes.split(','):
221 self._baseline_suffix_list = options.suffixes.split(',')
257 self._baseline_suffix_list = options.suffixes.split(',')
304 self._baseline_suffix_list = options.suffixes.split(',')
390 suffixes = ','.join(actual_failures_suffixes)
391 cmd_line = ['--suffixes', suffixes, '--builder', builder, '--test', test]
438 cmd_line = ['--no-modify-scm', '--suffixes', ','.join(all_suffixes), test]
508 for builder, suffixes in sorted(builders_to_check.items())
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
test_expectations.py     [all...]
  /ndk/sources/host-tools/make-3.81/
implicit.c 328 char *suffix = rule->suffixes[i];
469 + (rule->suffixes[matches[i]] - rule->targets[matches[i]]) - 1;
957 rule->suffixes[i] - rule->targets[i] - 1);
958 p += rule->suffixes[i] - rule->targets[i] - 1;
961 bcopy (rule->suffixes[i], p,
962 rule->lens[i] - (rule->suffixes[i] - rule->targets[i]) + 1);
  /external/chromium_org/chrome/browser/chromeos/file_manager/
file_tasks.h 188 // Update the default file handler for the given sets of suffixes and MIME
192 const std::set<std::string>& suffixes,
file_tasks.cc 145 const std::set<std::string>& suffixes,
160 if (!suffixes.empty()) {
163 for (std::set<std::string>::const_iterator iter = suffixes.begin();
164 iter != suffixes.end(); ++iter) {
166 // Suffixes are case insensitive.
file_tasks_unittest.cc 51 const base::DictionaryValue& suffixes) {
55 pref_service->Set(prefs::kDefaultTasksBySuffix, suffixes);
310 base::DictionaryValue suffixes; local
311 suffixes.SetStringWithoutPathExpansion(
314 UpdateDefaultTaskPreferences(&pref_service, empty, suffixes);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
nvfragparse.c 72 /* Optional suffixes */
84 GLuint suffixes; member in struct:instruction_pattern
224 result.suffixes = 0;
231 result.suffixes = 0;
234 result.suffixes |= _R;
238 result.suffixes |= _H;
242 result.suffixes |= _X;
246 result.suffixes |= _C;
251 result.suffixes |= _S;
    [all...]
  /external/chromium_org/third_party/skia/dm/
DMWriteTask.cpp 18 // Splits off the last N suffixes of name (splitting on _) and appends them to out.
25 // We're splitting off suffixes from the back to front.
33 const int suffixes = parent.depth() + 1; local
35 const int totalSuffixLength = split_suffixes(suffixes, name.c_str(), suffixList);
  /external/jsoncpp/
doxybuild.py 17 suffixes = ('win32' in sys.platform ) and '.exe .com .bat .cmd' or ''
19 for name in [filename+ext for ext in suffixes.split()]:
  /external/mesa3d/src/mesa/program/
nvfragparse.c 72 /* Optional suffixes */
84 GLuint suffixes; member in struct:instruction_pattern
224 result.suffixes = 0;
231 result.suffixes = 0;
234 result.suffixes |= _R;
238 result.suffixes |= _H;
242 result.suffixes |= _X;
246 result.suffixes |= _C;
251 result.suffixes |= _S;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssist.java 1248 List<Object> suffixes = new ArrayList<Object>(); local
    [all...]
  /external/chromium_org/v8/tools/
gc-nvp-trace-processor.py 335 suffixes = ['bytes', 'kB', 'MB', 'GB']
337 for i in range(len(suffixes)):
339 return "%.1f" % (float(size) / power) + " " + suffixes[i]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
imputil.py 77 # Initialize the set of suffixes that we recognize and import.
530 self.suffixes = [ ]
534 self.suffixes.append((suffix, importFunc))
567 for suffix, importFunc in self.suffixes:
mimetypes.py 15 suffix_map -- dictionary mapping suffixes to suffixes
16 encodings_map -- dictionary mapping suffixes to encodings
17 types_map -- dictionary mapping suffixes to types
103 mappings are table driven. Encoding suffixes are case
104 sensitive; type suffixes are first tried case sensitive, then
107 The suffixes .tgz, .taz and .tz (case sensitive!) are all
224 type, suffixes = words[0], words[1:]
225 for suff in suffixes:
283 driven. Encoding suffixes are case sensitive; type suffixes ar
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
imputil.py 77 # Initialize the set of suffixes that we recognize and import.
530 self.suffixes = [ ]
534 self.suffixes.append((suffix, importFunc))
567 for suffix, importFunc in self.suffixes:
mimetypes.py 15 suffix_map -- dictionary mapping suffixes to suffixes
16 encodings_map -- dictionary mapping suffixes to encodings
17 types_map -- dictionary mapping suffixes to types
103 mappings are table driven. Encoding suffixes are case
104 sensitive; type suffixes are first tried case sensitive, then
107 The suffixes .tgz, .taz and .tz (case sensitive!) are all
224 type, suffixes = words[0], words[1:]
225 for suff in suffixes:
283 driven. Encoding suffixes are case sensitive; type suffixes ar
    [all...]
  /external/llvm/utils/lit/lit/formats/
base.py 26 if ext in localConfig.suffixes:
  /external/iptables/extensions/
libxt_rateest.c 65 } suffixes[] = { variable in typeref:struct:rate_suffix
102 for (s = suffixes; s->name; ++s) {

Completed in 2936 milliseconds

12 3 4 5