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

1 2 3 4

  /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/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];
qualified-id-lookup.cpp 67 typedef struct N::f2 type2; typedef in typeref:struct:f2
  /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 47 typedef T __attribute__((ext_vector_type(M))) type2; typedef in struct:X2
51 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
instantiate-declref.cpp 58 typedef struct { T z; } type2; typedef in typeref:struct:N2::Outer2::Inner::__anon6998
59 type2 t3 = { s1.x };
  /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/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/v8/src/
preparser.h 185 bool HasConflict(int type1, int type2) { return (type1 & type2) != 0; }
186 bool IsDataDataConflict(int type1, int type2) {
187 return ((type1 & type2) & kValueFlag) != 0;
189 bool IsDataAccessorConflict(int type1, int type2) {
190 return ((type1 ^ type2) & kValueFlag) != 0;
192 bool IsAccessorAccessorConflict(int type1, int type2) {
193 return ((type1 | type2) & kValueFlag) == 0;
  /external/clang/test/CodeGenCXX/
type_visibility.cpp 139 namespace type2 { namespace
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
StdTypeList.java 195 * @param type2 {@code non-null;} the third element
198 public static StdTypeList make(Type type0, Type type1, Type type2) {
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,
220 result.set(2, type2);
  /dalvik/dx/src/com/android/dx/rop/type/
StdTypeList.java 195 * @param type2 {@code non-null;} the third element
198 public static StdTypeList make(Type type0, Type type1, Type type2) {
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,
220 result.set(2, type2);
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
StdTypeList.java 195 * @param type2 {@code non-null;} the third element
198 public static StdTypeList make(Type type0, Type type1, Type type2) {
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,
220 result.set(2, type2);
  /external/libxml2/
xmlregexp.c     [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
LangParser.m 335 LangParser_type_return * type2 = nil ;
354 type2 = [self type];
359 [stream_type addElement:[type2 getTree]];
  /external/chromium/chrome/browser/sessions/
session_restore_uitest.cc 323 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);

Completed in 1767 milliseconds

1 2 3 4