HomeSort by relevance Sort by last modified time
    Searched refs:fixes (Results 1 - 25 of 40) sorted by null

1 2

  /frameworks/ex/common/tests/src/com/android/common/
Rfc822ValidatorTest.java 48 Map<String, String> fixes = new HashMap<String, String>(); local
49 fixes.put("a", "<a@gmail.com>");
50 fixes.put("a b", "<ab@gmail.com>");
51 fixes.put("a@b", "<a@b>");
52 fixes.put("()~><@not.work", "");
54 for (Map.Entry<String, String> e : fixes.entrySet()) {
63 Map<String, String> fixes = new HashMap<String, String>(); local
64 fixes.put("a", "<a>");
65 fixes.put("a b", "<a b>");
66 fixes.put("a@b", "<a@b>")
79 Map<String, String> fixes = new HashMap<String, String>(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
AddSuppressAttribute.java 135 * @param marker the marker to create fixes for
137 * @return a list of fixes for this marker, possibly empty
176 List<AddSuppressAttribute> fixes = Lists.newArrayListWithExpectedSize(2); local
177 fixes.add(new AddSuppressAttribute(editor, id, marker, element, desc, null));
192 fixes.add(new AddSuppressAttribute(editor, id, marker, element,
197 fixes.add(new AddSuppressAttribute(editor, id, marker, element,
204 return fixes;
212 * @param marker the marker to create fixes for
LintListDialog.java 214 List<LintFix> fixes = LintFix.getFixes(EclipseLintClient.getId(marker), marker); local
215 if (fixes == null) {
218 LintFix fix = fixes.get(0);
278 // Some fixes cannot be run in bulk
280 List<LintFix> fixes = LintFix.getFixes(EclipseLintClient.getId(marker), marker); local
281 if (fixes == null || !fixes.get(0).isBulkCapable()) {
LintFixGenerator.java 78 * The WST has some support for quick fixes, and I came across some forum posts
183 List<LintFix> fixes = LintFix.getFixes(id, marker); local
184 if (fixes != null) {
185 for (LintFix fix : fixes) {
296 List<AddSuppressAttribute> fixes = AddSuppressAttribute.createFixes(editor, local
298 if (fixes.size() > 0) {
300 fixes.get(0).apply(document);
LintViewPart.java 338 // Some fixes cannot be run in bulk
340 List<LintFix> fixes = LintFix.getFixes(EclipseLintClient.getId(marker), marker); local
341 if (fixes == null || !fixes.get(0).isBulkCapable()) {
491 List<LintFix> fixes = LintFix.getFixes(EclipseLintClient.getId(marker), local
493 if (fixes == null) {
496 LintFix fix = fixes.get(0);
  /external/elfutils/
elfutils.spec 188 - libebl: backend fixes for i386 TLS relocs; backend support for
190 - libcpu: disassembler fixes
191 - libdwfl: bug fixes
192 - libelf: bug fixes
193 - nm: bug fixes for handling corrupt input files
196 - Minor fixes for unreleased 0.136 release.
199 - libdwfl: bug fixes; new segment interfaces; all the libdwfl-based
203 - libdwfl: bug fixes
208 - libdwfl, libelf: bug fixes
213 - libdwfl: bug fixes and optimization in relocation handlin
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
support.py 38 "lib2to3.fixes.*" is used. options is an optional dictionary of options to
42 fixers = [fixer_pkg + ".fixes.fix_" + fix for fix in fixers]
44 fixers = refactor.get_fixers_from_package(fixer_pkg + ".fixes")
test_refactor.py 32 _2TO3_FIXERS = refactor.get_fixers_from_package("lib2to3.fixes")
135 for fixes in d.itervalues():
136 self.assertEqual(fixes, [no_head])
284 fixes = refactor.get_fixers_from_package("lib2to3.fixes")
285 self.check_file_refactoring(fn, fixes)
test_fixers.py 57 fixes = [self.fixer]
58 fixes.extend(names)
59 r = support.get_refactorer("lib2to3", fixes)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
support.py 38 "lib2to3.fixes.*" is used. options is an optional dictionary of options to
42 fixers = [fixer_pkg + ".fixes.fix_" + fix for fix in fixers]
44 fixers = refactor.get_fixers_from_package(fixer_pkg + ".fixes")
test_refactor.py 32 _2TO3_FIXERS = refactor.get_fixers_from_package("lib2to3.fixes")
135 for fixes in d.itervalues():
136 self.assertEqual(fixes, [no_head])
284 fixes = refactor.get_fixers_from_package("lib2to3.fixes")
285 self.check_file_refactoring(fn, fixes)
test_fixers.py 57 fixes = [self.fixer]
58 fixes.extend(names)
59 r = support.get_refactorer("lib2to3", fixes)
    [all...]
  /external/strace/
strace.spec 140 - biarch fixes (#179740, #192193, #171626, #173050, #218433, #218043)
144 - glibc-2.5 build fixes (#209856)
145 - memory corruption fixes (#200621
232 - new upstream version, misc fixes and updates (#128091, #129166, #128391, #129378, #130965, #131177)
235 - new upstream version, updates ioctl lists (#127398), fixes quotactl (#127393), more ioctl decoding (#126917)
238 - new upstream version, fixes x86-64 biarch support (#126547)
247 - new upstream version, more ioctls (#122257), minor fixes
250 - new upstream version, mq_* calls (#120701), -p vs NPTL (#120462), more fixes (#118694, #120541, #118685)
262 - new upstream version, more fixes (#108012, #105366, #105359, #105358)
274 - new upstream version, more fixes (#101499, #104365
    [all...]
  /external/chromium/chrome/browser/resources/file_manager/js/
util.js 43 * This toString() implementation fixes that.
  /ndk/sources/host-tools/nawk-20071023/
README 29 Changes, mostly bug fixes and occasional enhancements, are listed
30 in FIXES. If you distribute this code further, please please please
31 distribute FIXES with it. If you find errors, please report them
  /external/chromium_org/third_party/mesa/src/scons/
custom.py 43 import fixes namespace
  /external/mesa3d/scons/
custom.py 43 import fixes namespace
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_urllib.py 8 from lib2to3.fixes.fix_imports import alternates, FixImports
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_urllib.py 8 from lib2to3.fixes.fix_imports import alternates, FixImports
  /external/llvm/
README.android 83 * Our ARM code generation fixes that upstream hasn't accepted yet. (This
  /external/openssh/contrib/redhat/
openssh.spec 573 - remove explicit openssl requirement, fixes builddistro issue
588 - add in a couple of other fixes from Damien for inclusion in the errata
596 - update to 2.5.2p1 (includes endianness fixes in the rijndael implementation)
741 - Update to 2.1.1p4, which includes fixes for config file parsing problems.
746 - Update to 2.1.1p3, which includes fixes for X11 forwarding and strtok().
  /external/chromium_org/v8/test/webkit/fast/regex/
parentheses.js 238 /* The regexp on the prior line confuses Xcode syntax highlighting, this coment fixes it! */
242 /* The regexp on the prior line confuses Xcode syntax highlighting, this coment fixes it! */
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
date-format-tofte.js 177 // thanks to Matt Bannon for some much needed code-fixes here!
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
date-format-tofte.js 177 // thanks to Matt Bannon for some much needed code-fixes here!
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
date-format-tofte.js 177 // thanks to Matt Bannon for some much needed code-fixes here!

Completed in 2950 milliseconds

1 2