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

1 2 3

  /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
  /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:__anon2308
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:__anon2310
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:__anon2312
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:__anon2314
vasnprintf.c 571 /* Use a single integer to floating-point conversion. */
    [all...]
printf-parse.c 445 /* Read the conversion character. */
560 /* Unknown conversion character. */
577 dp->conversion = c;
  /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:__anon7223
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:__anon7225
vasnprintf.c 222 if (dp->conversion == '%')
238 if (dp->conversion == 'n')
325 switch (dp->conversion)
556 *p = dp->conversion;
  /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 *'}}
conversion.cpp 19 return (E - I); // expected-warning {{implicit conversion loses integer precision}}
27 return x; // expected-warning {{implicit conversion loses integer precision}}
57 // This file tests -Wnull-conversion, a subcategory of -Wconversion
61 int a = NULL; // expected-warning {{implicit conversion of NULL constant to 'int'}}
63 b = NULL; // expected-warning {{implicit conversion of NULL constant to 'int'}}
65 int c = ((((NULL)))); // expected-warning {{implicit conversion of NULL constant to 'int'}}
67 d = ((((NULL)))); // expected-warning {{implicit conversion of NULL constant to 'int'}}
68 bool bl = NULL; // expected-warning {{implicit conversion of NULL constant to 'bool'}}
69 char ch = NULL; // expected-warning {{implicit conversion of NULL constant to 'char'}}
70 unsigned char uch = NULL; // expected-warning {{implicit conversion of NULL constant to 'unsigned char'}
    [all...]
  /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
  /bionic/libc/bionic/
libc_logging.cpp 191 static void format_integer(char* buf, size_t buf_size, uint64_t value, char conversion) {
192 // Decode the conversion specifier.
193 int is_signed = (conversion == 'd' || conversion == 'i' || conversion == 'o');
195 if (conversion == 'x' || conversion == 'X') {
197 } else if (conversion == 'o') {
200 bool caps = (conversion == 'X');
333 /* conversion specifier *
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/conversion/
TestTriangleStrip.java 33 package jme3test.conversion;
TestMipMapGen.java 33 package jme3test.conversion;
  /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.
stack-traces-2.js 48 // Tests that a native conversion function is included in the
  /external/valgrind/main/none/tests/ppc32/
test_isa_2_06_part3.stdout.exp 421 Test VSX vector integer to float conversion instructions
    [all...]
  /external/valgrind/main/none/tests/ppc64/
test_isa_2_06_part3.stdout.exp 421 Test VSX vector integer to float conversion instructions
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
diff_parser.py 65 for pattern, conversion in conversion_patterns:
68 return conversion(matched)
  /external/bison/src/
muscle-tab.c 410 const conversion_type conversion[] = local
418 for (i = 0; i < ARRAY_CARDINALITY (conversion); ++i)
419 if (STREQ (conversion[i].obsolete, variable))
421 res = conversion[i].updated;
  /device/generic/goldfish/camera/
Android.mk 31 # JPEG conversion libraries and includes.
  /prebuilts/tools/common/m2/internal/com/google/code/findbugs/jFormatString/2.0.1/
jFormatString-2.0.1.jar 
  /device/lge/mako/camera/
Android.mk 86 # To Choose neon/C routines for YV12 conversion

Completed in 981 milliseconds

1 2 3