HomeSort by relevance Sort by last modified time
    Searched defs:fixes (Results 1 - 7 of 7) sorted by null

  /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...]
  /external/chromium_org/third_party/mesa/src/scons/
custom.py 43 import fixes namespace
  /external/mesa3d/scons/
custom.py 43 import fixes namespace
  /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
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);
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()) {
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);

Completed in 6061 milliseconds