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

1 2 3 4 5

  /external/clang/test/Sema/
c11-typedef-redef.c 8 typedef int type2; typedef
9 typedef type type2; typedef
10 typedef int type2; typedef
dllimport-dllexport.c 34 typedef int __declspec(dllimport) type2; // expected-warning{{'dllimport' attribute only applies to variables and functions}} typedef
  /external/dexmaker/src/dx/java/com/android/dx/cf/code/
Merger.java 40 Type type2 = ft2.getType(); local
42 if (type1 == type2) {
44 } else if (type1.isReference() && type2.isReference()) {
50 return type2;
51 } else if (type2 == Type.KNOWN_NULL) {
53 * The same as above, but this time it's type2 that's
57 } else if (type1.isArray() && type2.isArray()) {
60 type2.getComponentType());
77 } else if (type1.isIntlike() && type2.isIntlike()) {
  /frameworks/base/cmds/interrupter/
interrupter.h 36 #define CALL_FUNCTION_2(sym, ret, type1, type2) \
37 ret (*real_##sym)(type1, type2) = NULL; \
38 ret sym(type1 arg1, type2 arg2) { \
43 #define CALL_FUNCTION_3(sym, ret, type1, type2, type3) \
44 ret (*real_##sym)(type1, type2, type3) = NULL; \
45 ret sym(type1 arg1, type2 arg2, type3 arg3) { \
50 #define CALL_FUNCTION_4(sym, ret, type1, type2, type3, type4) \
51 ret (*real_##sym)(type1, type2, type3, type4) = NULL; \
52 ret sym(type1 arg1, type2 arg2, type3 arg3, type4 arg4) { \
57 #define CALL_FUNCTION_5(sym, ret, type1, type2, type3, type4, type5)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/test_data/api_data_source/
canned_trunk_fs.py 101 'description': '$ref:type2'
104 'id': 'type2',
106 'description': 'A $ref:type3, or $ref:type2'
111 'description': '$ref:other.type2 != $ref:ref_test.type2'
  /external/clang/test/SemaCXX/
constexpr-many-arguments.cpp 10 struct type2 struct
13 constexpr type2(T a00, T a01, T a02, T a03, T a04, T a05, T a06, T a07, T a08, T a09, function in struct:type2
25 constexpr type3(type2 a0, type2 a1) : my_data{a0, a1} {}
26 type2 my_data[2];
  /external/chromium_org/content/public/test/
test_notification_tracker.cc 52 int type2) {
57 bool success = events_[0].type == type1 && events_[1].type == type2;
63 int type2,
70 events_[1].type == type2 &&
test_notification_tracker.h 59 int type2);
61 int type2,
  /external/chromium_org/v8/src/
types.cc 381 Type* Type::Union(Handle<Type> type1, Handle<Type> type2) {
383 if (type1->is_bitset() && type2->is_bitset()) {
384 return from_bitset(type1->as_bitset() | type2->as_bitset());
389 if (type2->SameValue(Type::Any())) return *type2;
390 if (type1->SameValue(Type::None())) return *type2;
391 if (type2->SameValue(Type::None())) return *type1;
394 if (!(type1->is_union() || type2->is_union())) {
395 if (type1->Is(type2)) return *type2;
    [all...]
preparser.h 179 bool HasConflict(PropertyKind type1, PropertyKind type2) {
180 return (type1 & type2) != 0;
182 bool IsDataDataConflict(PropertyKind type1, PropertyKind type2) {
183 return ((type1 & type2) & kValueFlag) != 0;
185 bool IsDataAccessorConflict(PropertyKind type1, PropertyKind type2) {
186 return ((type1 ^ type2) & kValueFlag) != 0;
188 bool IsAccessorAccessorConflict(PropertyKind type1, PropertyKind type2) {
189 return ((type1 | type2) & kValueFlag) == 0;
  /dalvik/dx/src/com/android/dx/cf/code/
Merger.java 158 Type type2 = ft2.getType(); local
160 if (type1 == type2) {
162 } else if (type1.isReference() && type2.isReference()) {
168 return type2;
169 } else if (type2 == Type.KNOWN_NULL) {
171 * The same as above, but this time it's type2 that's
175 } else if (type1.isArray() && type2.isArray()) {
178 type2.getComponentType());
195 } else if (type1.isIntlike() && type2.isIntlike()) {
Machine.java 88 * @param type2 {@code non-null;} type of the second argument
90 public void popArgs(Frame frame, Type type1, Type type2);
101 * @param type2 {@code non-null;} type of the second argument
104 public void popArgs(Frame frame, Type type1, Type type2, Type type3);
BaseMachine.java 167 public final void popArgs(Frame frame, Type type1, Type type2) {
178 if (! Merger.isPossiblyAssignableFrom(type2, args[1])) {
179 throw new SimException("expected type " + type2.toHuman() +
185 public final void popArgs(Frame frame, Type type1, Type type2,
197 if (! Merger.isPossiblyAssignableFrom(type2, args[1])) {
198 throw new SimException("expected type " + type2.toHuman() +
  /external/clang/test/SemaTemplate/
ms-if-exists.cpp 14 typedef Nontemplate::value type2; typedef
27 X<int>::type2 i2; // expected-error{{no type named 'type2' in 'X<int>'}}
canonical-expr-type.cpp 43 typedef T __attribute__((ext_vector_type(M))) type2; typedef in struct:X2
47 void f0(type2);
instantiate-exception-spec-cxx11.cpp 75 base(const typename T::type2 &);
84 struct type2 { struct in namespace:core_19754_example
91 typedef type2<types> type2; typedef in struct:core_19754_example::types
  /external/chromium_org/third_party/openssl/openssl/crypto/objects/
objects.h 1021 #define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \
1023 static int nm##_cmp(type1 const *, type2 const *);
    [all...]
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
objects.h 1021 #define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \
1023 static int nm##_cmp(type1 const *, type2 const *);
    [all...]
  /external/openssl/crypto/objects/
objects.h 1021 #define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \
1023 static int nm##_cmp(type1 const *, type2 const *);
    [all...]
  /external/openssl/include/openssl/
objects.h 1021 #define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \
1023 static int nm##_cmp(type1 const *, type2 const *);
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
linux_syscall_support.h 837 #define _syscall2(type,name,type1,arg1,type2,arg2) \
838 type LSS_NAME(name)(type1 arg1,type2 arg2) { \
844 #define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \
845 type LSS_NAME(name)(type1 arg1,type2 arg2,type3 arg3) { \
852 #define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4) \
853 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3, type4 arg4) { \
860 #define _syscall5(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4, \
862 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3, type4 arg4, \
878 #define _syscall6(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4, \
880 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3, type4 arg4,
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
linux_syscall_support.h 823 #define _syscall2(type,name,type1,arg1,type2,arg2) \
824 type LSS_NAME(name)(type1 arg1,type2 arg2) { \
830 #define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \
831 type LSS_NAME(name)(type1 arg1,type2 arg2,type3 arg3) { \
838 #define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4) \
839 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3, type4 arg4) { \
846 #define _syscall5(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4, \
848 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3, type4 arg4, \
864 #define _syscall6(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4, \
866 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3, type4 arg4,
    [all...]
  /external/javassist/src/main/javassist/compiler/ast/
IntConst.java 55 int type2 = right.type; local
57 if (type1 == TokenId.LongConstant || type2 == TokenId.LongConstant)
60 && type2 == TokenId.CharConstant)
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
ImplicitTest.java 189 * TYPE2 = [2] IMPLICIT TYPE1
194 ASN1Implicit type2 = new ASN1Implicit(2, type1); local
213 assertTrue(Arrays.equals(array, (byte[]) type2
217 assertTrue(Arrays.equals(primitiveEncoding, type2.encode(array)));
221 type2.decode(constructedEncoding);
  /external/chromium_org/v8/test/cctest/
test-types.cc 45 static void CheckEqual(Handle<Type> type1, Handle<Type> type2) {
46 CHECK_EQ(IsBitset(*type1), IsBitset(*type2));
47 CHECK_EQ(IsClass(*type1), IsClass(*type2));
48 CHECK_EQ(IsConstant(*type1), IsConstant(*type2));
49 CHECK_EQ(IsUnion(*type1), IsUnion(*type2));
50 CHECK_EQ(type1->NumClasses(), type2->NumClasses());
51 CHECK_EQ(type1->NumConstants(), type2->NumConstants());
53 CHECK_EQ(AsBitset(*type1), AsBitset(*type2));
55 CHECK_EQ(AsClass(*type1), AsClass(*type2));
57 CHECK_EQ(AsConstant(*type1), AsConstant(*type2));
    [all...]

Completed in 739 milliseconds

1 2 3 4 5