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

1 2 3 4

  /frameworks/ex/common/tests/src/com/android/common/
Rfc822ValidatorTest.java 92 Map<String, String> fixes = new HashMap<String, String>(); local
93 fixes.put("a", "<a@gmail.com>");
94 fixes.put("a b", "<ab@gmail.com>");
95 fixes.put("a@b", "<a@b>");
96 fixes.put("()~><@not.work", "");
98 for (Map.Entry<String, String> e : fixes.entrySet()) {
107 Map<String, String> fixes = new HashMap<String, String>(); local
108 fixes.put("a", "<a>");
109 fixes.put("a b", "<a b>");
110 fixes.put("a@b", "<a@b>")
123 Map<String, String> fixes = new HashMap<String, String>(); local
    [all...]
  /external/fonttools/Lib/fontTools/misc/
sstruct.py 63 formatstring, names, fixes = getformat(fmt)
69 if name in fixes:
71 value = fl2fi(value, fixes[name])
82 formatstring, names, fixes = getformat(fmt)
91 if name in fixes:
93 value = fi2fl(value, fixes[name])
107 formatstring, names, fixes = getformat(fmt)
137 formatstring, names, fixes = _formatcache[fmt]
142 fixes = {}
167 fixes[name] = afte
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
sre_compile.py 75 fixes = _ignorecase_fixes
77 fixes = None
82 if fixes and lo in fixes:
87 for k in (lo,) + fixes[lo]:
107 _compile_charset(av, flags, code, fixup, fixes)
228 def _compile_charset(charset, flags, code, fixup=None, fixes=None):
231 for op, av in _optimize_charset(charset, fixup, fixes,
256 def _optimize_charset(charset, fixup, fixes, isunicode):
268 if fixes and i in fixes:
    [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/fonttools/Lib/fontTools/ttLib/tables/
F_F_T_M_.py 29 formatstring, names, fixes = sstruct.getformat(FFTMFormat)
_m_a_x_p.py 127 formatstring, names, fixes = sstruct.getformat(maxpFormat_0_5)
129 formatstring, names_1_0, fixes = sstruct.getformat(maxpFormat_1_0_add)
_h_e_a_d.py 50 formatstring, names, fixes = sstruct.getformat(headFormat)
_v_h_e_a.py 70 formatstring, names, fixes = sstruct.getformat(vheaFormat)
_h_h_e_a.py 83 formatstring, names, fixes = sstruct.getformat(hheaFormat)
O_S_2f_2.py 27 formatstring, names, fixes = sstruct.getformat(panoseFormat)
152 formatstring, names, fixes = sstruct.getformat(format)
  /prebuilts/go/darwin-x86/src/cmd/fix/
main_test.go 57 for _, fix := range fixes {
110 t.Errorf("%s: applied fixes during second round", tt.Name)
115 t.Errorf("%s: changed output after second round of fixes.\n--- output after first round\n%s\n--- output after second round\n%s",
main.go 33 "force these fixes to run even if the code looks updated")
46 sort.Sort(byName(fixes))
47 for _, f := range fixes {
64 sort.Sort(byDate(fixes))
139 // Apply all fixes to file.
142 for _, fix := range fixes {
  /prebuilts/go/linux-x86/src/cmd/fix/
main_test.go 57 for _, fix := range fixes {
110 t.Errorf("%s: applied fixes during second round", tt.Name)
115 t.Errorf("%s: changed output after second round of fixes.\n--- output after first round\n%s\n--- output after second round\n%s",
main.go 33 "force these fixes to run even if the code looks updated")
46 sort.Sort(byName(fixes))
47 for _, f := range fixes {
64 sort.Sort(byDate(fixes))
139 // Apply all fixes to file.
142 for _, fix := range fixes {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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")
129 for fixes in d.itervalues():
130 self.assertEqual(fixes, [no_head])
248 fixes = refactor.get_fixers_from_package("lib2to3.fixes")
249 self.check_file_refactoring(fn, fixes)
  /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)
  /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)
  /external/gptfdisk/
current.spec 16 partitioning tools; the fixparts utility (in the fixparts package) fixes
72 disks. Removes stray GPT data, fixes mis-sized extended partitions,
  /external/junit-params/
RELEASES.md 130 ### Bug fixes and improvements
132 Thanks to the rest of contributors for lots of bug fixes and improvements:
179 ### Bug fixes and improvements
181 Thanks to the rest of contributors for lots of bug fixes and improvements:

Completed in 1348 milliseconds

1 2 3 4