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

1 2 3 4 5 6 7 8 91011>>

  /external/srec/tools/grxmlcompile/
sub_min.cpp 65 int fix, six, fnxt, snxt, tof, tos, count; local
68 fix= FindFromIndex (firstId);
70 if (fix < 0 || six < 0)
77 while (fix < numArc && arc[forwardList[fix]]->GetFromId() == firstId
78 && arc[forwardList[fix]]->GetToId() == DISCARD_LABEL)
79 fix++;
80 if (fix < numArc && arc[forwardList[fix]]->GetFromId() == firstId)
81 fnxt= arc[forwardList[fix]]->GetFromId()
184 int fix, six, firstId, secondId, vertEnd; local
260 int fix, six, fmiss, smiss, nmatch, symTst, newId; local
359 int fix, six, symTst, numStart; local
    [all...]
  /external/chromium_org/content/browser/geolocation/
gps_location_provider_linux.cc 131 // GetPositionIfFixed returned true, yet we've not got a valid fix.
138 position->error_message = "Bad fix from gps";
151 if (isnan(gps_data_->fix.latitude) || isnan(gps_data_->fix.longitude)) {
156 position->latitude = gps_data_->fix.latitude;
157 position->longitude = gps_data_->fix.longitude;
159 if (!isnan(gps_data_->fix.epx) && !isnan(gps_data_->fix.epy)) {
160 position->accuracy = std::max(gps_data_->fix.epx, gps_data_->fix.epy)
    [all...]
  /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/chromium_org/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/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
  /device/generic/goldfish/gps/
gps_qemu.c 188 GpsLocation fix; member in struct:__anon1976
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.mk 16 -Wl,--fix-cortex-a8
armv7-a-neon.mk 28 -Wl,--fix-cortex-a8
  /libcore/crypto/src/main/native/
sub.mk 14 # 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 75 * to fix them. This can be used to strip results of incorrectly formatted
79 * attempt to fix them
141 String fix = removeIllegalCharacters(text.substring(0, index)); local
142 if (TextUtils.isEmpty(fix)) {
150 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 111 TypoFix fix = new TypoFix(mId, mMarker); local
112 fix.mTypo = typo;
113 fix.mReplacement = replacement;
114 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 110 - build fix for newer kernel headers (#457291)
111 - fix CLONE_VFORK handling (#455078)
117 - fix biarch stat64 decoding (#222275)
118 - fix spurious "..." in printing of environment strings (#358241)
120 - fix hang wait on exited child with exited child (#354261)
121 - fix biarch fork/vfork (-f) tracing (#447475)
122 - fix biarch printing of negative argument kill (#430585)
123 - fix biarch decoding of error return values (#447587)
124 - fix -f tracing of CLONE_VFORK (#455078)
125 - fix ia64 register clobberation in -f tracing (#453438
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/binomial_heap_base_/
split_join_fn_imps.hpp 84 other.m_p_root = other.fix(other.m_p_root);
110 base_type::m_p_root = fix(base_type::m_p_root);
218 p_lhs = fix(p_rhs);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/binomial_heap_base_/
split_join_fn_imps.hpp 84 other.m_p_root = other.fix(other.m_p_root);
110 base_type::m_p_root = fix(base_type::m_p_root);
218 p_lhs = fix(p_rhs);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/binomial_heap_base_/
split_join_fn_imps.hpp 84 other.m_p_root = other.fix(other.m_p_root);
110 base_type::m_p_root = fix(base_type::m_p_root);
218 p_lhs = fix(p_rhs);

Completed in 1832 milliseconds

1 2 3 4 5 6 7 8 91011>>