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

1 2 3

  /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 162 public final void popArgs(Frame frame, Type type1, Type type2) {
173 if (! Merger.isPossiblyAssignableFrom(type2, args[1])) {
174 throw new SimException("expected type " + type2.toHuman() +
180 public final void popArgs(Frame frame, Type type1, Type type2,
192 if (! Merger.isPossiblyAssignableFrom(type2, args[1])) {
193 throw new SimException("expected type " + type2.toHuman() +
198 throw new SimException("expected type " + type2.toHuman() +
  /external/libnfc-nxp/src/
phFriNfc_MapTools.h 46 typ1/type2/type3/type4 tags.
65 /* Macros to find major and minor TAG : Ex:Type1/Type2/Type3/Type4 version numbers*/
78 /* Macros to find major and minor TAG : Ex:Type1/Type2/Type3/Type4 version numbers*/
phFriNfc_IntNdefMap.h 48 typ1/type2/type3/type4 tags.
64 /* Macros to find major and minor TAG : Ex:Type1/Type2/Type3/Type4 version numbers*/
phFriNfc_MapTools.c 56 * typ1/type2/type3/type4 tags.
phFriNfc_SmtCrdFmt.h 51 * - Type2 ( Mifare UL)
133 * \brief NFC Smart Card Formatting Component Type2 Additional Information Structure
135 * This structure is used to specify additional information required to format the Type2 card.
276 * Ex: Type1/Type2/Type4/Mifare 1k/4k
  /frameworks/base/core/tests/coretests/src/android/accounts/
AccountManagerServiceTest.java 61 Account a12 = new Account("account1", "type2");
62 Account a22 = new Account("account2", "type2");
63 Account a32 = new Account("account3", "type2");
100 Account a12 = new Account("account1", "type2");
120 Account a12 = new Account("account1", "type2");
148 Account a12 = new Account("account1", "type2");
  /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/freetype/src/pshinter/
pshrec.h 5 /* Postscript (Type1/Type2) hints recorder (specification). */
156 /* initialize Type2 hints recorder interface */
  /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/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...]