HomeSort by relevance Sort by last modified time
    Searched full:types (Results 151 - 175 of 37321) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/clang/test/Sema/
arm-neon-types.c 6 // Radar 8228022: Should not report incompatible vector types.
11 // ...but should warn when the types really do not match.
13 return vcvt_n_f32_s32(x, 9); // expected-warning {{incompatible vector types}}
30 // Warn for incompatible pointer types used with vld/vst intrinsics.
32 return vld1q_s16(p); // expected-warning {{incompatible pointer types}}
35 return vst1_s32(p, v); // expected-warning {{incompatible pointer types}}
39 #include "arm-neon-types.c"
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
AddPropertyTransformer.java 26 private final Type[] types; field in class:AddPropertyTransformer
31 types = new Type[size];
33 types[i] = (Type)props.get(names[i]);
37 public AddPropertyTransformer(String[] names, Type[] types) {
39 this.types = types;
44 EmitUtils.add_properties(this, names, types);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_types.py 4 """Fixer for removing uses of the types module.
6 These work for only the known names in the types module. The forms above
7 can include types. or not. ie, It is assumed the module is imported either as:
9 import types
10 from types import ... # either * or specific types
52 _pats = ["power< 'types' trailer< '.' name='%s' > >" % t for t in _TYPE_MAPPING]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_types.py 4 """Fixer for removing uses of the types module.
6 These work for only the known names in the types module. The forms above
7 can include types. or not. ie, It is assumed the module is imported either as:
9 import types
10 from types import ... # either * or specific types
52 _pats = ["power< 'types' trailer< '.' name='%s' > >" % t for t in _TYPE_MAPPING]
  /external/libsepol/tests/
test-linker-roles.c 50 * - role a and b in base, b dom a, are types correct (TODO)
75 char *types[2]; local
84 types[0] = "g_b_type_1";
85 role = test_role_type_set(base, "g_b_role_1", NULL, types, 1, 0);
94 types[0] = "o1_b_type_1";
95 role = test_role_type_set(base, "o1_b_role_1", decl, types, 1, 0);
105 char *types[3]; local
115 types[0] = "g_m1_type_1";
116 role = test_role_type_set(base, "g_m1_role_1", NULL, types, 1, 0);
125 types[0] = "o1_m1_type_1"
    [all...]
  /external/chromium_org/sync/internal_api/public/
sync_encryption_handler.cc 18 ModelTypeSet types; local
19 types.Put(PASSWORDS);
20 return types;
  /external/clang/test/CXX/temp/temp.decls/temp.class.spec/
p9-0x.cpp 6 template<typename T, typename ...Types>
9 template<typename T, typename ...Types>
10 struct X1<T, Types...> // expected-error{{class template partial specialization does not specialize any template argument; to define the primary template, remove the template argument list}}
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
p5-0x.cpp 11 template<typename R, typename FirstType, typename ...Types>
12 struct has_nondeduced_pack_test<R(FirstType, Types..., int),
13 R(FirstType, Types...)> {
  /external/clang/test/CodeGenCXX/
mangle-variadic-templates.cpp 3 template<unsigned I, typename ...Types>
8 template<typename ...Types> struct tuple { };
13 template<typename ...Types>
14 void f0(X<sizeof...(Types), Types&...>) { }
22 template<typename ...Types> void f1() {}
31 template<typename ...Types> void f2(Types...) {}
40 template<typename ...Types> void f3(const Types *...) {
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
types.h 4 #include <asm/types.h>
12 * Below are truly Linux-specific types that should never collide with
13 * any application/library that wants linux/types.h.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
types.h 4 #include <asm/types.h>
12 * Below are truly Linux-specific types that should never collide with
13 * any application/library that wants linux/types.h.
  /dalvik/dx/src/com/android/dx/rop/type/
package.html 2 <p>Implementation of classes that represent types (classes or primitives).</p>
  /dalvik/dx/tests/102-verify-nonwide-math/
info.txt 3 the appropriate types.
  /external/chromium_org/content/common/gpu/media/
va_stub_header.fragment 2 // various libva types.
  /external/chromium_org/mojo/
README.md 5 plugin processes that can support multiple types of sandboxed content, such as
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaTypeNames.in 4 # http://www.w3.org/TR/CSS2/media.html#media-types
  /external/chromium_org/third_party/mesa/src/src/gallium/docs/source/cso/
shader.rst 6 One of the two types of shaders supported by Gallium.
  /external/chromium_org/tools/clang/plugins/tests/
enum_last_value_from_c.txt 1 enum_last_value_from_c.c:11:3: warning: [chromium-style] _LAST/Last constants of enum types must have the maximal value for any constant of that type.
  /external/clang/test/CodeGen/
imaginary.c 4 double _Imaginary foo; // expected-error {{imaginary types are not supported}}
  /external/clang/test/Parser/
pointer_promotion.c 11 if (ip < cp) {} // expected-warning {{comparison of distinct pointer types ('int *' and 'char *')}}
12 if (cp < fp) {} // expected-warning {{comparison of distinct pointer types ('char *' and 'struct foo *')}}
13 if (fp < bp) {} // expected-warning {{comparison of distinct pointer types ('struct foo *' and 'struct bar *')}}
16 if (ip == cp) {} // expected-warning {{comparison of distinct pointer types ('int *' and 'char *')}}
struct-recursion.c 9 // both types are complete now.
  /external/clang/test/SemaObjC/
comptypes-7.m 28 obj = j; // expected-warning {{incompatible pointer types assigning to 'id' from 'int *'}}
31 obj_p = j; // expected-warning {{incompatible pointer types assigning to 'id<MyProtocol>' from 'int *'}}
34 obj_c = j; // expected-warning {{incompatible pointer types assigning to 'MyClass *' from 'int *'}}
37 obj_C = j; // expected-warning {{incompatible pointer types assigning to 'Class' from 'int *'}}
44 j = obj; // expected-warning {{incompatible pointer types assigning to 'int *' from 'id'}}
45 j = obj_p; // expected-warning {{incompatible pointer types assigning to 'int *' from 'id<MyProtocol>'}}
46 j = obj_c; // expected-warning {{incompatible pointer types assigning to 'int *' from 'MyClass *'}}
47 j = obj_C; // expected-warning {{incompatible pointer types assigning to 'int *' from 'Class'}}
51 if (obj == j) foo() ; // expected-warning {{comparison of distinct pointer types ('id' and 'int *')}}
52 if (j == obj) foo() ; // expected-warning {{comparison of distinct pointer types ('int *' and 'id')}
    [all...]
conditional-expr-2.m 11 [ (cond ? a : b) test ]; // expected-warning{{incompatible operand types ('A *' and 'B *')}} expected-warning {{method '-test' not found}}
25 obj = i ? NSKeyValueCoding_NullValue : nukedUpdatesList; // expected-warning{{incompatible operand types ('NSKey *' and 'UpdatesList *')}}
26 key = i ? NSKeyValueCoding_NullValue : nukedUpdatesList; // expected-warning{{incompatible operand types ('NSKey *' and 'UpdatesList *')}}
28 keysub = i ? NSKeyValueCoding_NullValue : keysub; // expected-warning{{incompatible pointer types assigning to 'KeySub *' from 'NSKey *'}}
method-typecheck-2.m 19 - (void) doSomething: (int) x {} // expected-warning {{conflicting parameter types}}
20 + (void) doSomethingClassy: (float) x{} // expected-warning {{conflicting parameter types}}
21 - (void) doSomethingInProtocol: (id) x {} // expected-warning {{conflicting parameter types}}
22 + (void) doSomethingClassyInProtocol: (id) x {} // expected-warning {{conflicting parameter types}}
  /external/iproute2/include/linux/tc_ematch/
tc_em_text.h 4 #include <linux/types.h>

Completed in 6130 milliseconds

1 2 3 4 5 67 8 91011>>