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

12

/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/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];
H A Dqualified-id-lookup.cpp65 typedef struct N::f1 type1; typedef in typeref:struct:f1
/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/clang/test/SemaTemplate/
H A Dinstantiate-exception-spec-cxx11.cpp86 base(const typename T::type1 &);
91 struct type1 { struct in namespace:core_19754_example
102 typedef type1<types> type1; typedef in struct:core_19754_example::types
H A Dcanonical-expr-type.cpp46 typedef T __attribute__((ext_vector_type(N))) type1; typedef in struct:X2
50 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/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/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...]
H A DCodeGen.java968 int type1 = exprType;
976 && (type1 == CLASS || exprType == CLASS))
977 atStringConcatExpr(expr, type1, dim1, cname1);
979 atArithBinExpr(expr, token, k, type1);
998 int index, int type1) throws CompileError
1007 exprType = type1;
1011 convertOprandTypes(type1, type2, expr);
1018 exprType = INT; // type1 may be BYTE, ...
1028 private void atStringConcatExpr(Expr expr, int type1, int dim1, argument
1040 if (is2word(type1, dim
997 atArithBinExpr(Expr expr, int token, int index, int type1) argument
1201 compareExpr(boolean branchIf, int token, int type1, BinExpr expr) argument
1289 rightIsStrong(int type1, int type2) argument
1305 convertOprandTypes(int type1, int type2, Expr expr) 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/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
H A DImplicitTest.java192 ASN1Implicit type1 = new ASN1Implicit(1, ASN1OctetString.getInstance());
194 ASN1Implicit type2 = new ASN1Implicit(2, type1);
/external/chromium/chrome/browser/sessions/
H A Dsession_restore_uitest.cc323 Browser::Type type1, type2; local
324 ASSERT_TRUE(browser_proxy1->GetType(&type1));
329 if (type1 == Browser::TYPE_NORMAL) {
332 EXPECT_EQ(type1, Browser::TYPE_POPUP);
/external/clang/test/Index/
H A Dannotate-nested-name-specifier.cpp107 typedef typename outer_alias::inner::vector<type>::template rebind<type> type1; typedef in struct:X6
372 // CHECK: Keyword: "typename" [107:11 - 107:19] TypedefDecl=type1:107:76 (Definition)
374 // CHECK: Punctuation: "::" [107:31 - 107:33] TypedefDecl=type1:107:76 (Definition)
376 // CHECK: Punctuation: "::" [107:38 - 107:40] TypedefDecl=type1:107:76 (Definition)
378 // CHECK: Punctuation: "<" [107:46 - 107:47] TypedefDecl=type1:107:76 (Definition)
380 // CHECK: Punctuation: ">" [107:51 - 107:52] TypedefDecl=type1:107:76 (Definition)
381 // CHECK: Punctuation: "::" [107:52 - 107:54] TypedefDecl=type1:107:76 (Definition)
382 // CHECK: Keyword: "template" [107:54 - 107:62] TypedefDecl=type1:107:76 (Definition)
383 // CHECK: Identifier: "rebind" [107:63 - 107:69] TypedefDecl=type1:107:76 (Definition)
384 // CHECK: Punctuation: "<" [107:69 - 107:70] TypedefDecl=type1
[all...]
/external/freetype/include/freetype/internal/
H A Dt1types.h201 T1_FontRec type1; member in struct:T1_FaceRec_
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DMixedItemSection.java57 ItemType type1 = item1.itemType();
59 return type1.compareTo(type2);
/external/javassist/src/main/javassist/bytecode/analysis/
H A DMultiType.java188 private Map mergeMultiInterfaces(MultiType type1, MultiType type2) { argument
189 Map map1 = getAllMultiInterfaces(type1);
H A DExecutor.java283 Type type1 = frame.getStack(frame.getTopIndex() - 1);
285 frame.push(type1);
292 frame.setStack(insert - 1, type1);
296 Type type1 = frame.pop();
298 if (type1.getSize() == 2 || type2.getSize() == 2)
300 frame.push(type1);
/external/chromium/chrome/browser/autofill/
H A Dform_field.cc297 AddressType type1 = addresses[1]->FindType(); local
301 bool reversed = (type0 == kShippingAddress && type1 == kBillingAddress);
/external/valgrind/main/perf/
H A Dtinycc.c5448 static int is_compatible_types(CType *type1, CType *type2);
10402 CType type1;
10411 type1 = vtop->type;
10417 vtop->type = type1;
11184 CType *type1, *type2, tmp_type1, tmp_type2;
11190 type1 = &p1->type;
11192 bt1 = type1->t & VT_BTYPE;
11202 type1 = pointed_type(type1);
11212 if ((type1
10400 CType type1; local
11182 CType *type1, *type2, tmp_type1, tmp_type2; local
11230 CType type1; local
11645 is_compatible_func(CType *type1, CType *type2) argument
11679 is_compatible_types(CType *type1, CType *type2) argument
11803 CType *st, *type1, *type2, tmp_type1, tmp_type2; local
12128 CType type1, btype; local
12311 CType type1; local
12585 CType type1, *type2; local
12927 CType type1, type2; local
13336 CType type, type1, type2; local
13849 CType type1; local
14191 CType type1; local
[all...]
/external/openfst/src/include/fst/
H A Dcompose.h388 MatchType type1 = matcher1_->Type(false); local
390 if (type1 == MATCH_OUTPUT && type2 == MATCH_INPUT) {
392 } else if (type1 == MATCH_OUTPUT) {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.contenttype_3.4.100.v20100505-1235.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 621 milliseconds

12