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

1 2 3 4 5 6

  /external/compiler-rt/test/timing/
timing.h 8 static double conversion = 0.0; local
10 if( 0.0 == conversion )
23 conversion = (double) freq * (1e-9 * (double) info.numer / (double) info.denom);
26 return (double) rawTime * conversion;
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
FormatFlagsConversionMismatchExceptionTest.java 48 char conversion = 'T'; local
50 flags, conversion);
59 char conversion = 'T'; local
61 flags, conversion);
62 assertEquals(conversion, formatFlagsConversionMismatchException
72 char conversion = 'T'; local
74 flags, conversion);
91 assertEquals("Conversion", initEx.getConversion(), desrEx
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/
numeric_cast_traits.hpp 12 #include <boost/numeric/conversion/converter_policies.hpp>
28 #include <boost/numeric/conversion/detail/numeric_cast_traits.hpp>
cast.hpp 6 // See library home page at http://www.boost.org/libs/numeric/conversion
28 # include<boost/numeric/conversion/detail/old_numeric_cast.hpp>
33 #include <boost/numeric/conversion/converter.hpp>
34 #include <boost/numeric/conversion/numeric_cast_traits.hpp>
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/detail/
numeric_cast_traits.hpp 12 #include <boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_common.hpp>
15 #include <boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_long_long.hpp>
61 #define BOOST_PP_ITERATION_PARAMS_1 (3, (0, BOOST_PP_DEC(BOOST_PP_SEQ_SIZE(BOOST_NUMERIC_CONVERSION_SEQ_A())), <boost/numeric/conversion/detail/numeric_cast_traits.hpp>))
96 #define BOOST_PP_ITERATION_PARAMS_1 (3, (0, BOOST_PP_DEC(BOOST_PP_SEQ_SIZE(BOOST_NUMERIC_CONVERSION_SEQ_A())), <boost/numeric/conversion/detail/numeric_cast_traits.hpp>))
113 #define BOOST_PP_ITERATION_PARAMS_2 (3, (0, BOOST_PP_DEC(BOOST_PP_SEQ_SIZE(BOOST_NUMERIC_CONVERSION_SEQ_B())), <boost/numeric/conversion/detail/numeric_cast_traits.hpp>))
  /external/chromium_org/chrome/browser/performance_monitor/
metric.cc 81 int64 conversion = 0; local
82 base::StringToInt64(metric_time, &conversion);
83 time = base::Time::FromInternalValue(conversion);
  /external/bison/lib/
printf-parse.h 64 char conversion; /* d i o u x X f F e E g G a A c s p n U % but not C S */ member in struct:__anon2746
94 uint8_t conversion; /* d i o u x X f F e E g G a A c s p n U % but not C S */ member in struct:__anon2748
122 uint16_t conversion; /* d i o u x X f F e E g G a A c s p n U % but not C S */ member in struct:__anon2750
150 uint32_t conversion; /* d i o u x X f F e E g G a A c s p n U % but not C S */ member in struct:__anon2752
vasnprintf.c 571 /* Use a single integer to floating-point conversion. */
    [all...]
  /external/e2fsprogs/intl/
printf-parse.h 48 char conversion; /* d i o u x X f e E g G c s p n U % but not C S */ member in struct:__anon19240
wprintf-parse.h 48 wchar_t conversion; /* d i o u x X f e E g G c s p n U % but not C S */ member in struct:__anon19242
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.databinding_1.3.100.I20100601-0800.jar 
  /external/clang/test/SemaCXX/
explicit.cpp 23 namespace Conversion {
43 class Y { }; // expected-note {{candidate constructor (the implicit copy constructor) not viable: no known conversion from 'Z' to 'const Y &' for 1st argument}} \
44 expected-note {{candidate constructor (the implicit move constructor) not viable: no known conversion from 'Z' to 'Y &&' for 1st argument}} \
45 expected-note {{candidate constructor (the implicit copy constructor) not viable: no known conversion from 'Z' to 'const Y &' for 1st argument}} \
46 expected-note {{candidate constructor (the implicit move constructor) not viable: no known conversion from 'Z' to 'Y &&' for 1st argument}}
55 Y y2 = z; // expected-error {{no viable conversion from 'Z' to 'Y'}}
65 const Y& y6 = z; // expected-error {{no viable conversion from 'Z' to 'const Y'}}
75 explicit operator bool(); // expected-note {{conversion to integral type 'bool'}}
108 switch (n) {} // expected-error {{switch condition type 'NotBool' requires explicit conversion to 'bool'}} \
131 explicit operator int(); // expected-note {{conversion to integral type 'int' declared here}
    [all...]
for-range-dereference.cpp 20 expected-note 5 {{candidate function not viable: no known conversion}}
30 Data * begin(ADLNoEnd); // expected-note 6 {{candidate function not viable: no known conversion}}
87 // expected-error@-1 {{no viable conversion from 'Data' to 'Data *'}}
  /external/icu4c/samples/
readme.txt 11 case - demonstrates how to do Unicode case conversion in C and C++.
35 ucnv - demonstrates the use of ICU codepage conversion
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
APIspecutil.py 140 """Return the destination type of the conversion, or None."""
165 conversion = "some"
167 conversion = "none"
169 conversion = "all"
171 return (dst_param.base_type(), conversion)
205 [5] -- how often does the conversion happen
209 dst_type, conversion = _Conversion(func, param)
212 return (param.name, param.type, vec_size, dst_type, valid_values, conversion)
  /external/mesa3d/src/mesa/main/
APIspecutil.py 140 """Return the destination type of the conversion, or None."""
165 conversion = "some"
167 conversion = "none"
169 conversion = "all"
171 return (dst_param.base_type(), conversion)
205 [5] -- how often does the conversion happen
209 dst_type, conversion = _Conversion(func, param)
212 return (param.name, param.type, vec_size, dst_type, valid_values, conversion)
  /bionic/libc/bionic/
libc_logging.cpp 190 static void format_integer(char* buf, size_t buf_size, uint64_t value, char conversion) {
191 // Decode the conversion specifier.
192 int is_signed = (conversion == 'd' || conversion == 'i' || conversion == 'o');
194 if (conversion == 'x' || conversion == 'X') {
196 } else if (conversion == 'o') {
199 bool caps = (conversion == 'X');
332 /* conversion specifier *
    [all...]
  /external/chromium_org/v8/test/webkit/
dfg-uint32-to-number-skip-then-exit.js 25 "This tests that a skipped conversion of uint32 to number does not confuse OSR exit into thinking that the conversion is dead."
  /external/jmonkeyengine/engine/src/test/jme3test/conversion/
TestTriangleStrip.java 33 package jme3test.conversion;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
string.py 36 # Case conversion helpers
557 for literal_text, field_name, format_spec, conversion in \
574 # do any conversion on the resulting object
575 obj = self.convert_field(obj, conversion)
602 def convert_field(self, value, conversion):
603 # do any conversion on the resulting object
604 if conversion is None:
606 elif conversion == 's':
608 elif conversion == 'r':
610 raise ValueError("Unknown conversion specifier {0!s}".format(conversion)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
string.py 36 # Case conversion helpers
557 for literal_text, field_name, format_spec, conversion in \
574 # do any conversion on the resulting object
575 obj = self.convert_field(obj, conversion)
602 def convert_field(self, value, conversion):
603 # do any conversion on the resulting object
604 if conversion is None:
606 elif conversion == 's':
608 elif conversion == 'r':
610 raise ValueError("Unknown conversion specifier {0!s}".format(conversion)
    [all...]
  /external/chromium_org/v8/test/mjsunit/
elements-transition.js 41 // triggers an IC miss, upon which the conversion stub is generated, but the
42 // actual conversion is done in runtime. The second array, arriving at
43 // the previously patched IC, is then converted using the conversion stub.
51 // Trigger conversion to fast double elements at length-5.
57 // Trigger conversion to fast object elements at length-3.
  /external/v8/test/mjsunit/
elements-transition.js 41 // triggers an IC miss, upon which the conversion stub is generated, but the
42 // actual conversion is done in runtime. The second array, arriving at
43 // the previously patched IC, is then converted using the conversion stub.
51 // Trigger conversion to fast double elements at length-5.
57 // Trigger conversion to fast object elements at length-3.
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/
diff_parser.py 65 for pattern, conversion in conversion_patterns:
68 return conversion(matched)
  /external/valgrind/main/none/tests/ppc32/
test_isa_2_06_part3.stdout.exp 421 Test VSX vector integer to float conversion instructions
    [all...]

Completed in 812 milliseconds

1 2 3 4 5 6