HomeSort by relevance Sort by last modified time
    Searched full:conversion (Results 101 - 125 of 3269) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/clang/test/Preprocessor/
user_defined_system_framework.c 1 // RUN: %clang -cc1 -fsyntax-only -F %S/Inputs -Wsign-conversion -verify %s
  /external/clang/test/Sema/
indirect-goto.c 9 goto *y; // expected-warning{{incompatible integer to pointer conversion}}
  /external/icu4c/samples/cal/
uprint.c 39 /* set up the conversion parameters */
52 /* perform the conversion */
57 /* perform the conversion */
65 /* update the conversion parameters*/
  /external/icu4c/samples/date/
uprint.c 40 /* set up the conversion parameters */
53 /* perform the conversion */
58 /* perform the conversion */
66 /* update the conversion parameters*/
  /external/icu4c/test/cintltst/
nucnvtst.h 17 /* C API TEST FOR CODESET CONVERSION COMPONENT */
  /external/icu4c/test/testdata/
test4x.ucm 8 # Test file for MBCS conversion extension with four-byte codepage data.
  /external/libyuv/
BUILD 4 # The libyuv package provides implementation yuv image conversion and
  /external/webkit/LayoutTests/fast/encoding/
high-bit-latin1.html 7 Test Latin-1 conversion to String
  /external/clang/test/CXX/expr/expr.const/
p5-0x.cpp 5 // non-explicit conversion function to an integral or unscoped enumeration type
17 X<a> x; // ok, unique conversion to int
49 auto new3 = new int[1][expl]; // expected-error {{explicit conversion}}
50 auto new4 = new int[1][ambig]; // expected-error {{ambiguous conversion}}
57 enum3 = expl, // expected-error {{explicit conversion}}
58 enum4 = ambig // expected-error {{ambiguous conversion}}
66 int alignas(expl) alignas3; // expected-error {{explicit conversion}}
67 int alignas(ambig) alignas4; // expected-error {{ambiguous conversion}}
83 int bitfield3 : expl; // expected-error {{explicit conversion}}
84 int bitfield4 : ambig; // expected-error {{ambiguous conversion}}
    [all...]
  /libcore/luni/src/main/java/java/util/
FormatFlagsConversionMismatchException.java 23 * conversion and the flags are incompatible.
38 * flags and conversion specified.
43 * the conversion.
63 * Returns the incompatible conversion.
65 * @return the incompatible conversion.
MissingFormatArgumentException.java 21 * corresponding argument with the specified conversion or an argument index
33 * specified conversion that lacks the argument.
36 * the specified conversion that lacks the argument.
46 * Returns the conversion associated with the exception.
48 * @return the conversion associated with the exception.
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
LetterConverter.java 33 * This conversion is used for converting some key input to a character.
34 * For example, Latin capital letter conversion <it>(ex: "'"+"a" to "&#x00E1;")</it>",
35 * Romaji-to-Kana conversion in Japanese <it>(ex: "w"+"a" to "&#x308F;")</it>,
36 * Hangul conversion in Korean.
39 * @return {@code true} if conversion is completed; {@code false} if not.
  /external/clang/test/CXX/conv/conv.mem/
p4.cpp 33 int (Derived::*d) = data_ptr; // expected-error {{ambiguous conversion from pointer to member of base class 'Base' to pointer to member of derived class 'test2::Derived':}}
34 int (Derived::*m)() = method_ptr; // expected-error {{ambiguous conversion from pointer to member of base class 'Base' to pointer to member of derived class 'test2::Derived':}}
42 int (Derived::*d) = data_ptr; // expected-error {{conversion from pointer to member of class 'Base' to pointer to member of class 'test3::Derived' via virtual base 'Base' is not allowed}}
43 int (Derived::*m)() = method_ptr; // expected-error {{conversion from pointer to member of class 'Base' to pointer to member of class 'test3::Derived' via virtual base 'Base' is not allowed}}
52 int (Derived::*d) = data_ptr; // expected-error {{ambiguous conversion from pointer to member of base class 'Base' to pointer to member of derived class 'test4::Derived':}}
53 int (Derived::*m)() = method_ptr; // expected-error {{ambiguous conversion from pointer to member of base class 'Base' to pointer to member of derived class 'test4::Derived':}}
  /frameworks/base/drm/java/android/drm/
DrmConvertedStatus.java 20 * An entity class that wraps converted data, conversion status, and the
34 * Indicate the conversion status is successful.
38 * Indicate a failed conversion status due to input data.
42 * Indicate a general failed conversion status.
47 * Status code for the conversion. Must be one of the defined status
63 * @param statusCode Conversion status. Must be one of the status code constants
  /external/clang/test/CodeGenCXX/
2010-05-10-Var-DbgInfo.cpp 26 // conversion of B::* to C::* is better than conversion of A::* to C::*
  /external/clang/test/Misc/
integer-literal-printing.cpp 5 template <short T> void Function1(Type1<T>& x) {} // expected-note{{candidate function [with T = -42] not viable: no known conversion from 'Type1<-42>' to 'Type1<-42> &' for 1st argument;}}
8 template <unsigned short T> void Function2(Type2<T>& x) {} // expected-note{{candidate function [with T = 42] not viable: no known conversion from 'Type2<42>' to 'Type2<42> &' for 1st argument;}}
  /external/clang/test/SemaCXX/
__null.cpp 1 // RUN: %clang_cc1 -triple x86_64-unknown-unknown %s -Wno-null-conversion -fsyntax-only -verify
2 // RUN: %clang_cc1 -triple i686-unknown-unknown %s -Wno-null-conversion -fsyntax-only -verify
type-convert-construct.cpp 14 str = "a string"; // expected-warning{{conversion from string literal to 'char *' is deprecated}}
16 wstr = L"a wide string"; // expected-warning{{conversion from string literal to 'wchar_t *' is deprecated}}
  /external/clang/test/SemaObjC/
comptypes-7.m 27 obj = i; // expected-warning {{incompatible integer to pointer conversion assigning to 'id' from 'int'}}
30 obj_p = i; // expected-warning {{incompatible integer to pointer conversion assigning to 'id<MyProtocol>' from 'int'}}
33 obj_c = i; // expected-warning {{incompatible integer to pointer conversion assigning to 'MyClass *' from 'int'}}
36 obj_C = i; // expected-warning {{incompatible integer to pointer conversion assigning to 'Class' from 'int'}}
39 i = obj; // expected-warning {{incompatible pointer to integer conversion assigning to 'int' from 'id'}}
40 i = obj_p; // expected-warning {{incompatible pointer to integer conversion assigning to 'int' from 'id<MyProtocol>'}}
41 i = obj_c; // expected-warning {{incompatible pointer to integer conversion assigning to 'int' from 'MyClass *'}}
42 i = obj_C; // expected-warning {{incompatible pointer to integer conversion assigning to 'int' from 'Class'}}
ivar-lookup-resolution-builtin.m 33 // expected-warning {{incompatible pointer to integer conversion returning}}
37 return index; // expected-warning {{incompatible pointer to integer conversion returning}}
  /external/oprofile/daemon/
opd_pipe.h 37 * is_jitconv_requested - check for request to jit conversion
40 * If jit conversion is requested ('do_jitconv' is sent) the check returns 1.
  /dalvik/dx/tests/088-ssa-combine-blocks/
info.txt 5 aspects of conversion end up altering the output in innocuous ways.
  /dalvik/vm/mterp/x86/
fpcvt.S 3 * Generic 32-bit FP conversion operation.
  /external/bluetooth/glib/tests/
unicode-encoding.c 145 fail ("line %d: conversion to ucs4 failed: %s\n", line, error->message);
153 fail ("line %d: results of conversion to ucs4 do not match expected.\n", line);
164 fail ("line %d: results of conversion to ucs4 do not match expected.\n", line);
171 fail ("line %d: conversion back to utf8 failed: %s", line, error->message);
179 fail ("line %d: conversion back to utf8 did not match original\n", line);
222 fail ("line %d: conversion via iconv to \"UTF-16\" is not native-endian\n", line);
235 fail ("line %d: conversion to ucs16 failed: %s\n", line, error->message);
242 fail ("line %d: length error in conversion to ucs16\n", line);
248 fail ("line %d: conversion to ucs16 failed: %s\n", line, error->message);
255 fail ("line %d: length error in conversion to ucs16\n", line)
    [all...]
  /external/clang/test/CXX/over/over.match/over.match.best/
p1.cpp 16 // FIXME: Initialization by user-defined conversion is tested elsewhere

Completed in 384 milliseconds

1 2 3 45 6 7 8 91011>>