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

1 2

  /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/bluetooth/glib/gio/
gcontenttype.h 35 const char *type2);
gcontenttype.c 108 const char *type2)
114 g_return_val_if_fail (type2 != NULL, FALSE);
116 if (g_ascii_strcasecmp (type1, type2) == 0)
121 progid2 = get_registry_classes_key (type2, NULL);
457 * @type2: a content type string.
466 const char *type2)
471 g_return_val_if_fail (type2 != NULL, FALSE);
474 res = xdg_mime_mime_type_equal (type1, type2);
    [all...]
  /external/clang/test/SemaTemplate/
canonical-expr-type.cpp 47 typedef T __attribute__((ext_vector_type(M))) type2; typedef in struct:X2
51 void f0(type2);
instantiate-declref.cpp 58 typedef struct { T z; } type2; typedef in typeref:struct:N2::Outer2::Inner::__anon5321
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/clang/test/Sema/
dllimport-dllexport.c 34 typedef int __declspec(dllimport) type2; // expected-warning{{'dllimport' attribute only applies to variables and functions}} typedef
  /external/kernel-headers/original/asm-arm/
unistd.h 435 #define _syscall2(type,name,type1,arg1,type2,arg2) \
436 type name(type1 arg1,type2 arg2) { \
452 #define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \
453 type name(type1 arg1,type2 arg2,type3 arg3) { \
470 #define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4)\
471 type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4) { \
489 #define _syscall5(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4,type5,arg5) \
490 type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4, type5 arg5) { \
509 #define _syscall6(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4,type5,arg5,type6,arg6) \
510 type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4, type5 arg5, type6 arg6) {
    [all...]
  /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/clang/test/SemaCXX/
qualified-id-lookup.cpp 67 typedef struct N::f2 type2; typedef in typeref:struct:f2
  /external/libxml2/
xmlregexp.c     [all...]
  /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);
  /external/javassist/src/main/javassist/compiler/
CodeGen.java 1003 int type2 = exprType; local
1005 if (type2 == INT || type2 == SHORT
1006 || type2 == CHAR || type2 == BYTE)
1011 convertOprandTypes(type1, type2, expr);
1031 int type2 = exprType; local
1033 boolean type2Is2 = is2word(type2, dim2);
1035 = (type2 == CLASS && jvmJavaLangString.equals(className));
1038 convToString(type2, dim2)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
MixedItemSection.java 58 ItemType type2 = item2.itemType();
59 return type1.compareTo(type2);
  /dalvik/dx/src/com/android/dx/dex/file/
MixedItemSection.java 58 ItemType type2 = item2.itemType();
59 return type1.compareTo(type2);
  /external/javassist/src/main/javassist/bytecode/analysis/
MultiType.java 188 private Map mergeMultiInterfaces(MultiType type1, MultiType type2) {
190 Map map2 = getAllMultiInterfaces(type2);
Executor.java 284 Type type2 = frame.peek(); local
286 frame.push(type2);
291 frame.setStack(insert, type2);
297 Type type2 = frame.pop(); local
298 if (type1.getSize() == 2 || type2.getSize() == 2)
301 frame.push(type2);
    [all...]
  /external/clang/test/Index/
annotate-nested-name-specifier.cpp 108 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:108:83 (Definition
    [all...]
  /external/javassist/src/main/javassist/bytecode/
ConstPool.java 1262 String type2 = Descriptor.rename(type, oldName, newName); local
1269 String type2 = Descriptor.rename(type, map); local
    [all...]

Completed in 566 milliseconds

1 2