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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_fpformat.py 8 fix, sci, NotANumber = fpformat.fix, fpformat.sci, fpformat.NotANumber
14 # (It's obsolescent because fix(n,d) == "%.*f"%(d,n) and
24 result = fix(n, digits)
45 self.assertEqual(fix(100.0/3, 3), '33.333')
57 self.assertEqual(fix(1.0, 1000), '1.'+('0'*1000))
60 # This behavior is inconsistent. sci raises an exception; fix doesn't.
62 self.assertEqual(fix(yacht, 10), yacht)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_fpformat.py 8 fix, sci, NotANumber = fpformat.fix, fpformat.sci, fpformat.NotANumber
14 # (It's obsolescent because fix(n,d) == "%.*f"%(d,n) and
24 result = fix(n, digits)
45 self.assertEqual(fix(100.0/3, 3), '33.333')
57 self.assertEqual(fix(1.0, 1000), '1.'+('0'*1000))
60 # This behavior is inconsistent. sci raises an exception; fix doesn't.
62 self.assertEqual(fix(yacht, 10), yacht)
  /external/libunwind/src/hppa/
siglongjmp.S 10 #warning fix me
  /external/v8/test/mjsunit/harmony/regress/
regress-405844.js 7 var proxy = Proxy.create({ fix: function() { return {}; } });
11 var functionProxy = Proxy.createFunction({ fix: function() { return {}; } }, function(){});
  /external/v8/test/mjsunit/harmony/
proxies-hash.js 43 function TestSet(construct, fix) {
44 TestWithProxies(TestSet2, construct, fix)
47 function TestSet2(construct, fix, create) {
48 var handler = {fix: function() { return {} }}
52 fix(p3)
61 fix(p1)
62 fix(p2)
80 function TestMap(construct, fix) {
81 TestWithProxies(TestMap2, construct, fix)
84 function TestMap2(construct, fix, create)
    [all...]
  /external/javassist/src/main/javassist/
ClassMap.java 83 * <code>fix</code> method.
87 * @see #fix(String)
143 public void fix(CtClass clazz) { method in class:ClassMap
144 fix(clazz.getName());
150 public void fix(String name) { method in class:ClassMap
  /external/deqp/scripts/src_util/
check_include_guards.py 111 parser.add_option("-x", "--fix", action="store_true", dest="fix", default=False, help="attempt to fix include guards (use with caution)")
114 fix = options.fix variable
134 if not fix:
139 if fix:
  /device/generic/goldfish/gps/
gps_qemu.c 188 GpsLocation fix; member in struct:__anon3141
232 r->fix.size = sizeof(r->fix);
242 if (cb != NULL && r->fix.flags != 0) {
243 D("%s: sending latest fix to new callback", __FUNCTION__);
244 r->callback( &r->fix );
245 r->fix.flags = 0;
283 r->fix.timestamp = (long long)fix_time * 1000;
353 r->fix.flags |= GPS_LOCATION_HAS_LAT_LONG;
354 r->fix.latitude = lat
    [all...]
  /build/core/combo/arch/arm/
armv7-a-neon.mk 20 -Wl,--no-fix-cortex-a8
25 -Wl,--fix-cortex-a8
30 -Wl,--no-fix-cortex-a8
35 -Wl,--fix-cortex-a8
armv7-a.mk 16 -Wl,--fix-cortex-a8
  /external/conscrypt/src/main/native/
sub.mk 16 # TODO: fix this requirement
  /libcore/dalvik/src/main/native/
sub.mk 13 # TODO: fix this requirement
  /frameworks/base/tests/FixVibrateSetting/src/com/android/fixvibratesetting/
FixVibrateSetting.java 50 mFix = findViewById(R.id.fix);
83 fix(); method
101 private void fix() { method in class:FixVibrateSetting
  /frameworks/ex/common/java/com/android/common/
Rfc822Validator.java 105 * to fix them. This can be used to strip results of incorrectly formatted
109 * attempt to fix them
171 String fix = removeIllegalCharacters(text.substring(0, index)); local
172 if (TextUtils.isEmpty(fix)) {
180 tokens[i].setAddress(fix + "@" + (!emptyDomain ? domain : mDomain));
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRFileStream.m 96 #pragma mark fix these NSLog calls
101 #pragma mark fix these NSLog calls
  /ndk/
GNUmakefile 33 $(error,Please fix the problem by reinstalling to a different location.)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
TypoFix.java 112 TypoFix fix = new TypoFix(mId, mMarker); local
113 fix.mTypo = typo;
114 fix.mReplacement = replacement;
115 allFixes.add(fix);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
support.py 42 fixers = [fixer_pkg + ".fixes.fix_" + fix for fix in fixers]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
support.py 42 fixers = [fixer_pkg + ".fixes.fix_" + fix for fix in fixers]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
main.py 147 help="Fix up doctests only")
148 parser.add_option("-f", "--fix", action="append", default=[],
149 help="Each FIX specifies a transformation; default: all")
198 print "Available transformations for the -f/--fix option:"
222 unwanted_fixes = set(fixer_pkg + ".fix_" + fix for fix in options.nofix)
224 if options.fix:
226 for fix in options.fix:
227 if fix == "all"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
main.py 147 help="Fix up doctests only")
148 parser.add_option("-f", "--fix", action="append", default=[],
149 help="Each FIX specifies a transformation; default: all")
198 print "Available transformations for the -f/--fix option:"
222 unwanted_fixes = set(fixer_pkg + ".fix_" + fix for fix in options.nofix)
224 if options.fix:
226 for fix in options.fix:
227 if fix == "all"
    [all...]
  /external/strace/
strace.spec 106 - Fix FTBFS
153 - build fix for newer kernel headers (#457291)
154 - fix CLONE_VFORK handling (#455078)
160 - fix biarch stat64 decoding (#222275)
161 - fix spurious "..." in printing of environment strings (#358241)
163 - fix hang wait on exited child with exited child (#354261)
164 - fix biarch fork/vfork (-f) tracing (#447475)
165 - fix biarch printing of negative argument kill (#430585)
166 - fix biarch decoding of error return values (#447587)
167 - fix -f tracing of CLONE_VFORK (#455078
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/binomial_heap_base_/
split_join_fn_imps.hpp 75 other.m_p_root = other.fix(other.m_p_root);
94 base_type::m_p_root = fix(base_type::m_p_root);
185 p_lhs = fix(p_rhs);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/binomial_heap_base_/
split_join_fn_imps.hpp 75 other.m_p_root = other.fix(other.m_p_root);
94 base_type::m_p_root = fix(base_type::m_p_root);
185 p_lhs = fix(p_rhs);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/binomial_heap_base_/
split_join_fn_imps.hpp 75 other.m_p_root = other.fix(other.m_p_root);
94 base_type::m_p_root = fix(base_type::m_p_root);
185 p_lhs = fix(p_rhs);

Completed in 1911 milliseconds

1 2 3 4 5 6 7 8 91011>>