Searched refs:type1 (Results 1 - 25 of 57) sorted by relevance

123

/external/dexmaker/src/dx/java/com/android/dx/cf/code/
H A DMerger.java39 Type type1 = ft1.getType();
42 if (type1 == type2) {
43 return type1;
44 } else if (type1.isReference() && type2.isReference()) {
45 if (type1 == Type.KNOWN_NULL) {
56 return type1;
57 } else if (type1.isArray() && type2.isArray()) {
59 mergeType(type1.getComponentType(),
77 } else if (type1.isIntlike() && type2.isIntlike()) {
/external/chromium_org/content/public/test/
H A Dtest_notification_tracker.cc51 bool TestNotificationTracker::Check2AndReset(int type1, argument
57 bool success = events_[0].type == type1 && events_[1].type == type2;
62 bool TestNotificationTracker::Check3AndReset(int type1, argument
69 bool success = events_[0].type == type1 &&
H A Dtest_notification_tracker.h58 bool Check2AndReset(int type1,
60 bool Check3AndReset(int type1,
/external/clang/test/SemaCXX/
H A Dconstexpr-many-arguments.cpp4 struct type1 struct
6 constexpr type1(int a0) : my_data{a0} {} function in struct:type1
12 typedef type1 T;
20 type1 my_data[23];
/external/chromium_org/v8/src/
H A Dtypes.cc381 Type* Type::Union(Handle<Type> type1, Handle<Type> type2) { argument
383 if (type1->is_bitset() && type2->is_bitset()) {
384 return from_bitset(type1->as_bitset() | type2->as_bitset());
388 if (type1->SameValue(Type::Any())) return *type1;
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;
396 if (type2->Is(type1)) retur
457 Intersect(Handle<Type> type1, Handle<Type> type2) argument
[all...]
H A Dpreparser.h179 bool HasConflict(PropertyKind type1, PropertyKind type2) { argument
180 return (type1 & type2) != 0;
182 bool IsDataDataConflict(PropertyKind type1, PropertyKind type2) { argument
183 return ((type1 & type2) & kValueFlag) != 0;
185 bool IsDataAccessorConflict(PropertyKind type1, PropertyKind type2) { argument
186 return ((type1 ^ type2) & kValueFlag) != 0;
188 bool IsAccessorAccessorConflict(PropertyKind type1, PropertyKind type2) { argument
189 return ((type1 | type2) & kValueFlag) == 0;
/external/javassist/src/main/javassist/compiler/ast/
H A DIntConst.java54 int type1 = this.type;
57 if (type1 == TokenId.LongConstant || type2 == TokenId.LongConstant)
59 else if (type1 == TokenId.CharConstant
95 newType = type1;
99 newType = type1;
103 newType = type1;
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dlinux_syscall_support.h830 #define _syscall1(type,name,type1,arg1) \
831 type LSS_NAME(name)(type1 arg1) { \
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 arg
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dlinux_syscall_support.h816 #define _syscall1(type,name,type1,arg1) \
817 type LSS_NAME(name)(type1 arg1) { \
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 arg
[all...]
/external/clang/test/SemaTemplate/
H A Dinstantiate-exception-spec-cxx11.cpp74 base(const typename T::type1 &);
79 struct type1 { struct in namespace:core_19754_example
90 typedef type1<types> type1; typedef in struct:core_19754_example::types
H A Dcanonical-expr-type.cpp42 typedef T __attribute__((ext_vector_type(N))) type1; typedef in struct:X2
46 void f0(type1); // expected-note{{previous}}
/external/clang/test/Sema/
H A Ddllimport-dllexport.c32 typedef int __declspec(dllexport) type1; // expected-warning{{'dllexport' attribute only applies to variables and functions}} typedef
/external/chromium_org/v8/test/cctest/
H A Dtest-types.cc45 static void CheckEqual(Handle<Type> type1, Handle<Type> type2) { argument
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());
52 if (IsBitset(*type1)) {
53 CHECK_EQ(AsBitset(*type1), AsBitset(*type2));
54 } else if (IsClass(*type1)) {
66 CheckSub(Handle<Type> type1, Handle<Type> type2) argument
75 CheckUnordered(Handle<Type> type1, Handle<Type> type2) argument
84 CheckOverlap(Handle<Type> type1, Handle<Type> type2) argument
93 CheckDisjoint(Handle<Type> type1, Handle<Type> type2) argument
191 Union(Handle<Type> type1, Handle<Type> type2) argument
194 Intersect(Handle<Type> type1, Handle<Type> type2) argument
[all...]
/external/chromium_org/third_party/freetype/src/psaux/
H A Dt1cmap.c42 cmap->num_glyphs = face->type1.num_glyphs;
43 cmap->glyph_names = (const char* const*)face->type1.glyph_names;
178 T1_Encoding encoding = &face->type1.encoding;
270 return face->type1.glyph_names[idx];
284 face->type1.num_glyphs,
/external/freetype/src/psaux/
H A Dt1cmap.c42 cmap->num_glyphs = face->type1.num_glyphs;
43 cmap->glyph_names = (const char* const*)face->type1.glyph_names;
178 T1_Encoding encoding = &face->type1.encoding;
270 return face->type1.glyph_names[idx];
284 face->type1.num_glyphs,
/external/chromium_org/third_party/openssl/openssl/crypto/objects/
H A Dobjects.h1021 #define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \
1023 static int nm##_cmp(type1 const *, type2 const *); \
1024 scope type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
1026 #define DECLARE_OBJ_BSEARCH_CMP_FN(type1, type2, cmp) \
1027 _DECLARE_OBJ_BSEARCH_CMP_FN(static, type1, type2, cmp)
1028 #define DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \
1029 type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
1058 #define IMPLEMENT_OBJ_BSEARCH_CMP_FN(type1, type2, nm) \
1061 type1 const *a = a_; \
1065 static type2 *OBJ_bsearch_##nm(type1 *ke
[all...]
/external/chromium_org/third_party/openssl/openssl/include/openssl/
H A Dobjects.h1021 #define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \
1023 static int nm##_cmp(type1 const *, type2 const *); \
1024 scope type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
1026 #define DECLARE_OBJ_BSEARCH_CMP_FN(type1, type2, cmp) \
1027 _DECLARE_OBJ_BSEARCH_CMP_FN(static, type1, type2, cmp)
1028 #define DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \
1029 type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
1058 #define IMPLEMENT_OBJ_BSEARCH_CMP_FN(type1, type2, nm) \
1061 type1 const *a = a_; \
1065 static type2 *OBJ_bsearch_##nm(type1 *ke
[all...]
/external/openssl/crypto/objects/
H A Dobjects.h1021 #define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \
1023 static int nm##_cmp(type1 const *, type2 const *); \
1024 scope type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
1026 #define DECLARE_OBJ_BSEARCH_CMP_FN(type1, type2, cmp) \
1027 _DECLARE_OBJ_BSEARCH_CMP_FN(static, type1, type2, cmp)
1028 #define DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \
1029 type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
1058 #define IMPLEMENT_OBJ_BSEARCH_CMP_FN(type1, type2, nm) \
1061 type1 const *a = a_; \
1065 static type2 *OBJ_bsearch_##nm(type1 *ke
[all...]
/external/openssl/include/openssl/
H A Dobjects.h1021 #define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \
1023 static int nm##_cmp(type1 const *, type2 const *); \
1024 scope type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
1026 #define DECLARE_OBJ_BSEARCH_CMP_FN(type1, type2, cmp) \
1027 _DECLARE_OBJ_BSEARCH_CMP_FN(static, type1, type2, cmp)
1028 #define DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \
1029 type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
1058 #define IMPLEMENT_OBJ_BSEARCH_CMP_FN(type1, type2, nm) \
1061 type1 const *a = a_; \
1065 static type2 *OBJ_bsearch_##nm(type1 *ke
[all...]
/external/dexmaker/src/dx/java/com/android/dx/rop/type/
H A DStdTypeList.java180 * @param type1 {@code non-null;} the second element
183 public static StdTypeList make(Type type0, Type type1) { argument
186 result.set(1, type1);
194 * @param type1 {@code non-null;} the second element
198 public static StdTypeList make(Type type0, Type type1, Type type2) { argument
201 result.set(1, type1);
210 * @param type1 {@code non-null;} the second element
215 public static StdTypeList make(Type type0, Type type1, Type type2, argument
219 result.set(1, type1);
/external/javassist/src/main/javassist/compiler/
H A DTypeChecker.java284 int type1 = exprType;
290 if (CodeGen.rightIsStrong(type1, exprType))
292 else if (CodeGen.rightIsStrong(exprType, type1)) {
293 expr.setElse(new CastExpr(type1, 0, expr.elseExpr()));
294 exprType = type1;
327 int type1 = exprType;
330 computeBinExprType(expr, token, type1);
367 int type1 = exprType;
375 if ((type1 == CLASS && dim1 == 0 && jvmJavaLangString.equals(cname))
387 computeBinExprType(expr, '+', type1);
494 computeBinExprType(BinExpr expr, int token, int type1) argument
535 insertCast(BinExpr expr, int type1, int type2) argument
[all...]
/external/v8/src/
H A Dpreparser.h185 bool HasConflict(int type1, int type2) { return (type1 & type2) != 0; } argument
186 bool IsDataDataConflict(int type1, int type2) { argument
187 return ((type1 & type2) & kValueFlag) != 0;
189 bool IsDataAccessorConflict(int type1, int type2) { argument
190 return ((type1 ^ type2) & kValueFlag) != 0;
192 bool IsAccessorAccessorConflict(int type1, int type2) { argument
193 return ((type1 | type2) & kValueFlag) == 0;
/external/chromium_org/chrome/browser/sync/test/integration/
H A Dmigration_errors_test.cc34 syncer::ModelTypeSet MakeSet(syncer::ModelType type1, argument
36 return syncer::ModelTypeSet(type1, type2);
62 MigrationList MakeList(syncer::ModelType type1, argument
64 return MakeList(MakeSet(type1), MakeSet(type2));
/external/clang/test/CodeGenCXX/
H A Dtype_visibility.cpp123 namespace type1 { namespace
/external/chromium_org/ipc/
H A Dipc_message_macros.h168 // void OnSyncMessageName(const type1& in1, type2* out1, type3* out2)
180 // void OnSyncMessageName(const type1& in1, IPC::Message* reply_msg);
228 #define IPC_MESSAGE_CONTROL1(msg_class, type1) \
229 IPC_MESSAGE_DECL(ASYNC, CONTROL, msg_class, 1, 0, (type1), ())
231 #define IPC_MESSAGE_CONTROL2(msg_class, type1, type2) \
232 IPC_MESSAGE_DECL(ASYNC, CONTROL, msg_class, 2, 0, (type1, type2), ())
234 #define IPC_MESSAGE_CONTROL3(msg_class, type1, type2, type3) \
235 IPC_MESSAGE_DECL(ASYNC, CONTROL, msg_class, 3, 0, (type1, type2, type3), ())
237 #define IPC_MESSAGE_CONTROL4(msg_class, type1, type2, type3, type4) \
238 IPC_MESSAGE_DECL(ASYNC, CONTROL, msg_class, 4, 0, (type1, type
[all...]

Completed in 6587 milliseconds

123