Searched refs:type2 (Results 1 - 25 of 39) sorted by relevance

12

/external/clang/test/Sema/
H A Dc11-typedef-redef.c8 typedef int type2; typedef
9 typedef type type2; typedef
10 typedef int type2; typedef
H A Ddllimport-dllexport.c34 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/
H A DMerger.java40 Type type2 = ft2.getType();
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()) {
/external/clang/test/SemaCXX/
H A Dconstexpr-many-arguments.cpp10 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];
H A Dqualified-id-lookup.cpp67 typedef struct N::f2 type2; typedef in typeref:struct:f2
/external/clang/test/SemaTemplate/
H A Dms-if-exists.cpp14 typedef Nontemplate::value type2; typedef
27 X<int>::type2 i2; // expected-error{{no type named 'type2' in 'X<int>'}}
H A Dinstantiate-exception-spec-cxx11.cpp87 base(const typename T::type2 &);
96 struct type2 { struct in namespace:core_19754_example
103 typedef type2<types> type2; typedef in struct:core_19754_example::types
H A Dcanonical-expr-type.cpp47 typedef T __attribute__((ext_vector_type(M))) type2; typedef in struct:X2
51 void f0(type2);
H A Dinstantiate-declref.cpp58 typedef struct { T z; } type2; typedef in typeref:struct:N2::Outer2::Inner::__anon4805
59 type2 t3 = { s1.x };
/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, n
[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, n
[all...]
/external/javassist/src/main/javassist/compiler/ast/
H A DIntConst.java55 int type2 = right.type;
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/
H A DImplicitTest.java194 ASN1Implicit type2 = new ASN1Implicit(2, type1);
213 assertTrue(Arrays.equals(array, (byte[]) type2
217 assertTrue(Arrays.equals(primitiveEncoding, type2.encode(array)));
221 type2.decode(constructedEncoding);
/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/dexmaker/src/dx/java/com/android/dx/rop/type/
H A DStdTypeList.java195 * @param type2 {@code non-null;} the third element
198 public static StdTypeList make(Type type0, Type type1, Type type2) { argument
202 result.set(2, type2);
211 * @param type2 {@code non-null;} the third element
215 public static StdTypeList make(Type type0, Type type1, Type type2, argument
220 result.set(2, type2);
/external/libxml2/
H A Dxmlregexp.c2237 * @type2: an atom type
2245 xmlFACompareAtomTypes(xmlRegAtomType type1, xmlRegAtomType type2) { argument
2253 if ((type2 == XML_REGEXP_EPSILON) ||
2254 (type2 == XML_REGEXP_CHARVAL) ||
2255 (type2 == XML_REGEXP_RANGES) ||
2256 (type2 == XML_REGEXP_SUBREG) ||
2257 (type2 == XML_REGEXP_STRING) ||
2258 (type2 == XML_REGEXP_ANYCHAR))
2261 if (type1 == type2) return(1);
2263 /* simplify subsequent compares by making sure type1 < type2 */
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
H A DLangParser.m335 LangParser_type_return * type2 = nil ;
354 type2 = [self type];
359 [stream_type addElement:[type2 getTree]];
/external/chromium/chrome/browser/sessions/
H A Dsession_restore_uitest.cc323 Browser::Type type1, type2; local
325 ASSERT_TRUE(browser_proxy2->GetType(&type2));
330 EXPECT_EQ(type2, Browser::TYPE_POPUP);
333 EXPECT_EQ(type2, Browser::TYPE_NORMAL);
/external/clang/test/Index/
H A Dannotate-nested-name-specifier.cpp108 typedef typename outer_alias::inner::vector<type>::template rebind<type>::other type2; typedef in struct:X6
390 // CHECK: Keyword: "typename" [108:11 - 108:19] TypedefDecl=type2:108:83 (Definition)
392 // CHECK: Punctuation: "::" [108:31 - 108:33] TypedefDecl=type2:108:83 (Definition)
394 // CHECK: Punctuation: "::" [108:38 - 108:40] TypedefDecl=type2:108:83 (Definition)
396 // CHECK: Punctuation: "<" [108:46 - 108:47] TypedefDecl=type2:108:83 (Definition)
398 // CHECK: Punctuation: ">" [108:51 - 108:52] TypedefDecl=type2:108:83 (Definition)
399 // CHECK: Punctuation: "::" [108:52 - 108:54] TypedefDecl=type2:108:83 (Definition)
400 // CHECK: Keyword: "template" [108:54 - 108:62] TypedefDecl=type2:108:83 (Definition)
401 // CHECK: Identifier: "rebind" [108:63 - 108:69] TypedefDecl=type2:108:83 (Definition)
402 // CHECK: Punctuation: "<" [108:69 - 108:70] TypedefDecl=type2
[all...]
/external/javassist/src/main/javassist/compiler/
H A DCodeGen.java1003 int type2 = exprType;
1005 if (type2 == INT || type2 == SHORT
1006 || type2 == CHAR || type2 == BYTE)
1011 convertOprandTypes(type1, type2, expr);
1031 int type2 = exprType;
1033 boolean type2Is2 = is2word(type2, dim2);
1035 = (type2 == CLASS && jvmJavaLangString.equals(className));
1038 convToString(type2, dim
1289 rightIsStrong(int type1, int type2) argument
1305 convertOprandTypes(int type1, int type2, Expr expr) argument
[all...]
H A DTypeChecker.java498 int type2 = exprType;
502 insertCast(expr, type1, type2);
535 private void insertCast(BinExpr expr, int type1, int type2) argument
538 if (CodeGen.rightIsStrong(type1, type2))
539 expr.setLeft(new CastExpr(type2, 0, expr.oprand1()));
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DMixedItemSection.java58 ItemType type2 = item2.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
190 Map map2 = getAllMultiInterfaces(type2);
H A DExecutor.java284 Type type2 = frame.peek();
286 frame.push(type2);
291 frame.setStack(insert, type2);
297 Type type2 = frame.pop();
298 if (type1.getSize() == 2 || type2.getSize() == 2)
301 frame.push(type2);
/external/javassist/src/main/javassist/bytecode/
H A DConstPool.java1262 String type2 = Descriptor.rename(type, oldName, newName);
1263 if (type != type2)
1264 typeDescriptor = cp.addUtf8Info(type2);
1269 String type2 = Descriptor.rename(type, map);
1270 if (type != type2)
1271 typeDescriptor = cp.addUtf8Info(type2);

Completed in 1398 milliseconds

12