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

1 2

  /dalvik/dx/src/com/android/dx/cf/code/
Merger.java 157 Type type1 = ft1.getType(); local
160 if (type1 == type2) {
161 return type1;
162 } else if (type1.isReference() && type2.isReference()) {
163 if (type1 == Type.KNOWN_NULL) {
174 return type1;
175 } else if (type1.isArray() && type2.isArray()) {
177 mergeType(type1.getComponentType(),
195 } else if (type1.isIntlike() && type2.isIntlike()) {
Machine.java 87 * @param type1 {@code non-null;} type of the first argument
90 public void popArgs(Frame frame, Type type1, Type type2);
100 * @param type1 {@code non-null;} type of the first 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) {
173 if (! Merger.isPossiblyAssignableFrom(type1, args[0])) {
174 throw new SimException("expected type " + type1.toHuman() +
185 public final void popArgs(Frame frame, Type type1, Type type2,
192 if (! Merger.isPossiblyAssignableFrom(type1, args[0])) {
193 throw new SimException("expected type " + type1.toHuman() +
  /external/javassist/src/main/javassist/compiler/ast/
IntConst.java 54 int type1 = this.type; local
57 if (type1 == TokenId.LongConstant || type2 == TokenId.LongConstant)
59 else if (type1 == TokenId.CharConstant
95 newType = type1;
99 newType = type1;
103 newType = type1;
  /external/bluetooth/glib/gio/
gcontenttype.h 34 gboolean g_content_type_equals (const char *type1,
  /external/clang/test/SemaTemplate/
canonical-expr-type.cpp 46 typedef T __attribute__((ext_vector_type(N))) type1; typedef in struct:X2
50 void f0(type1); // expected-note{{previous}}
  /external/clang/test/Sema/
dllimport-dllexport.c 32 typedef int __declspec(dllexport) type1; // expected-warning{{'dllexport' attribute only applies to variables and functions}} typedef
  /external/freetype/src/psaux/
t1cmap.c 29 /***** TYPE1 STANDARD (AND EXPERT) ENCODING CMAPS *****/
42 cmap->num_glyphs = face->type1.num_glyphs;
43 cmap->glyph_names = (const char* const*)face->type1.glyph_names;
168 /***** TYPE1 CUSTOM ENCODING CMAP *****/
178 T1_Encoding encoding = &face->type1.encoding;
261 /***** TYPE1 SYNTHETIC UNICODE ENCODING CMAP *****/
270 return face->type1.glyph_names[idx];
284 face->type1.num_glyphs,
  /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/kernel-headers/original/asm-arm/
unistd.h 420 #define _syscall1(type,name,type1,arg1) \
421 type name(type1 arg1) { \
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) {
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
StdTypeList.java 180 * @param type1 {@code non-null;} the second element
183 public static StdTypeList make(Type type0, Type type1) {
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) {
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,
219 result.set(1, type1);
  /dalvik/dx/src/com/android/dx/rop/type/
StdTypeList.java 180 * @param type1 {@code non-null;} the second element
183 public static StdTypeList make(Type type0, Type type1) {
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) {
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,
219 result.set(1, type1);
  /external/javassist/src/main/javassist/compiler/
TypeChecker.java 284 int type1 = exprType; local
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; local
330 computeBinExprType(expr, token, type1);
367 int type1 = exprType; local
375 if ((type1 == CLASS && dim1 == 0 && jvmJavaLangString.equals(cname))
387 computeBinExprType(expr, '+', type1);
515 int type1 = exprType; local
    [all...]
CodeGen.java 968 int type1 = exprType; local
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,
1040 if (is2word(type1, dim1))
1101 int type1 = compileOprands(bexpr); local
1167 int type1 = exprType; local
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
ImplicitTest.java 188 * TYPE1 = [1] IMPLICIT OCTET STRING
189 * TYPE2 = [2] IMPLICIT TYPE1
192 ASN1Implicit type1 = new ASN1Implicit(1, ASN1OctetString.getInstance()); local
194 ASN1Implicit type2 = new ASN1Implicit(2, type1);
  /external/clang/test/SemaCXX/
qualified-id-lookup.cpp 65 typedef struct N::f1 type1; typedef in typeref:struct:f1
  /external/chromium/chrome/browser/sessions/
session_restore_uitest.cc 323 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/freetype/include/freetype/internal/
t1types.h 5 /* Basic Type1/Type2 type definitions and interface (specification */
39 /*** REQUIRED TYPE1/TYPE2 TABLES DEFINITIONS ***/
212 T1_FontRec type1; member in struct:T1_FaceRec_
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
MixedItemSection.java 57 ItemType type1 = item1.itemType();
59 return type1.compareTo(type2);
  /dalvik/dx/src/com/android/dx/dex/file/
MixedItemSection.java 57 ItemType type1 = item1.itemType();
59 return type1.compareTo(type2);
  /external/javassist/src/main/javassist/bytecode/analysis/
MultiType.java 188 private Map mergeMultiInterfaces(MultiType type1, MultiType type2) {
189 Map map1 = getAllMultiInterfaces(type1);
Executor.java 283 Type type1 = frame.getStack(frame.getTopIndex() - 1); local
285 frame.push(type1);
292 frame.setStack(insert - 1, type1);
296 Type type1 = frame.pop(); local
298 if (type1.getSize() == 2 || type2.getSize() == 2)
300 frame.push(type1);
    [all...]
  /external/clang/test/Index/
annotate-nested-name-specifier.cpp 107 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:107:76 (Definition
    [all...]
  /external/chromium/chrome/browser/autofill/
form_field.cc 297 AddressType type1 = addresses[1]->FindType(); local
301 bool reversed = (type0 == kShippingAddress && type1 == kBillingAddress);

Completed in 1451 milliseconds

1 2