Home
last modified time | relevance | path

Searched refs:type1 (Results 1 – 25 of 62) sorted by relevance

123

/external/dexmaker/src/dx/java/com/android/dx/cf/code/
DMerger.java39 Type type1 = ft1.getType(); in mergeType() local
42 if (type1 == type2) { in mergeType()
43 return type1; in mergeType()
44 } else if (type1.isReference() && type2.isReference()) { in mergeType()
45 if (type1 == Type.KNOWN_NULL) { in mergeType()
56 return type1; in mergeType()
57 } else if (type1.isArray() && type2.isArray()) { in mergeType()
59 mergeType(type1.getComponentType(), in mergeType()
77 } else if (type1.isIntlike() && type2.isIntlike()) { in mergeType()
/external/chromium_org/v8/src/
Dtypes.cc381 Type* Type::Union(Handle<Type> type1, Handle<Type> type2) { in Union() argument
383 if (type1->is_bitset() && type2->is_bitset()) { in Union()
384 return from_bitset(type1->as_bitset() | type2->as_bitset()); in Union()
388 if (type1->SameValue(Type::Any())) return *type1; in Union()
390 if (type1->SameValue(Type::None())) return *type2; in Union()
391 if (type2->SameValue(Type::None())) return *type1; in Union()
394 if (!(type1->is_union() || type2->is_union())) { in Union()
395 if (type1->Is(type2)) return *type2; in Union()
396 if (type2->Is(type1)) return *type1; in Union()
401 int size = type1->is_bitset() || type2->is_bitset() ? 1 : 0; in Union()
[all …]
Dpreparser.h179 bool HasConflict(PropertyKind type1, PropertyKind type2) { in HasConflict() argument
180 return (type1 & type2) != 0; in HasConflict()
182 bool IsDataDataConflict(PropertyKind type1, PropertyKind type2) { in IsDataDataConflict() argument
183 return ((type1 & type2) & kValueFlag) != 0; in IsDataDataConflict()
185 bool IsDataAccessorConflict(PropertyKind type1, PropertyKind type2) { in IsDataAccessorConflict() argument
186 return ((type1 ^ type2) & kValueFlag) != 0; in IsDataAccessorConflict()
188 bool IsAccessorAccessorConflict(PropertyKind type1, PropertyKind type2) { in IsAccessorAccessorConflict() argument
189 return ((type1 | type2) & kValueFlag) == 0; in IsAccessorAccessorConflict()
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
Dlinux_syscall_support.h816 #define _syscall1(type,name,type1,arg1) \ argument
817 type LSS_NAME(name)(type1 arg1) { \
823 #define _syscall2(type,name,type1,arg1,type2,arg2) \ argument
824 type LSS_NAME(name)(type1 arg1,type2 arg2) { \
830 #define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \ argument
831 type LSS_NAME(name)(type1 arg1,type2 arg2,type3 arg3) { \
838 #define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4) \ argument
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, \ argument
848 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3, type4 arg4, \
[all …]
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
Dlinux_syscall_support.h830 #define _syscall1(type,name,type1,arg1) \ argument
831 type LSS_NAME(name)(type1 arg1) { \
837 #define _syscall2(type,name,type1,arg1,type2,arg2) \ argument
838 type LSS_NAME(name)(type1 arg1,type2 arg2) { \
844 #define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \ argument
845 type LSS_NAME(name)(type1 arg1,type2 arg2,type3 arg3) { \
852 #define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4) \ argument
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, \ argument
862 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3, type4 arg4, \
[all …]
/external/javassist/src/main/javassist/compiler/ast/
DIntConst.java54 int type1 = this.type; in compute0() local
57 if (type1 == TokenId.LongConstant || type2 == TokenId.LongConstant) in compute0()
59 else if (type1 == TokenId.CharConstant in compute0()
95 newType = type1; in compute0()
99 newType = type1; in compute0()
103 newType = type1; in compute0()
/external/chromium_org/third_party/openssl/openssl/include/openssl/
Dobjects.h1021 #define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \ argument
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) \ argument
1027 _DECLARE_OBJ_BSEARCH_CMP_FN(static, type1, type2, cmp)
1028 #define DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \ argument
1029 type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
1058 #define IMPLEMENT_OBJ_BSEARCH_CMP_FN(type1, type2, nm) \ argument
1061 type1 const *a = a_; \
1065 static type2 *OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) \
[all …]
/external/openssl/include/openssl/
Dobjects.h1021 #define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \ argument
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) \ argument
1027 _DECLARE_OBJ_BSEARCH_CMP_FN(static, type1, type2, cmp)
1028 #define DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \ argument
1029 type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
1058 #define IMPLEMENT_OBJ_BSEARCH_CMP_FN(type1, type2, nm) \ argument
1061 type1 const *a = a_; \
1065 static type2 *OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) \
[all …]
/external/openssl/crypto/objects/
Dobjects.h1021 #define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \ argument
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) \ argument
1027 _DECLARE_OBJ_BSEARCH_CMP_FN(static, type1, type2, cmp)
1028 #define DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \ argument
1029 type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
1058 #define IMPLEMENT_OBJ_BSEARCH_CMP_FN(type1, type2, nm) \ argument
1061 type1 const *a = a_; \
1065 static type2 *OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) \
[all …]
/external/chromium_org/third_party/openssl/openssl/crypto/objects/
Dobjects.h1021 #define _DECLARE_OBJ_BSEARCH_CMP_FN(scope, type1, type2, nm) \ argument
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) \ argument
1027 _DECLARE_OBJ_BSEARCH_CMP_FN(static, type1, type2, cmp)
1028 #define DECLARE_OBJ_BSEARCH_GLOBAL_CMP_FN(type1, type2, nm) \ argument
1029 type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
1058 #define IMPLEMENT_OBJ_BSEARCH_CMP_FN(type1, type2, nm) \ argument
1061 type1 const *a = a_; \
1065 static type2 *OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) \
[all …]
/external/chromium_org/v8/test/cctest/
Dtest-types.cc45 static void CheckEqual(Handle<Type> type1, Handle<Type> type2) { in CheckEqual() argument
46 CHECK_EQ(IsBitset(*type1), IsBitset(*type2)); in CheckEqual()
47 CHECK_EQ(IsClass(*type1), IsClass(*type2)); in CheckEqual()
48 CHECK_EQ(IsConstant(*type1), IsConstant(*type2)); in CheckEqual()
49 CHECK_EQ(IsUnion(*type1), IsUnion(*type2)); in CheckEqual()
50 CHECK_EQ(type1->NumClasses(), type2->NumClasses()); in CheckEqual()
51 CHECK_EQ(type1->NumConstants(), type2->NumConstants()); in CheckEqual()
52 if (IsBitset(*type1)) { in CheckEqual()
53 CHECK_EQ(AsBitset(*type1), AsBitset(*type2)); in CheckEqual()
54 } else if (IsClass(*type1)) { in CheckEqual()
[all …]
/external/chromium_org/content/public/test/
Dtest_notification_tracker.cc51 bool TestNotificationTracker::Check2AndReset(int type1, in Check2AndReset() argument
57 bool success = events_[0].type == type1 && events_[1].type == type2; in Check2AndReset()
62 bool TestNotificationTracker::Check3AndReset(int type1, in Check3AndReset() argument
69 bool success = events_[0].type == type1 && in Check3AndReset()
Dtest_notification_tracker.h58 bool Check2AndReset(int type1,
60 bool Check3AndReset(int type1,
/external/clang/test/SemaCXX/
Dconstexpr-many-arguments.cpp4 struct type1 struct
6 constexpr type1(int a0) : my_data{a0} {} in type1() function
12 typedef type1 T; argument
20 type1 my_data[23];
/external/clang/test/SemaTemplate/
Dinstantiate-exception-spec-cxx11.cpp74 base(const typename T::type1 &);
79 struct type1 { struct
90 typedef type1<types> type1; typedef
Dcanonical-expr-type.cpp42 typedef T __attribute__((ext_vector_type(N))) type1; typedef
46 void f0(type1); // expected-note{{previous}}
/external/javassist/src/main/javassist/compiler/
DTypeChecker.java284 int type1 = exprType; in atCondExpr() local
290 if (CodeGen.rightIsStrong(type1, exprType)) in atCondExpr()
292 else if (CodeGen.rightIsStrong(exprType, type1)) { in atCondExpr()
293 expr.setElse(new CastExpr(type1, 0, expr.elseExpr())); in atCondExpr()
294 exprType = type1; in atCondExpr()
327 int type1 = exprType; in atBinExpr() local
330 computeBinExprType(expr, token, type1); in atBinExpr()
367 int type1 = exprType; in atPlusExpr() local
375 if ((type1 == CLASS && dim1 == 0 && jvmJavaLangString.equals(cname)) in atPlusExpr()
387 computeBinExprType(expr, '+', type1); in atPlusExpr()
[all …]
DCodeGen.java968 int type1 = exprType; in atBinExpr() local
976 && (type1 == CLASS || exprType == CLASS)) in atBinExpr()
977 atStringConcatExpr(expr, type1, dim1, cname1); in atBinExpr()
979 atArithBinExpr(expr, token, k, type1); in atBinExpr()
998 int index, int type1) throws CompileError in atArithBinExpr() argument
1007 exprType = type1; in atArithBinExpr()
1011 convertOprandTypes(type1, type2, expr); in atArithBinExpr()
1028 private void atStringConcatExpr(Expr expr, int type1, int dim1, in atStringConcatExpr() argument
1040 if (is2word(type1, dim1)) { in atStringConcatExpr()
1048 convToString(type1, dim1); in atStringConcatExpr()
[all …]
/external/freetype/src/psaux/
Dt1cmap.c42 cmap->num_glyphs = face->type1.num_glyphs; in t1_cmap_std_init()
43 cmap->glyph_names = (const char* const*)face->type1.glyph_names; in t1_cmap_std_init()
178 T1_Encoding encoding = &face->type1.encoding; in t1_cmap_custom_init()
270 return face->type1.glyph_names[idx]; in psaux_get_glyph_name()
284 face->type1.num_glyphs, in t1_cmap_unicode_init()
/external/chromium_org/third_party/freetype/src/psaux/
Dt1cmap.c42 cmap->num_glyphs = face->type1.num_glyphs; in t1_cmap_std_init()
43 cmap->glyph_names = (const char* const*)face->type1.glyph_names; in t1_cmap_std_init()
178 T1_Encoding encoding = &face->type1.encoding; in t1_cmap_custom_init()
270 return face->type1.glyph_names[idx]; in psaux_get_glyph_name()
284 face->type1.num_glyphs, in t1_cmap_unicode_init()
/external/dexmaker/src/dx/java/com/android/dx/rop/type/
DStdTypeList.java183 public static StdTypeList make(Type type0, Type type1) { in make() argument
186 result.set(1, type1); in make()
198 public static StdTypeList make(Type type0, Type type1, Type type2) { in make() argument
201 result.set(1, type1); in make()
215 public static StdTypeList make(Type type0, Type type1, Type type2, in make() argument
219 result.set(1, type1); in make()
/external/v8/src/
Dpreparser.h185 bool HasConflict(int type1, int type2) { return (type1 & type2) != 0; } in HasConflict() argument
186 bool IsDataDataConflict(int type1, int type2) { in IsDataDataConflict() argument
187 return ((type1 & type2) & kValueFlag) != 0; in IsDataDataConflict()
189 bool IsDataAccessorConflict(int type1, int type2) { in IsDataAccessorConflict() argument
190 return ((type1 ^ type2) & kValueFlag) != 0; in IsDataAccessorConflict()
192 bool IsAccessorAccessorConflict(int type1, int type2) { in IsAccessorAccessorConflict() argument
193 return ((type1 | type2) & kValueFlag) == 0; in IsAccessorAccessorConflict()
/external/chromium_org/third_party/skia/src/animator/
DSkScript.cpp1260 SkOpType type1 = type2; in processOp() local
1265 fTypeStack.pop(&type1); in processOp()
1268 SkTSwap(type1, type2); in processOp()
1274 if (type1 == kObject && (type1 & attributes->fLeftType) == 0) { in processOp()
1276 val.fType = ToDisplayType(type1); in processOp()
1281 type1 = ToOpType(val.fType); in processOp()
1296 if (type1 != type2) { in processOp()
1297 …if ((attributes->fLeftType & kString) && attributes->fBias & kTowardsString && ((type1 | type2) & … in processOp()
1298 if (type1 == kInt || type1 == kScalar) { in processOp()
1299 convertToString(operand1, type1 == kInt ? SkType_Int : SkType_Float); in processOp()
[all …]
/external/skia/src/animator/
DSkScript.cpp1260 SkOpType type1 = type2; in processOp() local
1265 fTypeStack.pop(&type1); in processOp()
1268 SkTSwap(type1, type2); in processOp()
1274 if (type1 == kObject && (type1 & attributes->fLeftType) == 0) { in processOp()
1276 val.fType = ToDisplayType(type1); in processOp()
1281 type1 = ToOpType(val.fType); in processOp()
1296 if (type1 != type2) { in processOp()
1297 …if ((attributes->fLeftType & kString) && attributes->fBias & kTowardsString && ((type1 | type2) & … in processOp()
1298 if (type1 == kInt || type1 == kScalar) { in processOp()
1299 convertToString(operand1, type1 == kInt ? SkType_Int : SkType_Float); in processOp()
[all …]
/external/chromium_org/ipc/
Dipc_message_macros.h228 #define IPC_MESSAGE_CONTROL1(msg_class, type1) \ argument
229 IPC_MESSAGE_DECL(ASYNC, CONTROL, msg_class, 1, 0, (type1), ())
231 #define IPC_MESSAGE_CONTROL2(msg_class, type1, type2) \ argument
232 IPC_MESSAGE_DECL(ASYNC, CONTROL, msg_class, 2, 0, (type1, type2), ())
234 #define IPC_MESSAGE_CONTROL3(msg_class, type1, type2, type3) \ argument
235 IPC_MESSAGE_DECL(ASYNC, CONTROL, msg_class, 3, 0, (type1, type2, type3), ())
237 #define IPC_MESSAGE_CONTROL4(msg_class, type1, type2, type3, type4) \ argument
238 IPC_MESSAGE_DECL(ASYNC, CONTROL, msg_class, 4, 0, (type1, type2, type3, type4), ())
240 #define IPC_MESSAGE_CONTROL5(msg_class, type1, type2, type3, type4, type5) \ argument
241 IPC_MESSAGE_DECL(ASYNC, CONTROL, msg_class, 5, 0, (type1, type2, type3, type4, type5), ())
[all …]

123